View allAll Photos Tagged stackoverflow

Steven Sanderson presenting ASP.NET MVC

Miguel used two laptops during his presentation; borrowing a Windows machine (which hosted a SUSE VM image) and also using an Apple laptop.

John Resig plugs testswarm.com for distributed JavaScript testing.

The awesome clock, the Chronophage, that has something to do with Stephen Hawking and is located at Corpus Christi college cambridge.

 

Snapped whilst visiting Cambridge for the StackOverflow devdays 2009.

 

The beast on top is the great grasshopper that eats time. Don't ask me, it wasn't my idea...

 

It's a real shame I suck at taking photos, it's very impressive in reality.

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'))

1 2 ••• 4 5 7 9 10 ••• 38 39