Skip to content

Instantly share code, notes, and snippets.

View weppos's full-sized avatar

Simone Carletti weppos

View GitHub Profile
package main
import (
"fmt"
"io/ioutil"
"os/exec"
"strings"
)
func opensslModulus(command string, content string) (string, error) {
@weppos
weppos / gist:9461565
Created March 10, 2014 08:49
RoboWhois + C# example: get the WHOIS record for a domain.
public string WhoIs(string domainName, string myApiKey)
{
string url = "http://api.robowhois.com/whois/" + domainName;
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);
request.Method = WebRequestMethods.Http.Get;
request.Credentials = new NetworkCredential(myApiKey, "X");
try
{
WebResponse response = request.GetResponse();

Keybase proof

I hereby claim:

  • I am weppos on github.
  • I am weppos (https://keybase.io/weppos) on keybase.
  • I have a public key whose fingerprint is C7F3 8EE9 2951 BB47 501A 63B1 420D A82A 9893 98DF

To claim this, I am signing this object:

Rehearsal -----------------------------------------
lib: 0.560000 0.000000 0.560000 ( 0.565598)
own: 0.640000 0.010000 0.650000 ( 0.651338)
-------------------------------- total: 1.210000sec
user system total real
lib: 0.650000 0.000000 0.650000 ( 0.666613)
own: 0.650000 0.010000 0.660000 ( 0.651895)
@weppos
weppos / git-prs.md
Created March 28, 2016 23:30
PRs as Git Branches

If you want to download GitHub PRs to your local repository, you can use a little trick to download them as local branches.

Open the repository configuration file (.git/config) and search for the origin block. Change it from:

[remote "origin"]
	fetch = +refs/heads/*:refs/remotes/origin/*
	url = git@github.com:USERNAME/REPOSITORY.git
➜ publicsuffix-go git:(master) ✗ cd ~/go/src/golang.org/x/net/idna; git co 69d4b8; cd -; go run idna-test.go
Note: checking out '69d4b8'.
You are in 'detached HEAD' state. You can look around, make experimental
changes and commit them, and you can discard any commits you make in this
state without impacting any branches by performing another checkout.
If you want to create a new branch to retain commits you create, you may
do so (now or later) by using -b with the checkout command again. Example: