View allAll Photos Tagged github

At the Github Octocat Dodgeball Invitational.

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

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

Primer

Been busy this week so these are some things that have caught my eye.

 

New js graphics library to try from github based on jQuery ~ GitHub Has Cool Graphs Now. A better link can be found here ~ github.com/blog/187-participation-graphs-go-canvas The lib is called Primer and can be found here ~ github.com/mojombo/primer/ The readme file is here ~ github.com/mojombo/primer/tree/master/README

 

next >>>

wuipdesign.github.io

 

Free photos. Set 7.

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.

At the Github Octocat Dodgeball Invitational.

wuipdesign.github.io

 

Free photos. Set 38.

Use it freely in personal and commercial projects.

 

CC-License

 

Photos: Anthony Clochard / wuipdesign.github.io

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

DLD Munich Conference 2025, January 16-18, 2025. © Diane von Schoen for DLD/Hubert Burda Media

wuipdesign.github.io

 

Free photos. Set 19.

Use it freely in personal and commercial projects.

 

CC-License

 

Photos: Anthony Clochard / wuipdesign.github.io

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倉庫(類似資料夾)

 

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

 

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

// See HELP.html included in this distribution.

 

#include

 

void WhileLoop3::runExercise()

{

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

int verticalstep=10, horizontalstep=15;

 

while ( x < 400 )

{

x += horizontalstep;

fwcLine(200, 0, x, 400, BLUE, 1);

fwcLine(200, 400, x, 0, RED, 1);

}

 

while ( y < 400 )

{

y += verticalstep;

fwcLine(0, 200, 400, y, GREEN, 1);

fwcLine(400, 200, 0, y, YELLOW, 1);

}

}

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

 

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

// See HELP.html included in this distribution.

 

#include

#include

 

// ==========================================

// = THIS IS THE SOLUTION CODE =

// = THIS IS *NOT* THE EXERCISE CODE =

// = (If you meant to look at the exercise =

// = it's in the directory above this one.) =

// ==========================================

 

void Primes1Soln::runExercise()

{

int n = 0, c = 0, x = 0, y = 0;

int horizontalstep = 30, verticalstep = 40;

bool prime = true;

Color color = DARKBLUE;

 

for ( n = 1; n < 101; n++ )

{

fwcInt(n, x, y, color);

 

for ( c = 2; c 400 - horizontalstep )

{

x = 0;

y += verticalstep;

}

}

fwcText("Every number in a red box is a prime number.", 20, 370, RED, 12);

seeout << "A prime number is divisible by 1, and itself, but\n";

seeout <>>none of the numbers in between!<<< (hint, hint! :-)\n";

}

Logo GitHub hacer referencia al Codigo

wuipdesign.github.io

 

Free photos. Set 36.

Use it freely in personal and commercial projects.

 

CC-License

 

Photos: Anthony Clochard / wuipdesign.github.io

wuipdesign.github.io

 

Free photos. Set 32.

Use it freely in personal and commercial projects.

 

CC-License

 

Photos: Anthony Clochard / wuipdesign.github.io

I may just offer to sell advertising.

wuipdesign.github.io

 

Free photos. Set 16.

Use it freely in personal and commercial projects.

 

CC-License

 

Photos: Anthony Clochard / wuipdesign.github.io

1 2 ••• 70 71 73 75 76 ••• 79 80