Skip to content

Instantly share code, notes, and snippets.

View NicoPennec's full-sized avatar
🍼
daddy cool (again)

Nicolas PENNEC NicoPennec

🍼
daddy cool (again)
View GitHub Profile
@elishowk
elishowk / gist:3946440
Created October 24, 2012 14:39
Questionnaire entretien dev web

Questionnaire entretien dev web

@version 1.1

Contributors

@bentruyman (http://bentruyman.com/), @roger_raymond (http://twitter.com/iansym), @ajpiano (http://ajpiano.com/), @paul_irish (http://paulirish.com/), @SlexAxton (http://alexsexton.com/), @boazsender (http://boazsender.com/), @miketaylr (http://miketaylr.com/), @vladikoff (http://vladfilippov.com/), @gf3 (http://gf3.ca/), @jon_neal (http://twitter.com/jon_neal), @wookiehangover (http://wookiehangover.com/) and @darcy_clarke (http://darcyclarke.me)

Veille Techno

FWIW: I (@rondy) am not the creator of the content shared here, which is an excerpt from Edmond Lau's book. I simply copied and pasted it from another location and saved it as a personal note, before it gained popularity on news.ycombinator.com. Unfortunately, I cannot recall the exact origin of the original source, nor was I able to find the author's name, so I am can't provide the appropriate credits.


Effective Engineer - Notes

What's an Effective Engineer?

@feoche
feoche / a11y-checklist.md
Last active December 11, 2019 14:09
a11y checklist (based on the http://a11yproject.com/checklist.html page, kudos to them)

a11y checklist

Landmarks

  • <html lang="en">
  • <header role="banner">
  • <nav role="navigation">
  • <main role="main">
  • <article role="article">
  • <aside role="complementary">
  • ``````

Strings

String.prototype.*

None of the string methods modify this – they always return fresh strings.

  • charAt(pos: number): string ES1

    Returns the character at index pos, as a string (JavaScript does not have a datatype for characters). str[i] is equivalent to str.charAt(i) and more concise (caveat: may not work on old engines).

@feoche
feoche / .gitconfig
Last active January 31, 2022 17:55
My detailed .gitconfig
[alias]
# Discard duplicate leading “git” (e.g. “git git status”)
git = "!git"
# add all files
aa = add --all
# abort current rebase
abort = rebase --abort