Skip to content

Instantly share code, notes, and snippets.

@g0ral
g0ral / PhysicalLatLonToPixelXY.html
Created October 31, 2016 10:50 — forked from iamjpg/PhysicalLatLonToPixelXY.html
Google Maps v3 – Translate Physical Latitude/Longitude into Screen Pixel X/Y
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>google_maps_custom_point</title>
<style>
body {
margin: 0;
@g0ral
g0ral / convert_webp_to_jpg
Created July 30, 2014 10:01
Convert webp to jpg
#!/bin/bash
for file in *.webp; do
dwebp -o "`basename $file .webp`.png" "$file"
done
@g0ral
g0ral / gist:6053451
Created July 22, 2013 12:22
Procedures collation problem fix
ALTER TABLE `table` CONVERT TO CHARACTER SET utf8;