Skip to content

Instantly share code, notes, and snippets.

@ianwremmel
ianwremmel / transform.js
Created August 3, 2017 20:24
codemod: remove wrapHandler
/**
* turns e.g.
*
* ```
* const wrapHandler = require(`../lib/wrap-handler`);
* const {list, spawn} = require(`../util/package`);
*
* module.exports = {
* command: `exec cmd [args...]`,
* desc: `Run a command in each package directory`,
@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 / 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 / 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');
@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: