Skip to content

Latest commit

 

History

History
52 lines (40 loc) · 2.29 KB

tech-talks.md

File metadata and controls

52 lines (40 loc) · 2.29 KB

Tech Talks

Add yours here by submitting a Pull Request!

Guidelines:

  • 15 minutes to present

When proposing one, include the following next to your item

  1. your GitHub username
  2. which Friday you want to present
  3. link to slides or list-o-links with descriptions and link-to-recording-afterwards so someone else can listen in later.

Talks


Some Fodder

(if you want to give a talk but want some ideas on what to show)

  • favorite libraries
    • ampersandjs.com
    • github.com/avajs
    • knockoutjs.com
    • github.com/maxogden/yo-yo
  • How to use Browser Performance tools (repaints)
  • Performance collection: (repaints, image/XHR requests). How to add it to integration tests & production
  • Accessibility: how to get into normal ux/dev/qa process
  • HSTS preloading
  • history.state
    • dak's sprint demo but more techy and less-interrupty
  • When to use, when to skip? coverage, integration, unit tests
    • when should something be a unit test, integration test, dev performance test
    • when is coverage useful and how should it be collected (ie QA would like it to be collected during the manual tests)
  • SASS vs LESS (organizing code for styling books)
  • Parallel computing basics/refresher (AKA how to use more of the hardware you already paid for):
    • Multiple processes vs Multiple threads vs Hyperthreads (what are the differences, purposes, pros and cons)
    • Native threads and processes (what makes them so hard to use)
    • How web servers (like Rails) try to make multithreading work
    • Some higher level abstractions (Actors and Reactors)