Skip to content

Instantly share code, notes, and snippets.

@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 / 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 / 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

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 / 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
@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 / 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 / transform.js
Last active August 7, 2017 18:01
codemod: add header banner
/**
* Adds a copyright banner to all files, removing any copyright banner that may
* have already existed.
*
* Note: You'll need to run `eslint --fix` afterwards to remove the stray
* whitespace that this transform adds.
*/
module.exports = function transform({source}, {jscodeshift}) {
const j = jscodeshift;
// apply trim to remove any leading whitespace that may already exist
@ianwremmel
ianwremmel / project-init.sh
Last active October 28, 2017 19:46
Work in Progress for wiring up the bare-minimum github/ci flow
#!/usr/bin/env bash
# TODO do not push package.json until circle ci is following the repo
# TODO add local template for package.json
# TODO every curl needs better success checking
# TODO non-interactive mode
# TODO create CONTRIBUTE.md
# TODO create github issue template
# TODO create editorconfig
# TODO create eslintrc.yml
@ianwremmel
ianwremmel / merge-dependabot-pr.sh
Last active February 9, 2022 11:55
merge-dependabot-pr.sh
#!/bin/bash
# This script creates a consolidate Pull Request for all outstanding dependabot
# Pull Requests.
#
# Motivation: Sometimes, dependabot opens a large number of PRs that all need to
# be merged. Each time one merges, it causes the rest to be out of date, making
# it a slow, manual process of clicking upate, waiting for ci, then clicking
# merge for each subsequent PR.
#