Skip to content

Instantly share code, notes, and snippets.

View andrewwatson's full-sized avatar
🤡
Cranking Out The Code

Andrew Watson andrewwatson

🤡
Cranking Out The Code
View GitHub Profile
@andrewwatson
andrewwatson / rgbExport.js
Last active February 28, 2018 18:31
bookmarklet that exports a piskel and logs the C code to the console
javascript:(function(){
var rgbToCHex = function (r, g, b, a) {
var hexStr = '0x';
hexStr += ('00' + r.toString(16)).substr(-2);
hexStr += ('00' + g.toString(16)).substr(-2);
hexStr += ('00' + b.toString(16)).substr(-2);
return hexStr;
};
var export_to_unit8_t = function () {
// This array holds the words we are going to choose from.
// Feel free to add new words!
var words = ['falcons', 'panthers', 'patriots', 'chargers', 'saints'];
var wordCount = document.getElementById('wordCount');
// console.log(wordCount);
function chooseWord () {
theWord = words[Math.floor(Math.random() * words.length)];
func performIndexSearch(ctx context.Context, userQuery string, options *SearchOptions) ([]Item, map[string]RefinementCollection, error) {
index, err := search.Open(searchIndexName)
if err != nil {
return nil, nil, errors.Wrap(err, "Search Index Unavailable")
}
var keys []*datastore.Key
query := ""
@andrewwatson
andrewwatson / dns.json
Created June 9, 2014 18:27
Consul DNS Configuration
{
"dns_config": {
"service_ttl": {
"*": "5s",
"web": "30s"
},
"allow_stale": true,
"max_stale": "10s"
}
}
@andrewwatson
andrewwatson / consulserver.json
Last active August 25, 2016 06:36
If every consul node has a service defined like this then any new node can join the cluster by joining consul.service.consul
{
"service": {
"name": "consul",
"tags": ["server"]
}
}
@andrewwatson
andrewwatson / storage.go
Created April 27, 2016 14:20
Connect to Datastore from outside GAE
package storage
import (
"io/ioutil"
"golang.org/x/net/context"
"golang.org/x/oauth2/google"
"google.golang.org/cloud"
"google.golang.org/cloud/datastore"
)
@andrewwatson
andrewwatson / storage.go
Created April 26, 2016 19:56
Google App Engine Datastore Adaptor
package storage
import (
"io/ioutil"
"golang.org/x/net/context"
"golang.org/x/oauth2/google"
"google.golang.org/cloud"
"google.golang.org/cloud/datastore"
)

Keybase proof

I hereby claim:

  • I am andrewwatson on github.
  • I am andrewwatson (https://keybase.io/andrewwatson) on keybase.
  • I have a public key whose fingerprint is 7F6F 76DF C495 7FA2 E7D6 44D8 F237 701D 048F A350

To claim this, I am signing this object:

@andrewwatson
andrewwatson / bigcouch.txt
Created March 6, 2012 21:38
BigCouch Bootup Effort
[root@ip-10-40-206-29 log]# /opt/bigcouch/bin/bigcouch
{error_logger,{{2012,3,6},{21,32,8}},"Protocol: ~p: register error: ~p~n",["inet_tcp",{{badmatch,{error,duplicate_name}},[{inet_tcp_dist,listen,1},{net_kernel,start_protos,4},{net_kernel,start_protos,3},{net_kernel,init_node,2},{net_kernel,init,1},{gen_server,init_it,6},{proc_lib,init_p_do_apply,3}]}]}
{error_logger,{{2012,3,6},{21,32,8}},crash_report,[[{initial_call,{net_kernel,init,['Argument__1']}},{pid,<0.21.0>},{registered_name,[]},{error_info,{exit,{error,badarg},[{gen_server,init_it,6},{proc_lib,init_p_do_apply,3}]}},{ancestors,[net_sup,kernel_sup,<0.10.0>]},{messages,[]},{links,[#Port<0.120>,<0.18.0>]},{dictionary,[{longnames,true}]},{trap_exit,true},{status,running},{heap_size,610},{stack_size,24},{reductions,486}],[]]}
{error_logger,{{2012,3,6},{21,32,8}},supervisor_report,[{supervisor,{local,net_sup}},{errorContext,start_error},{reason,{'EXIT',nodistribution}},{offender,[{pid,undefined},{name,net_kernel},{mfargs,{net_kernel,start_link,[[bigcou
@andrewwatson
andrewwatson / wtf.php
Created March 2, 2012 21:04
#lolwtfphp #facepalm
<?php
header('Content-type: image/gif');
echo base64_decode("R0lGODlhAQABAIAAAP///wAAACH5BAUUAAAALAAAAAABAAEAAAICRAEAOw==");
?>