Skip to content

Instantly share code, notes, and snippets.

View risico's full-sized avatar
💥
compiling

Robert Zimtea risico

💥
compiling
View GitHub Profile
@risico
risico / himawari.py
Created February 5, 2016 18:10 — forked from willwhitney/himawari.py
Fetch and untile tiled Himawari-8 images from the http://himawari8.nict.go.jp PNG endpoint, then set them as desktop background on OSX
import requests
import sys
from datetime import datetime, timedelta
import pytz
from PIL import Image
from StringIO import StringIO
import os
import logging
# python himawari.py
@risico
risico / sort1mb.cpp
Created October 28, 2012 14:10 — forked from preshing/sort1mb.cpp
Sort one million 8-digit numbers in 1MB RAM
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
typedef unsigned int u32;
typedef unsigned long long u64;
//-------------------------------------------------------------------------
// WorkArea
//-------------------------------------------------------------------------