duplicates = multiple editions
A Classical Introduction to Modern Number Theory, Kenneth Ireland Michael Rosen
A Classical Introduction to Modern Number Theory, Kenneth Ireland Michael Rosen
# On slow systems, checking the cached .zcompdump file to see if it must be | |
# regenerated adds a noticable delay to zsh startup. This little hack restricts | |
# it to once a day. It should be pasted into your own completion file. | |
# | |
# The globbing is a little complicated here: | |
# - '#q' is an explicit glob qualifier that makes globbing work within zsh's [[ ]] construct. | |
# - 'N' makes the glob pattern evaluate to nothing when it doesn't match (rather than throw a globbing error) | |
# - '.' matches "regular files" | |
# - 'mh+24' matches files (or directories or whatever) that are older than 24 hours. | |
autoload -Uz compinit |
Principles of Adult Behavior
A curated list of AWS resources to prepare for the AWS Certifications
A curated list of awesome AWS resources you need to prepare for the all 5 AWS Certifications. This gist will include: open source repos, blogs & blogposts, ebooks, PDF, whitepapers, video courses, free lecture, slides, sample test and many other resources.
Disclaimer: This piece is written anonymously. The names of a few particular companies are mentioned, but as common examples only.
This is a short write-up on things that I wish I'd known and considered before joining a private company (aka startup, aka unicorn in some cases). I'm not trying to make the case that you should never join a private company, but the power imbalance between founder and employee is extreme, and that potential candidates would
const codes = require('http-status-codes'); | |
module.exports = (error, req, res, next) => { // jshint ignore:line | |
let message = null; | |
let n; | |
const { NODE_ENV } = process.env; | |
if (typeof error === 'number') { | |
n = error; | |
error = new Error(codes.getStatusText(error)); |
#!/bin/bash | |
# set -x | |
# Stupid Simple Semver range validator | |
# (no build metadata and no prereleases, and no multiple ranges (||)) | |
# Prints a list of versions that match a semver range | |
# ./semver.sh "range" version version version... |
BEGINNER'S GUIDE - ALL CONTROLS + TIPS (Escape from Tarkov)