I hereby claim:
- I am a904guy on github.
- I am a904guy (https://keybase.io/a904guy) on keybase.
- I have a public key ASBYmBNvTOaNiCgXuP_FY0dMxMiK5U86IzCSy1tWbkCn_go
To claim this, I am signing this object:
import socket | |
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) | |
# On Windows type `route print` to get a list. | |
# On Linux type `ip route` to get a list. | |
# On Mac type `netstat -r -n` to get a list. | |
s.bind(('192.168.0.1', 0)) # Replace with the IP of the route interface you want to use |
<?php | |
register_tick_function('trackExecutionTime'); | |
declare(ticks=1); | |
function trackExecutionTime() | |
{ | |
global $executionTimes; | |
This Gist confirms the Linked Identity in my OpenPGP key, and links it to this GitHub account. | |
Token for proof: | |
[Verifying my OpenPGP key: openpgp4fpr:df67f345d4613586a2722cef296c7744216d05fd] |
I hereby claim:
To claim this, I am signing this object:
import itertools | |
import string | |
from typing import List, Union | |
class crunch: | |
char_list: List[str] = list(string.ascii_uppercase) + list(string.ascii_lowercase) + list(string.digits) | |
min: int = 1 | |
max: int = 6 | |
resume: Union[None, str] = None |
#!/usr/bin/env bash | |
# Possible to pass version as first arg of the script | |
# ./install_php 7.2 (Latest Available) | |
versions="5.6 7.0 7.1 7.2" | |
## Parse first arg or else ask which version to install | |
if [ $1 ]; | |
then |
#!/usr/bin/env bash | |
# Possible to pass version as first arg of the script | |
# `install_python 3.6` | |
versions="2.3 2.4 2.5 2.6, 2.7 3.2 3.3 3.4 3.5 3.5 3.6" | |
## Parse first arg or else ask which version to install | |
if [ $1 ]; | |
then |
var message = 'Message to be sent here' | |
$(".msg-conversation-listitem__link").on('click.andy', | |
function (e) { | |
setTimeout( | |
function () { | |
console.log('Setting Message'); | |
$('.msg-thread').find('textarea').val(message).attr('data-artdeco-is-focused', 'true').trigger('keyup'); | |
setTimeout( | |
function () { | |
console.log('Submitting'); |
for letter in {A..Z} ; do | |
format $letter+":\"; | |
done |
var url; performance.getEntriesByType("resource").map((x) => url = x['name'].contains('fbcdn.net/v/') && x['name'].contains('video') ? x['name'].replace(new RegExp('bytestart=.*?&'),'bytestart=0') : url ); window.location = url; |