Skip to content

Instantly share code, notes, and snippets.

View LostAccount's full-sized avatar
✍️
I may be slow to respond.

Alex Santos LostAccount

✍️
I may be slow to respond.
View GitHub Profile
@PaulCapestany
PaulCapestany / wwdc_pdf_downloader.sh
Created June 15, 2013 00:13
Download all the WWDC session presentation PDFs with this one-line bash script. Simply "View Source" at https://developer.apple.com/wwdc/videos/ and Save as "wwdc_source", then run the script in terminal. Easy-peazy!
grep -o "devstreaming.*HD.mov" wwdc_source | sed 's/-HD.mov/.pdf/' > wwdc_PDF_urls && for URL in `cat wwdc_PDF_urls`; do curl -OL $URL; done
@tzmartin
tzmartin / js-software-curriculum-100.md
Last active February 23, 2021 23:52
App (JavaScript) Developer Curriculum 100 - First Steps

“search term” Force an exact‐match search. Use this to refine results for ambiguous searches, or to exclude synonyms when searching for single words.

Example: “steve jobs”

OR Search for X or Y. This will return results related to X or Y, or both. Note: The pipe (|) operator can also be used in place of “OR.”

Examples: jobs OR gates / jobs | gates