Skip to content

Instantly share code, notes, and snippets.

@twolfson
twolfson / README.md
Last active May 18, 2016 20:43
Notification library evaluation
@twolfson
twolfson / README.md
Created May 11, 2016 23:16
Analytics evaluation
@twolfson
twolfson / README.md
Last active December 2, 2018 07:05
Internal monitoring evaluation / research
@twolfson
twolfson / README.md
Last active August 1, 2023 10:45
Node.js job queue evaluation

We are building a Node.js service which will need asynchronous support for tasks like sending emails. Here's our evaluation:

@twolfson
twolfson / README.md
Last active December 28, 2019 22:38
Node.js ORM evaluation

We are planning on building a Node.js service. Here's our evaluation of the current ORM landscape:

Last updated: May 2 2016

@twolfson
twolfson / .gitignore
Last active July 24, 2018 15:22
Proof of concept to explore various Vagrant/Docker setups
node_modules/
.vagrant/
@twolfson
twolfson / README.md
Last active May 18, 2016 18:07
WYSIWYG editor evaluation

I forgot to save which WYSIWYG editor I was using earlier. As a result, we have to review them all over again =(

Needs:

  • Allow following link inline
  • Prefer to avoid separation of editing from output

Libraries:

@namuol
namuol / INSTALL.md
Last active July 24, 2023 11:53
rage-quit support for bash

rage-quit support for bash

HOW TO INSTALL

Put flip somewhere in your $PATH and chmod a+x it.

Copy fuck into ~/.bashrc.

@twolfson
twolfson / README.md
Last active January 22, 2024 07:33
How Python modules are resolved

Python modules have 2 syntaxes for importing.

import x
from x import y

import x

Absolute imports are used for importing top-level modules and only top level modules. These are ones that are globally installed, either inside of Python core or via a package manager (e.g. pip).

@twolfson
twolfson / grunt.js
Last active January 5, 2016 21:07
Download and unzip Twitter Bootstrap in one fell swoop with grunt
module.exports = function (grunt) {
// Initial configuration
grunt.initConfig({
// Download external resources
curl: {
// Twitter Bootstrap
bootstrap: {
src: 'http://twitter.github.com/bootstrap/assets/bootstrap.zip',
dest: 'tmp/bootstrap.zip'
}