Skip to content

Instantly share code, notes, and snippets.

View tonyrewin's full-sized avatar
💭
pencil painted

Tony tonyrewin

💭
pencil painted
  • AHO Foundation
  • Here
View GitHub Profile
@tonyrewin
tonyrewin / CMakeLists.txt
Created August 24, 2018 21:14
android cmake icu4c
cmake_minimum_required(VERSION 3.6)
set( CPP_DIR ${CMAKE_CURRENT_SOURCE_DIR}/src/main/cpp )
file( GLOB ICUUC_SRC ${CPP_DIR}/icu/source/common/*.cpp )
file( GLOB ICUI18N_SRC ${CPP_DIR}/icu/source/i18n/*.cpp )
add_library(icu SHARED
${ICUUC_SRC}
${ICUI18N_SRC}
${CPP_DIR}/icu/source/stubdata/stubdata.cpp
)
@tonyrewin
tonyrewin / osm_tiles_downloader
Created March 9, 2014 08:20
small script to download OSM tiles
#!/usr/bin/python
from sys import argv
import os
import math
import urllib2
import random
import os.path
def deg2num(lat_deg, lon_deg, zoom):