Skip to content

Instantly share code, notes, and snippets.

View shinyzhu's full-sized avatar
🗣️
Talk to me

Shiny shinyzhu

🗣️
Talk to me
View GitHub Profile
@shinyzhu
shinyzhu / ipin.py
Created October 8, 2011 02:37
iPIN - iPhone PNG Images Normalizer
#---
# iPIN - iPhone PNG Images Normalizer v1.0
# Copyright (C) 2007
#
# Author:
# Axel E. Brzostowski
# http://www.axelbrz.com.ar/
# [email protected]
#
# References:
@shinyzhu
shinyzhu / inheritance.js
Created February 10, 2012 06:45
Inheritance in javascript
// Practices from Object Oriented Javascript
// version 0.0.0.11
(function() {
function multi() {
var n = {},
stuff, j = 0,
len = arguments.length;
for (j = 0; j < len; j++) {
stuff = arguments[j];
for (var i in stuff) {
@shinyzhu
shinyzhu / dabblet.css
Created February 18, 2012 05:40
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
body{background: linear-gradient(45deg, #f06, yellow);min-height: 100%;}
canvas{width:600px;height:400px;background:#cef;}
@shinyzhu
shinyzhu / gist:2601241
Created May 5, 2012 09:50
NSLog replacement
// NSLog replacement
#define MYLogEnabled NO
#define MYLog(format, ...) \
if(MYLogEnabled){NSLog(@"%s: (Ln%i) %@", __PRETTY_FUNCTION__, __LINE__, [NSString stringWithFormat:format, ## __VA_ARGS__]);}
@shinyzhu
shinyzhu / gist:3175082
Created July 25, 2012 08:27
UIColor from hex value in Objective-C
/*
UIColor from hex value in Objective-C
*/
#define UIColorFromRGB(rgbHex) [UIColor colorWithRed:((float)((rgbHex & 0xFF0000) >> 16))/255.0 green:((float)((rgbHex & 0xFF00) >> 8))/255.0 blue:((float)(rgbHex & 0xFF))/255.0 alpha:1.0]
// Usage:
UIColor *bgColor = UIColorFromRGB(0xCCEEFF);
var z="http://gist.github.com/",y=document.write,x=$("body"),w=$("p.gist").map(function(b,a){a=$(a);var c=$("a",a),u=c.attr("href");if(c.length&&u.indexOf(z)==0)return{p:a,id:u.substring(z.length)}}).get(),v=function(){if(w.length==0)document.write=y;else{var b=w.shift();document.write=function(){document.write=function(a){b.p.replaceWith(a);v()}};x.append('<scr'+'ipt src="'+z+b.id+'.js"></scr'+'ipt>')}};v();
@shinyzhu
shinyzhu / GooglePoints.cs
Last active February 23, 2025 17:08
Encode/Decode Polyline Algorithm Format in C#
/// <summary>
/// See https://developers.google.com/maps/documentation/utilities/polylinealgorithm
/// </summary>
public static class GooglePoints
{
/// <summary>
/// Decode google style polyline coordinates.
/// </summary>
/// <param name="encodedPoints"></param>
/// <returns></returns>
@shinyzhu
shinyzhu / ppt-watermarks-removal.vbs
Last active August 29, 2015 14:01
Remove some watermarks in Powerpoint template files
Option Explicit
Sub RemoveWatermarks()
'image watermark values
Dim imgWidth As Double, imgHeight As Double, delta As Double
imgWidth = 100.12
imgHeight = 100.12
delta = 0.1
@shinyzhu
shinyzhu / add-progressbar.vbs
Created May 18, 2014 01:37
Add a progress bar to each slide bottom of PowerPoint.
Option Explicit
Sub AddProgressBar()
On Error Resume Next
With ActivePresentation
For X = 1 To .Slides.Count
.Slides(X).Shapes("PB").Delete
Set s = .Slides(X).Shapes.AddShape(msoShapeRectangle, _
{"sig":"eccca68f69ef8a88f3fa02319163a7fb5b07445436da80bd4889a58ce8d913307551ff641578186ea46367ea4eedb1852b594029d175b891c0f2b49d57cf3af81","msghash":"85b33d53d100354f8b1c9d587f5cef58eee18f2b2483c9e65a5dad0e470c3e91"}