Skip to content

Instantly share code, notes, and snippets.

@ianwremmel
ianwremmel / README.md
Last active June 29, 2017 04:06
Remove chai-as-promised

Apply this transform using jscodeshift to remove most chai-as-promised assertions.

Note: this codemod does not cover all of the assert.eventually cases, but they should be easy to add.

There's really no alternative to defining the function assert.isRejected. The following should approximate the functionallity from chai-as-promised.

  var chai = require('chai');

  chai.assert.isRejected = function isRejected(promise, expected) {
@ianwremmel
ianwremmel / collection.js
Last active August 29, 2015 14:02
Collection object for a dirty-checking world.
// https://gist.github.com/ianwremmel/9c87948063741c12fece
/*
The MIT License (MIT)
Copyright (c) 2014 Ian W. Remmel
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights

Keybase proof

I hereby claim:

  • I am ianwremmel on github.
  • I am ianwremmel (https://keybase.io/ianwremmel) on keybase.
  • I have a public key whose fingerprint is 8786 E221 4560 8429 2781 B327 C9DA 1EE9 CCF2 1B28

To claim this, I am signing this object:

@ianwremmel
ianwremmel / dev-as-local-domain.sh
Created January 21, 2014 02:37
Setup all hosts on the `dev` TLD to point at `127.0.0.1`.
#!/bin/bash
brew install dnsmasq
# Configure automatic startup
sudo cp -fv /usr/local/opt/dnsmasq/*.plist /Library/LaunchDaemons
sudo mkdir /etc/resolver
echo "nameserver 127.0.0.1" | sudo tee -a /etc/resolver/dev
@ianwremmel
ianwremmel / queue.js
Created September 19, 2012 23:17
Some things in nodejs need to be done synchronously (or, at least, shouldn't be enqueued at the rate a foreach loop will do so). Once I wrote this function three or four times, I decided it was time to put it somewhere easily accessible.
/**
* @file queue.js
* This is an asynchronous queue for nodejs. Initialize it with a callback to
* execute against each item in the queue and (optionally) a queue of items
* against which to operate. Then, execute emitter.emit('next') at the end of
* your callback to trigger each subsequent run. Queue.exec() returns the
* emitter you'll need. Once exec has been called, each time push() is called,
* the pushed item will be execuated against at the end of the queue (if the
* queue is empty, it will be executed imediately).
*/
@ianwremmel
ianwremmel / curl_only_supports_putting_files.php
Created August 31, 2012 03:01
www.ianwremmel.com: PUTting PHP to Restful APIs (Like CouchDB) as JSON
<?php
foreach ($collection as $id => $data) {
$handle = fopen(FILENAME, 'w'€™);
$filesize = fwrite($handle, json_encode($data))
fclose($handle);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, SERVER_URL . '/' . DATABASE . '/' . $id);
curl_setopt($ch, CURLOPT_PUT, TRUE);
$handle = fopen(FILENAME, 'r');