I hereby claim:
- I am sleeyax on github.
- I am sleeyax (https://keybase.io/sleeyax) on keybase.
- I have a public key whose fingerprint is E8DA EC0C 346D 354A CFA0 94C5 EEA3 74DC A7CB EE6B
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/sh | |
if ! [ -z "$1" ] | |
then | |
echo "$1" | tr '[:upper:]' '[:lower:]' | |
else | |
echo "Usage: lcs <text>" | |
echo 'Example: lcs "Foo Bar BAZ"' | |
echo "Output: foo bar baz" | |
fi |
package main | |
import ( | |
"bufio" | |
"fmt" | |
"net" | |
"net/http" | |
"net/url" | |
"crypto/tls" |
package main | |
import ( | |
"fmt" | |
"net/http" | |
"sync" | |
) | |
// based on: https://github.com/hakluke/hakoriginfinder |
package main | |
import ( | |
"io" | |
"log" | |
"net" | |
"net/http" | |
"sync" | |
) |
#!/bin/bash | |
# | |
# Usage: | |
# ./make_certs.sh test.example.com | |
# | |
# The required input to make_certs.sh is the path to your pfx file without the .pfx prefix | |
# | |
filename=$1 |
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
"""Function: decompress special Xamarin .dll files""" | |
""" | |
Background information and file format documentation: | |
https://github.com/xamarin/xamarin-android/pull/4686 | |
Installation notes: |
sudo vim /etc/fstab | |
# Comment out lines that have the word swap on them | |
sudo reboot |
adb shell pm list packages | |
adb shell pm path com.example.someapp | |
adb pull /data/app/com.example.someapp-2.apk path/to/desired/destination |
%0A%20%20query%20IntrospectionQuery%20%7B%0A%20%20%20%20__schema%20%7B%0A%20%20%20%20%20%20queryType%20%7B%20name%20%7D%0A%20%20%20%20%20%20mutationType%20%7B%20name%20%7D%0A%20%20%20%20%20%20subscriptionType%20%7B%20name%20%7D%0A%20%20%20%20%20%20types%20%7B%0A%20%20%20%20%20%20%20%20...FullType%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20directives%20%7B%0A%20%20%20%20%20%20%20%20name%0A%20%20%20%20%20%20%20%20description%0A%20%20%20%20%20%20%20%20locations%0A%20%20%20%20%20%20%20%20args%20%7B%0A%20%20%20%20%20%20%20%20%20%20...InputValue%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%7D%0A%0A%20%20fragment%20FullType%20on%20__Type%20%7B%0A%20%20%20%20kind%0A%20%20%20%20name%0A%20%20%20%20description%0A%20%20%20%20fields(includeDeprecated%3A%20true)%20%7B%0A%20%20%20%20%20%20name%0A%20%20%20%20%20%20description%0A%20%20%20%20%20%20args%20%7B%0A%20%20%20%20%20%20%20%20...InputValue%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20type%20%7B%0A%20%20%20%20%20%20%20%20...TypeRef%0A |