Skip to content

Instantly share code, notes, and snippets.

View arrel's full-sized avatar

Arrel Gray arrel

  • Santa Barbara, CA
View GitHub Profile

Circle

A Circle represents a group on Grapevine, with members who pool their donations and decide together where to grant them.

List API Request

GET https://api.grapevine.org/public/circles
pageSize (number): OPTIONAL number of results per page, default 20
pageToken (string): OPTIONAL pagination token returned as nextPageToken in responses
circleId (string): OPTIONAL comma-delimited list of Circle ids

@arrel
arrel / htaccess
Last active February 3, 2016 20:50
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
@arrel
arrel / Throttling
Created July 29, 2010 20:38
Throttle bandwidth to individual domains on os x
#!/bin/bash
# if you do not have access to run the script, run "chmod 755 throttling"
# to run enter in terminal "./throttling [speed]"
# full (no throttling)
# fast (300Kbit)
# medium (100Kbit)
# slow (10Kbit)
# wwdc (1Kbit)
# off (blocks connection)