Projects:
- GEGL, GNOME
- apple/coremltools
- apache/thrift
- https://github.com/apache/thrift/commit/57cd421de3b681b4e401dcc5d965671362663998
| # Haproxy config file for SSL and basic authentication | |
| # | |
| # Since ssl is needed, we need to use | |
| # `make TARGET=linux26 USE_OPENSSL=1 ADDLIB=-lz` to install haproxy. | |
| # Also, haproxy version must be haproxy-1.5-dev19 or above. | |
| # | |
| # An example curl command that queryies pic-collage.com/api/collages/feed is | |
| # `curl -k -v -u 'collages:password' 'https://ec2-ip.compute-1.amazonaws.com/api/collages/feed'` | |
| userlist collages_dyno |
| numpy_code = """ | |
| # -*- coding: utf-8 -*- | |
| # Copyright (c) 2014, Almar Klein and Wade Brainerd | |
| # tinynumpy is distributed under the terms of the MIT License. | |
| # | |
| # Original code by Wade Brainerd (https://github.com/wadetb/tinyndarray) | |
| # | |
| # Permission is hereby granted, free of charge, to any person obtaining a copy | |
| # of this software and associated documentation files (the "Software"), to deal | |
| # in the Software without restriction, including without limitation the rights |
Projects:
| package main | |
| import ( | |
| "flag" | |
| "github.com/aws/aws-sdk-go/aws" | |
| "github.com/aws/aws-sdk-go/aws/credentials" | |
| "github.com/aws/aws-sdk-go/aws/session" | |
| "github.com/aws/aws-sdk-go/service/dynamodb" | |
| "github.com/pkg/errors" |
| # Command for filtering only packets with length > 0 | |
| # Copied from http://www.wains.be/pub/networking/tcpdump_advanced_filters.txt | |
| # | |
| sudo tcpdump -i lo0 -A -q '(((ip[2:2] - ((ip[0]&0xf)<<2)) - ((tcp[12]&0xf0)>>2)) != 0) && port 55976' |
I am fumin (awaw in most places on the web) who is mainly a developer focusing on web, iOS, and Android apps. I work at cardinalblue.com. You can find more about me at github/fumin, previous homepage, and future graphics.
To practice the English language orally, and to get to know new friends
I hope everyone participating find the gathering interesting, helpful, and rewarding. I believe I will feel the same if everyone feels so.
| #!/bin/sh | |
| function killport { | |
| while true; do | |
| PID=$(lsof -i TCP:$1 | grep LISTEN | awk '{print $2}') | |
| exec 3>&2 # 3 is now a copy of 2 | |
| exec 2> /dev/null # 2 now points to /dev/null | |
| kill $PID | |
| kill -0 $PID |
| require 'fiber' | |
| require 'eventmachine' | |
| require 'rest-core' | |
| class BlockingClient | |
| def initialize *args | |
| @client = RC::Universal.new(*args) | |
| end | |
| def get path, params={}, opts={} | |
| @client.get(path, params, opts).tap{} |
| #!/bin/bash | |
| cd `pwd` | |
| find . ! \( -name ".git" -prune -o -name tmp -prune -o -name log -prune \) -type f -exec grep "$@" {} \; |
| c = RC::Tumblr.new | |
| c.authorize_url! # https://api.tumblr.com/oauth/authorize?oauth_token=I8QcLz0oqCTS47D9cHqjn9QfHkcmZzeMJNZEwkpCEwOdIctD2Y | |
| # throw the above link into browser and login | |
| # Eventually you'll end up in http://pic-collage.com/?oauth_token=I8QcLz0oqCTS47D9cHqjn9QfHkcmZzeMJNZEwkpCEwOdIctD2Y&oauth_verifier=nSAGgIsnwFoNChxIWAjYmFWKjMDWTG0UmOOr4VGpRcYsSDY7Z3 | |
| c.authorize! :oauth_verifier => 'nSAGgIsnwFoNChxIWAjYmFWKjMDWTG0UmOOr4VGpRcYsSDY7Z3' | |
| # You are ready now :) | |
| pp c.user_info |