View allAll Photos Tagged GitHub,

github.com/FeetWetCoding/FeetWetCoding/blob/master/exerci...

 

// copyright (c) 2011 Robert Holder, Janice Dugger.

// See HELP.html included in this distribution.

 

#include

 

void WhileLoop4::runExercise()

{

int x=0, y=400; // = is pronounced GETS, == is pronounced EQUALS

int velocity= -45;

int rateofchange=1;

int horizontalstep = 12;

 

while ( x < 400 )

{

x += horizontalstep;

y += velocity;

velocity += rateofchange;

fwcCircle(x, y, 10, RED, 1);

fwcInt(velocity, x+10, y, BLUE, 10);

}

}

Github gets the evening kicked off right #github #beer

 

12 Likes on Instagram

  

github.com/FeetWetCoding/FeetWetCoding/blob/master/exerci...

 

// copyright (c) 2011 Robert Holder, Janice Dugger.

// See HELP.html included in this distribution.

 

#include

 

void IfThen1::runExercise()

{

int x=0, y=0; // = is pronounced GETS, == is pronounced EQUALS

int horizontalstep=70, verticalstep=70;

Color color = BLUE;

 

while ( x < 400 )

{

while ( y < 400 )

{

if ( x y) color = BLUE;

fwcRectangle(x, y, 40, 40, color, 1, true);

y += verticalstep;

}

y=0;

x += horizontalstep;

}

}

floating-marine-laboratory.github.io/Floating-Marine-Labo...

 

Location: goo.gl/maps/q67qBY7L1vAeL91H8

 

Authors:

 

Chan Cheong Kitkitcch@connect.hku.hk;

Chan Yuet Sum Canossau3510011@connect.hku.hk;

Kaufmann Maximilian Ferdinandmkauf@connect.hku.hk;

Lau Ho Chuen Maxwelllhcmax94@connect.hku.hk;

Lu Xiner Cenaluu3571357@connect.hku.hk; cenalu@qq.com;

Sin Chung Kei Nathannsck@connect.hku.hk;

Sun Zhengyuzyusun12@connect.hku.hk;

Wong Tsz Ching Cecicecitcw@gmail.com;

Wu Ho Ting Silverh1357797@connect.hku.hk;

Yeung Hin Oswinoswinyh@connect.hku.hk;

Yuen Ka Ho Kelvinu3571360@connect.hku.hk;

Zhang Houzheu3571366@connect.hku.hk;

Huang Shidanhsd1996@connect.hku.hk;

Mundle Kent Mackinnon Georgikmundle@connect.hku.hk;

Ng Kwok Jing Jamesu3528257@connect.hku.hk;

Lee Gavin Yu Hingavinlyh@connect.hku.hk

Tsang Hoi Lam Jessica Mary jessmt@connect.hku.hk

Visiting.. visiting.. visiting..

github.com/FeetWetCoding/FeetWetCoding/blob/master/exerci...

 

// copyright (c) 2011 Robert Holder, Janice Dugger.

// See HELP.html included in this distribution.

 

#include

 

void DivideByZero::runExercise() // copy the exercise name & paste it into main.cpp

{

 

// THIS PROGRAM WILL HANG WHEN YOU TRY TO RUN IT WITH THE if LINE COMMENTED OUT.

// Go ahead and run it as-is to see the correct behavior and then comment the

// if ( != 0 )

// line out and run it again to see what happens when you try to divide by zero.

 

// ****** You may have to kill FeetWetCoding.exe manually. ******

 

int a = 256, b = 8;

 

fwcText("Reference Exercise:", 50, 150, BLUE, 20);

fwcText("no solution needed.", 50, 180, BLUE, 20);

 

for ( b = 8; b > - 8; b-- )

{

if ( b != 0 ) // comment out this if statement to see divide-by-zero error at runtime

seeout << a << " / " << b << " == " << a / b << "\n";

}

 

// This is why it's always good to test the denominator before any division calculation

// if there is ANY CHANCE that the denominator could resolve to zero. Good habit to

// learn early in your programming efforts!

 

}

wuipdesign.github.io

 

Free photos. Set 33.

Use it freely in personal and commercial projects.

 

CC-License

 

Photos: Anthony Clochard / wuipdesign.github.io

wuipdesign.github.io

 

Free photos. Set 3.

Use it freely in personal and commercial projects.

 

CC-License

 

Photos: Anthony Clochard / wuipdesign.github.io

wuipdesign.github.io

 

Free photos. Set 35.

Use it freely in personal and commercial projects.

 

CC-License

 

Photos: Anthony Clochard / wuipdesign.github.io

wuipdesign.github.io

 

Free photos. Set 22.

Use it freely in personal and commercial projects.

 

CC-License

 

Photos: Anthony Clochard / wuipdesign.github.io

Mayor Lee cuts the ribbon at GitHub and kicks off October Innovation Month

At the 2011 Github Company Retreat

A statue of the oldest known fossil of an Octocat, at GitHub HQ.

wuipdesign.github.io

 

Free photos. Set 38.

Use it freely in personal and commercial projects.

 

CC-License

 

Photos: Anthony Clochard / wuipdesign.github.io

At the Github Octocat Dodgeball Invitational.

wuipdesign.github.io

 

Free photos. Set 24.

Use it freely in personal and commercial projects.

 

CC-License

 

Photos: Anthony Clochard / wuipdesign.github.io

wuipdesign.github.io

 

Free photos. Set 8.

Use it freely in personal and commercial projects.

 

CC-License

 

Photos: Anthony Clochard / wuipdesign.github.io

ShutterSnitch upload from my iPad

wuipdesign.github.io

 

Free photos. Set 38.

Use it freely in personal and commercial projects.

 

CC-License

 

Photos: Anthony Clochard / wuipdesign.github.io

wuipdesign.github.io

 

Free photos. Set 21.

Use it freely in personal and commercial projects.

 

CC-License

 

Photos: Anthony Clochard / wuipdesign.github.io

At the Github Octocat Dodgeball Invitational.

github.com/FeetWetCoding/FeetWetCoding/blob/master/exerci...

 

// copyright (c) 2011 Robert Holder, Janice Dugger.

// See HELP.html included in this distribution.

 

#include

 

void ForLoops2::runExercise()

{

int col = 0, row = 0; // = is pronounced GETS, == is pronounced EQUALS

 

for ( row = 0; row < 8; row++ )

{

for ( col = 0; col < 8; col++ )

{

fwcInt( row, col*50, row*50, BLUE, 30);

fwcText( ",", col*50+15, row*50, BLUE, 30);

fwcInt( col, col*50+20, row*50, BLUE, 30);

}

}

}

wuipdesign.github.io

 

Free photos. Set 7.

Use it freely in personal and commercial projects.

 

CC-License

 

Photos: Anthony Clochard / wuipdesign.github.io

via Instagram ift.tt/2NbT8MS — Working on a Libre font of my own. Goofy extended monoline. Mostly a way to try out fontforge and learn a few new things. Source will be on github as this progresses.

github.com/secretworldthaimassage/Why-Is-Thai-Massage-Ben...

So if you are So if you are planning to treat yourself to a marvellous massage, pay a visit to Secret World Thai massage at Sydney. Thai Massage in Sydney is extremely popular amidst the locals and tourists. Thai Massage Treatment Sydney will leave you with a pleasant hangover that will last long in your memory. Secret World Thai massage in Newtown promises to provide you with a holistic experience.planning to treat yourself to a marvellous massage, pay a visit to Secret World Thai massage at Sydney. Thai Massage in Sydney is extremely popular amidst the locals and tourists. Thai Massage Treatment Sydney will leave you with a pleasant hangover that will last long in your memory. Secret World Thai massage in Newtown promises to provide you with a holistic experience.

 

Github stickers have arrived!

1. 編輯完程式碼並存檔

2. GitHub for Windows 會偵測到程式碼異動,請Commit提交變更並Sync同步變更

3. 程式碼Sync同步後,會同步到GitHub上的專案Repo倉庫(類似資料夾)

 

1 2 ••• 64 65 67 69 70 ••• 79 80