I hereby claim:
- I am vaelen on github.
- I am andrewyoung (https://keybase.io/andrewyoung) on keybase.
- I have a public key whose fingerprint is 38E3 1220 25B2 8BEC 3D31 895D E3B3 6CA4 8AAC B115
To claim this, I am signing this object:
#!/usr/bin/env python3 | |
# Guess a zip file password using a word list. | |
# | |
# Copyright 2020, Andrew C. Young <[email protected]> | |
# License: MIT | |
# | |
# Usage: guess.py <zip_file> <words_file> | |
# NOTE: The words file should be a gzip file that contains a list of words separated by spaces or newlines |
#!/bin/bash | |
set -e -x | |
echo "########## INSTALL CONAN ##########" | |
sudo apt update | |
sudo apt install pip3 | |
pip3 install conan |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
GW="vagrant@localhost" | |
GW_PORT=2222 | |
GW_NAME="gw" | |
HOST=${0##*/} | |
if [ "${HOST}" == "connect.sh" ] | |
then | |
HOST=$1 |
#!/bin/bash | |
export indir=${HOME}/wallpapers | |
export infile=`find ${indir} -type f | sort -R | tail -n 1` | |
export workdir=${HOME}/.wallpaper | |
export resizedfile=${workdir}/resized.png | |
export timefile=${workdir}/time.png | |
export outfile=${workdir}/time-final.png | |
export time=`date` |
#!/usr/bin/perl -w | |
use strict; | |
my $kernel_version = `uname -r`; | |
my @kernel = (0,0,0,0); | |
if($kernel_version =~ /((\d+).(\d+).(\d+)-(\d+))/) { | |
$kernel_version = $1; | |
$kernel[0] = $2; |
public class UseAdvertisingIdentifier { | |
public String getBiParams(Activity activity) { | |
String mac = getMacAddress(); | |
String macMd5 = ""; | |
if (mac.length() > 0) { | |
macMd5 = Utility.md5(mac); | |
} | |
String openUdid = getOpenUdid(); | |
String udid = getUdid(); |
package com.kabam.sdk; | |
import java.util.concurrent.locks.Lock; | |
import java.util.concurrent.locks.ReentrantLock; | |
import android.app.Activity; | |
import android.provider.Settings.Secure; | |
import android.util.Log; | |
import com.google.android.gms.ads.identifier.AdvertisingIdClient; |