Skip to content

Instantly share code, notes, and snippets.

View leohacker's full-sized avatar

Leo Jiang leohacker

View GitHub Profile
@leohacker
leohacker / PerformanceRelated.txt
Created October 18, 2016 14:01 — forked from neomatrix369/PerformanceRelated.md
Interesting links in the areas of HPC, low latency, mechanical harmony/sympathy, garbage collection
Everything I Ever Learned About JVM Performance Tuning @Twitter- by Attila Szegedi
http://www.infoq.com/presentations/JVM-Performance-Tuning-twitter (video & slides)
9 Fallacies of Java Performance - by Ben Evans
http://www.infoq.com/articles/9_Fallacies_Java_Performance (video & slides)
Visualizing Java GC - by Ben Evans
http://www.infoq.com/presentations/Visualizing-Java-GC (video & slides)
@leohacker
leohacker / gist:e9b7adf66370cb9fae50
Last active August 29, 2015 14:14 — forked from fgarcia/gist:3968236
Podfile Sample
# vim:ft=Ruby
#
# Base Podfile template for projects targeting OSX and iOS
#
# Author: Francisco Garcia <[email protected]>
# https://github.com/fgarcia
#
# Last Update: 2012-11-28
@leohacker
leohacker / 1_ruby_quicksort.rb
Last active August 29, 2015 14:14
Here are some things you can do with Gists in GistBox.
# Use Gists to store entire functions
class QuickSort
def self.sort!(keys)
quick(keys,0,keys.size-1)
end
private
def self.quick(keys, left, right)