I no longer mantain this list. There are lots of other very comprehensive JavaScript link lists out there. Please see those, instead (Google "awesome JavaScript" for a start).
- Ergo Depot Jarvis Desk, as recommended by The Wirecutter
- CumulusPRO Anti-Fatigue Mat, also recommended by The Wirecutter
- Humanscale M8 Monitor Arm, used from eBay
- Aukey iPad Stand
by xero updated 10.29.24
Eldritch can seem ugly and hard, but it's fun game once you push through the learning curve. | |
For a game with so many right angles, it feels surprisingly non-Euclidean! I was pretty | |
underwhelmed th first two times I tried the game out, but the third time it really clicked... | |
it's now a definitefavorite. | |
Here are a few suggestions to make it up that initial ramp. Some of these might be considered | |
spoilery, but if they get you to actually play the game, who's going to kick? | |
(1) _Don't_ loot bodies until you're better at the game. Looted enemies respawn; by clearing them | |
out, you buy yourself breathing space. |
Programmers likes to fix things. When there is a typo in your code, then your code won't work. There are many requests to fix typo in the article from inconstant numbering in footnotes to wrong filename for images. When spotting someone's mistake, get creative and title your PR like "Instagram is only worth 1 Instragram not 2 Instragrams". Programmer's attention to detail extends not only the article itself, but also the license doc in the repo.
Don't forget to fact check before spotting mistake though. It's important. Keyword to use is AFAIK and can confirm.
Programmers love to know the source of information. There are few requests to add hyperlinks to contents referenced in the article. Some are from original autho
I have a project that's been happily chugging along on Travis for a while. Its .travis.yml
looks something like
script:
- node_modules/ember-cli/bin/ember test
I wanted to add a second parallel build that did something very different. I didn't want to run ember test
with a different Ember version or some other flag. I wanted to run a completely different command. Specifically, I wanted to run LicenseFinder's audit.
Travis has great docs on customizing parallel builds, but nothing describes how to do two completely different commands.
This script is no longer required with Docker for Mac which includes an option to run Docker at startup and doesn't use docker-machine
to administer the local Docker engine.
- Docker Machine + Docker
- curl
- A Virtualbox-driven Docker Machine called "default"
docker-machine create --driver virtualbox default
(this is the default with Docker toolkit).
Moved to a proprer repositoy, TSWS is a real boy now! | |
https://github.com/dfletcher/tsws | |
PRs welcomed. |
### I assume you run the commands as root | |
gradle_version=2.6 | |
wget -c http://services.gradle.org/distributions/gradle-${gradle_version}-all.zip | |
unzip gradle-${gradle_version}-all.zip -d /opt | |
ln -s /opt/gradle-${gradle_version} /opt/gradle | |
printf "export GRADLE_HOME=/opt/gradle\nexport PATH=\$PATH:\$GRADLE_HOME/bin\n" > /etc/profile.d/gradle.sh | |
source /etc/profile.d/gradle.sh | |
# check installation | |
gradle -v |
Picking the right architecture = Picking the right battles + Managing trade-offs
- Clarify and agree on the scope of the system
- User cases (description of sequences of events that, taken together, lead to a system doing something useful)
- Who is going to use it?
- How are they going to use it?