Skip to content

Instantly share code, notes, and snippets.

@samsm
samsm / dc_2017_biblio.md
Last active April 27, 2017 23:16 — forked from BaseCase/dc_2017_biblio.md
List of resources recommended or mentioned by the speakers at Deconstruct 2017

Deconstruct 2017 Bibliography

Here are all of the resources mentioned by Deconstruct 2017 speakers, along with who recommended what. Please post a comment if I missed something or have an error!

DC 2017 Speakers' Choice Gold Medalist

  • Seeing Like a State by James Scott

Books

  • Public Opinion by Walter Lippmann (Evan Czaplicki)
  • A Pattern Language by Christopher Alexander (Brian Marick)
  • Domain Driven Design by Eric Evans (Brian Marick)

10 Ways to improve Github Issues

I love the new GitHub issues, here are some ideas to make it perfect, ordered by priority:

  1. I should be able to pick the assignee and milestone via keyboard when creating a new ticket
  2. Keyboard shortcuts should work everywhere. For example when viewing an existing issue, 'c' will not create a new one.
  3. After creating an issue, the assigned user / milestone should be pre-filled when creating the next issue.
  4. When commenting, I should also be able to assign a different user. Right now this deletes my half-typed comment.
  5. When typing the @ symbol to mention somebody, it should auto-complete the name.
  6. This might just be me, but things feel a little sluggish right now, any improvements would be very welcome.
@samsm
samsm / gist:258823
Created December 17, 2009 15:47 — forked from rentpath/gist:258822
app.get '/guess/:who' do
pass unless params[:who] == 'Frank'
"You got me!"
end
app.get '/guess/*' do
"You missed!"
end