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 / gist:836796
Created February 21, 2011 08:01
read info.plist
NSBundle *mainBudle=[NSBundle mainBundle];
NSString *hgURL = [mainBudle objectForInfoDictionaryKey:@"HGGuideURL"];
@shinyzhu
shinyzhu / Base58Encoder.h
Created July 8, 2011 03:16
ObjC implementation of base 58 encoding for Flic.kr URLs.
@interface Base58Encoder : NSObject {
}
+ (NSString *)base58EncodedValue:(long long)num;
@end
@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__]);}
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();
{"sig":"eccca68f69ef8a88f3fa02319163a7fb5b07445436da80bd4889a58ce8d913307551ff641578186ea46367ea4eedb1852b594029d175b891c0f2b49d57cf3af81","msghash":"85b33d53d100354f8b1c9d587f5cef58eee18f2b2483c9e65a5dad0e470c3e91"}
@shinyzhu
shinyzhu / create-redis-cluster.sh
Last active March 3, 2019 03:13 — forked from abhirockzz/create-redis-cluster.sh
Use redis-cli to create a Redis Cluster on Docker (with Redis 5.0)
#------------ bootstrap the cluster nodes --------------------
redis_image='redis:5'
network_name='host' # must be in host mode
#---------- create the cluster ------------------------
for port in `seq 6379 6384`; do \
start_cmd="redis-server --port $port --cluster-enabled yes --cluster-config-file nodes.conf --cluster-node-timeout 5000 --appendonly yes"
docker run -d --name "redis-"$port -p $port:6379 --net $network_name $redis_image $start_cmd;
@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);
@shinyzhu
shinyzhu / Loop-Live-Streaming-with-ffmpeg.md
Last active December 18, 2022 03:55
Live streaming forever with ffmpeg

Loop Live Streaming with ffmpeg

Run ffmpeg in a separate screen.

screen -S stream

Then run the streaming script.