View allAll Photos Tagged github

This CreativeMornings/San Francisco event was generously hosted by Github.

 

Wilson Miner was our speaker.

 

The event was sponsored by Dropbox, Chump Chai and The California Sunday Magazine.

 

All photos by Amber Gregory (enigmatic.org).

wuipdesign.github.io

 

Free photos. Set 29.

Use it freely in personal and commercial projects.

 

CC-License

 

Photos: Anthony Clochard / wuipdesign.github.io

wuipdesign.github.io

 

Free photos. Set 1.

Use it freely in personal and commercial projects.

 

CC-License

 

Photos: Anthony Clochard / wuipdesign.github.io

It takes a digital village: An empirical and analytical look at what grows strong communities across GitHub.com

Ben Balter (GitHub)

wuipdesign.github.io

 

Free photos. Set 4.

Use it freely in personal and commercial projects.

 

CC-License

 

Photos: Anthony Clochard / wuipdesign.github.io

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 28.

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

wuipdesign.github.io

 

Free photos. Set 7.

Use it freely in personal and commercial projects.

 

CC-License

 

Photos: Anthony Clochard / wuipdesign.github.io

GitHub is one of the best things to happen for software developers and designers, ever. This is the Blacktocat tee!

wuipdesign.github.io

 

Free photos. Set 30.

Use it freely in personal and commercial projects.

 

CC-License

 

Photos: Anthony Clochard / wuipdesign.github.io

Denial of service makes Octocat cry :(

wuipdesign.github.io

 

Free photos. Set 19.

Use it freely in personal and commercial projects.

 

CC-License

 

Photos: Anthony Clochard / wuipdesign.github.io

www.heavybit.com/library/video/land-and-expand-strategies...

 

In his Heavybit talk, Brian Doll shares bottom-up sales approaches & messaging considerations for moving into the enterprise. He recommends a ‘do things and tell people’ approach as a critical component of developer marketing and provides actionable tips for companies looking to grow.

 

Heavybit / Dailon Weiss

Github Dodgeball Octocat Invitational 2012

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

tb_2023_04_01_2024_10_18_daily_question_count <- read_csv('https://raw.githubusercontent.com/thunderbird/github-action-thunderbird-aaq/refs/heads/main/ALLTIME/2023-2024-yyyy-mm-hh-question-count.csv')

ggplot(head(tb_2023_04_01_2024_10_18_daily_question_count, -1),

aes(yyyy_mm_dd, count)) +

geom_line() +

#geom_point() +

stat_peaks(

span = NULL,

geom = "text_s",

mapping = aes(label = paste(

after_stat(y.label), after_stat(x.label)

)),

# stat_peaks and stat_valleys labels will work with dates in POSIXct format from:

# stackoverflow.com/questions/57836633/labeling-extrema-wit...

# The formatting is determined by a format string compatible with sprintf() or strftime(). from:

# cran.r-project.org/web/packages/ggpmisc/ggpmisc.pdf

x.label.fmt = "at %Y-%m-%d",

y.label.fmt = " Max count: %.0f",

colour = "blue",

arrow = grid::arrow(length = unit(0.1, "inches")),

position = position_nudge_keep(x = 10, y = 0),

hjust = 0

) +

stat_valleys(

span = NULL,

geom = "text_s",

mapping = aes(label = paste(

after_stat(y.label), after_stat(x.label)

)),

x.label.fmt = "at %Y-%m-%d",

y.label.fmt = " Min count: %.0f",

colour = "blue",

arrow = grid::arrow(length = unit(0.1, "inches")),

position = position_nudge_keep(x = 10, y = -1),

hjust = 0

) +

geom_smooth(method = 'lm') +

labs(x = 'Date', y = '# of TB SUMO questions', title = 'Daily Thunderbird SUMO questions 2023-04-01 2024-10-17') +

theme(plot.title = element_text(hjust = 0.5, size = 20, face = 'bold'))

wuipdesign.github.io

 

Free photos. Set 26.

Use it freely in personal and commercial projects.

 

CC-License

 

Photos: Anthony Clochard / wuipdesign.github.io

Visiting.. visiting.. visiting..

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

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

 

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

// See HELP.html included in this distribution.

 

#include

 

void IfThen2::runExercise()

{

int x=0, y=0;

int horizontalstep=50, verticalstep=50;

Color color = DARKCYAN;

 

for ( x = 0; x < 400; x += horizontalstep )

{

for (y = 0; y < 400; y += verticalstep )

{

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

}

if ( color == DARKCYAN ) color = DARKBLUE; // = is pronounced GETS, == is pronounced EQUALS :-)

else color = DARKCYAN;

}

}

1 2 ••• 66 67 69 71 72 ••• 79 80