Skip to content

Instantly share code, notes, and snippets.

@donaldh
donaldh / README.md
Created June 12, 2012 22:36
force-multi-foci with convex hulls

I have modified the force-multi-foci example to add a convex hull around each cluster of nodes.

I achieved this by using d3.nest() to create a new dataset of clusters containing the nodes in each cluster. Then in the tick() method I create and update the path element for each cluster in this dataset.

@hubgit
hubgit / HTTPClient.php
Created June 19, 2012 09:18
PHP HTTP Client
<?php
class HTTPClient {
public $base;
public $curl;
public $format;
function __construct($base = null) {
$this->base = $base;
$this->curl_init();
@hubgit
hubgit / git-config.sh
Created August 2, 2012 18:27
Git config
#!/bin/bash
git config --global "Your Name"
git config --global "[email protected]"
git config --global core.excludesfile ~/.gitignore_global
@carsonmcdonald
carsonmcdonald / app.js
Created September 2, 2012 01:59
Use S3 CORS FileAPI uploader
function createCORSRequest(method, url)
{
var xhr = new XMLHttpRequest();
if ("withCredentials" in xhr)
{
xhr.open(method, url, true);
}
else if (typeof XDomainRequest != "undefined")
{
xhr = new XDomainRequest();
<?php
namespace Incenteev\Bundle\Form\Extension;
use Symfony\Component\Form\AbstractTypeExtension;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolverInterface;
/**
* @author Adrien Brault <[email protected]>
@hubgit
hubgit / ec2-medline.sh
Last active December 13, 2015 23:58
EC2 Instance - Fetch MEDLINE data
# create instance
# create 100GB volume in same zone
# attach volume to instance
ssh -i $AWS_KEY.pem ubuntu@$AWS_ADDRESS
byobu-enable
sudo apt-get update
sudo apt-get install xfsprogs
@jordansissel
jordansissel / readme.md
Created March 23, 2013 19:37
Operating an Archive Team Warrior appliance on a headless server.

Download the VirtualBox appliance

wget http://archive.org/download/archiveteam-warrior/archiveteam-warrior-v2-20121008.ova

Import it

VBoxManage import archiveteam-warrior-v2-20121008.ova

Boot it

@pipwilson
pipwilson / options
Last active December 15, 2015 08:39
My get_iplayer config
fatfilename 1
whitespace 1
nopurge = 1
subdirformat <name>
radiomode best
tvmode best
output /mnt/iplayer
nopurge = 1
fileprefix <episode>
aactomp3 1
@hubgit
hubgit / TwitterClient.php
Last active December 16, 2015 19:50
PHP Twitter client (application-level authentication)
<?php
date_default_timezone_set('UTC');
// Create an application at https://dev.twitter.com/apps/ for keys
class TwitterClient {
/** @var cURL */
public $curl;
@hubgit
hubgit / citation-schema.json
Last active May 2, 2022 08:57
Mapping of Highwire/Google Scholar citation_* meta fields to schema.org properties, as a JSON-LD context document. Definitions starting with "#" are invalid.
{
"@context": {
"_links": "http://stateless.co/hal_specification.html#links",
"title": "http://schema.org/name",
"description": "http://schema.org/description",
"publisher": "#http://schema.org/publisher > http://schema.org/Organization > http://schema.org/name",
"firstpage": "http://schema.org/pageStart",
"doi": "#http://schema.org/sameAs (URL)",
"volume": "#http://schema.org/isPartOf > http://schema.org/PublicationVolume > http://schema.org/volumeNumber",
"volume": "#http://schema.org/isPartOf > http://schema.org/PublicationIssue > http://schema.org/issueNumber",