View haxxors.txt
2014/02/17 08:52:43 [error] 231#0: *2612 open() "/usr/share/nginx/html/cgi-bin/rtpd.cgi" failed (2: No such file or directory), client: 183.60.244.44, server: jeffl.es, request: "GET /cgi-bin/rtpd.cgi?echo&AdminPasswd_ss|tdb&get&HTTPAccount HTTP/1.1", host: "69.115.143.116" | |
2014/02/17 08:52:43 [error] 231#0: *2613 open() "/usr/share/nginx/html/img/snapshot.cgi" failed (2: No such file or directory), client: 183.60.244.44, server: jeffl.es, request: "GET /img/snapshot.cgi?AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA�� HTTP/1.0" | |
2014/02/17 08:52:44 [error] 231#0: *2614 open() "/usr/share/nginx/html/oamp/System.xml" failed (2: No such file or directory), client: 183.60.244.44, server: jeffl.es, request: "GET /oamp/System.xml?action=login&user=L1_admin&password=L1_51 HTTP/1.1", host: "69.115.143.116" | |
2014/02/17 08:52:44 [error] 231#0: *2615 open() "/usr/share/nginx/html/oidtable.cgi" failed (2: No such file or |
View gist:10768422
// not checking error codes cause YOLO | |
void | |
plot_dots(OGRLayerH layer, cairo_t *ctx, simplet_map_t *map, const char *color){ | |
OGRFeatureH feature; | |
while((feature = OGR_L_GetNextFeature(layer))){ | |
int num = OGR_F_GetFieldAsInteger(feature, 0); | |
OGRGeometryH geom = OGR_F_GetGeometryRef(feature); | |
OGR_G_TransformTo(geom, map->proj); | |
OGREnvelope env; |
View Sorty.js
// usage: var mytable = new Sorty(table); | |
(function(){ | |
var Row = function(el) { | |
this.values = $.map($(el).find('td'), function(e) { | |
var el = $(e); | |
var attr = el.attr('data-sort'); | |
return attr ? parseFloat(attr) : el.text(); | |
}); | |
this.el = $(el); |
View smash.rb
str = "" | |
nesting = 15000 | |
nesting.times do | |
print "[" | |
end | |
nesting.times do | |
print "]" | |
end |
View gist:0bc74e96cf789947ae02
desc "build cropped heightmap" | |
task :build_srtm do |t| | |
# have to download the SRTM_W_250m.tif first from cgiar | |
system "gdalwarp ./db/initial/srtm/SRTM_W_250m.tif ./db/initial/srtm/cropped.tif -t_srs 'EPSG:102003' -cutline ./db/initial/shapes/shoreline/us.shp -crop_to_cutline" | |
end | |
desc "build cropped raster from heightmap" | |
task :build_raster do |t| | |
STDOUT.sync = true | |
(200401..200407).each do |t| |
View Makefile
all: boston-results.csv | |
schools.csv: download.py | |
python download.py > schools.csv | |
boston-schools.csv: schools.csv | |
csvgrep -c 1 -m boston schools.csv > boston-schools.csv | |
boston-schools.db: boston-schools.csv | |
python build-dataset.py # in practice will output a sqlite db called boston-schools.db |
View vector-clock.js
var Clock = function(id){ | |
this.id = id; | |
this.clock = {}; | |
this.clock[this.id] = 0; | |
}; | |
Clock.prototype.get = function() { return data; }; | |
Clock.prototype.update = function(data, send) { |
View cryptor.js
// WILL SAD TAB CHROME IF YOU OPEN THE INSPECTOR | |
// LOL CRYPTO | |
var c1 = document.querySelector("canvas#video"); | |
var c2 = document.querySelector("canvas#crypt"); | |
var video = document.querySelector("video"); | |
var plain = c1.getContext("2d"); | |
var crypt = c2.getContext("2d"); | |
var key; |
View gist:86836f85bb5c724421a2
611cd20 add map-1957 | |
aa5404d resolve merge | |
1e4180d easing kinda | |
dc8ff5f years | |
2c53b79 oldmap on tha map | |
31782dc old map | |
8397d32 I think this will work | |
500e787 change the world | |
92e694b waypoint | |
395e5ca feedbak |
View guh.c
#include <gdal.h> | |
#include <gdal_alg.h> | |
#include <stdbool.h> | |
#include <stdint.h> | |
#include <math.h> | |
#include "raster_layer.h" | |
#include "raster_resample.h" | |
#include "util.h" | |
#include "error.h" |
OlderNewer