Skip to content

Instantly share code, notes, and snippets.

@kendellfab
kendellfab / synergy_build
Created December 1, 2014 15:41
Building Synergy on OSX Yosemite
I was able to get this working on Yosemite with the following command:
./hm.sh conf -g2 --mac-sdk 10.10 --mac-identity Yosemite
Of course, this will only work given you have the dependencies. You can install them with the Homebrew package manager.
brew install cmake qt
Additionally, you'll want to build it with:
./hm.sh build
And finally, to install it, you'll get the compiled results from the bin folder, i.e. Synergy.app
@kendellfab
kendellfab / Apache Test
Created August 12, 2013 15:14
Example of using apache test tools to test server.
ab -c 100 -n 10000 http://{your ip}:8000/
@kendellfab
kendellfab / Typescript Comments
Created August 15, 2013 19:54
Sublime Text TypeScript commenting.
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>name</key>
<string>Comments</string>
<key>scope</key>
<string>source.ts</string>
<key>settings</key>
<dict>
@kendellfab
kendellfab / ejabberd_user
Created September 3, 2013 15:05
Register a new ejabberd user.
sudo ejabberdctl register <username> <domain> <password>
@kendellfab
kendellfab / fish_shell
Created September 5, 2013 14:35
Adding a list to a list in fish shell.
set PATH $PATH {$GOPATH}/bin
@kendellfab
kendellfab / arch_java.
Created September 19, 2013 19:40
Install Oracle java 7
http://stackoverflow.com/questions/13439665/how-to-install-java-on-arch-linux
=============================================================================
sudo pacman -R icedtea-web
Then build Oracle JRE AUR package,
Before installing OracleJRE I had to remove openjdk6 manually and ignore dependencies:
[argy@Freak jre]$ sudo pacman -Rdd openjdk6
@kendellfab
kendellfab / pacman_aur
Created September 23, 2013 00:26
Show list of AUR packages installed in pacman.
pacman -Qm
from gi.repository import Gtk
builder = Gtk.Builder()
builder.add_from_file("/home/kendell/Desktop/gui.glade")
window = builder.get_object("window1")
window.show_all()
Gtk.main()
@kendellfab
kendellfab / golang_concurrency
Created November 4, 2013 21:31
Simple Golang concurrency concept.
// http://talks.golang.org/2012/concurrency.slide
func Google(query string) (results []Result) {
c := make(chan Result)
go func() { c <- Web(query) } ()
go func() { c <- Image(query) } ()
go func() { c <- Video(query) } ()
for i := 0; i < 3; i++ {
result := <-c
results = append(results, result)
@kendellfab
kendellfab / git_retieve
Created November 13, 2013 22:06
Retrieve lost file from git.
git checkout <rev> filename