I hereby claim:
- I am rzhw on github.
- I am rzhw (https://keybase.io/rzhw) on keybase.
- I have a public key whose fingerprint is 5837 31A6 D0B8 BE23 4837 545C 6E8B 8497 F6EF 6F56
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
// gcc pempublickeytest.c -lssl -lcrypto -I/usr/include/openssl/ -o pempublickeytest | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <openssl/rsa.h> | |
#include <openssl/bio.h> | |
#include <openssl/pem.h> | |
int main() { | |
BIO *bio = BIO_new_file("blah_rsa.pub.pem", "r"); |
private
atom.workspaceView.getEditorViews()[0].scrollView.on('mousewheel', function(){alert('hi')}) | |
http://stackoverflow.com/a/21261771/77922 | |
jQuery = require('atom').$ | |
findEventHandlers("mousewheel", atom.workspaceView.getEditorViews()[0].scrollView) | |
atom.workspaceView.getActiveView().is(".editor") |
using Cirrious.MvvmCross.ViewModels; | |
using System; | |
using System.Collections.Generic; | |
using System.Diagnostics.Contracts; | |
using System.Linq; | |
using System.Runtime.CompilerServices; | |
using System.Text; | |
using System.Threading.Tasks; | |
namespace Blah |
alias clang++='clang++ -I"/usr/lib/gcc/i686-pc-cygwin/4.7.3/include/c++/i686-pc-cygwin/" -I"/usr/lib/gcc/i686-pc-cygwin/4.7.3/include/c++/"' |
using System; | |
using Windows.UI.Xaml; | |
using Windows.UI.Xaml.Markup; | |
using Windows.UI.Xaml.Media.Animation; | |
using Windows.UI.Interactivity; | |
namespace Windows.UI.Interactivity | |
{ | |
[ContentProperty(Name = "Storyboard")] | |
public class StoryboardAction : Windows.UI.Interactivity.TriggerAction<FrameworkElement> |
cse_func() | |
{ | |
host='username@hostname' | |
if [ "$1" == 'push' ] ; then | |
location=$2 | |
files=`echo "$@" | cut -d' ' -f3-` | |
scp $files $host:"$location" | |
elif [ "$1" == 'pull' ]; then | |
if [ $# -gt 3 ]; then | |
echo "$0: to pull multiple files, write \{remote-file1,remote-file2,...\}" |
// HotkeyInputBox 0.1 (c) 2011 Richard Z.H. Wang | |
// MIT licensed. | |
using System; | |
using System.Collections.Generic; | |
using System.ComponentModel; | |
using System.Linq; | |
using System.Text; | |
using System.Windows.Forms; | |
using System.Runtime.InteropServices; |
#!/usr/bin/env ruby | |
# Written by Richard Z.H. Wang, based on wordpressxml2jekyll.rb | |
require 'rubygems' | |
require 'hpricot' | |
require 'clothred' | |
require 'time' | |
require 'yaml' | |
require 'fileutils' |