4 years ago in Talks

The Clean Coder

by Robert Martin
(click image to load video)
 4 years ago in Talks

In The Loop

by Jake Archibald
(click image to load video)
 4 years ago in Talks

When JavaScript Bytes

by Tim Kadlec
(click image to load video)
 4 years ago in Cheatsheets

"'padding: 50% 0;' will force it to be a square"

what? why?
<style>.sqtest
{
  background:#f00;
  padding: 50% 0;
}
</style>
<div class=sqtest>&nbsp;</div>

some text to make this wider some text to make this wider some text to make this wider some text to make this wider some text to make this wider some text to make this wider some text to make this wider some text to make this wider some text to make this wider some text to make this wider some text to make this wider some text to make this wider some text to make this wider some text to make this wider some text to make this wider some text to make this wider some text to make this wider some text to make this wider some text to make this wider some text to make this wider some text to make this wider some text to make this wider some text to make this wider some text to make this wider some text to make this wider
 
 4 years ago in Cheatsheets

JavaScript + CSS

element.style.getPropertyValue("color");
getComputedStyle(element).getPropertyValue("color");
element.style.setProperty("color", "#f00");
 4 years ago in Talks

PHP Performance Trivia

by Nikita Popov
(click image to load video)
 4 years ago in Talks
(click image to load video)
 4 years ago in Tutorials

How These Things Work

A book about CS from first principles
 4 years ago in Talks

Make JavaScript Faster

by Steve Souders
(click image to load video)
 5 years ago in Stuff

Programming Fonts

previews and links to a lot of great programming fonts
 5 years ago in Cheatsheets

HTML HEAD links

stylesheetexternal stylesheet
alternateother versions of the page (different languages or media formats)
alternate stylesheetattributes can be combined
startthe first document in a series of documents, of which the current page is a member
nextthe next document in a series
prevthe previous document in a series
contentstable of contents
toctable of contents (less supported)
indexindex for the current page
glossaryglossary of terms related to the current page
copyrightcopyright statement for the current page
chapter
section
subsection
appendix
helphelp about the current document
bookmarkbookmark or key entry point within an extended document
 5 years ago in Cheatsheets

HTTP status codes

Successful Client Requests

200 OK
201 Created
202 Accepted
203 Non-Authorative Information
204 No Content
205 Reset Content
206 Partial Content

Client Request Redirected

300 Multiple Choices
301 Moved Permanently
302 Moved Temporarily
303 See Other
304 Not Modified
305 Use Proxy
307 Temporary Redirect

Client Request Errors

400 Bad Request
401 Authorization Required
402 Payment Required (not used yet)
403 Forbidden
404 Not Found
405 Method Not Allowed
406 Not Acceptable (encoding)
407 Proxy Authentication Required
408 Request Timed Out
409 Conflicting Request
410 Gone
411 Content Length Required
412 Precondition Failed
413 Request Entity Too Long
414 Request URI Too Long
415 Unsupported Media Type
416 Requested range not satisfiable
417 Expectation failed

Server Errors

500 Internal Server Error
501 Not Implemented
502 Bad Gateway
503 Service Unavailable
504 Gateway Timeout
505 HTTP Version Not Supported
(haven't updated this in ages)