I hereby claim:
- I am limeless on github.
- I am l1m3 (https://keybase.io/l1m3) on keybase.
- I have a public key ASC5U-rMXb5O9kcEE__AmUoWKpvSp2CHYYXGVgKksiQDdQo
To claim this, I am signing this object:
#!/usr/bin/env bash | |
# SPDX-License-Identifier: GPL-2.0 | |
# | |
# Copyright (C) 2016-2018 Jason A. Donenfeld <[email protected]>. All Rights Reserved. | |
# Killswitch : https://github.com/vpn-kill-switch/homebrew-killswitch | |
die() { | |
echo "[-] Error: $1" >&2 | |
exit 1 | |
} |
#!/usr/bin/env bash | |
# SPDX-License-Identifier: GPL-2.0 | |
# | |
# Copyright (C) 2016-2018 Jason A. Donenfeld <[email protected]>. All Rights Reserved. | |
die() { | |
echo "[-] Error: $1" >&2 | |
exit 1 | |
} | |
# Change this to your condition. | |
WIFI="en0" |
I hereby claim:
To claim this, I am signing this object:
''' | |
猴子 2 樹上 | |
蛇 2 地上 | |
烏龜 4 水裡 | |
熊 1 樹上 | |
猴子 1 地上 | |
蛇 3 樹上 | |
猴子 3 樹上 | |
OUTPUT: |
lyrics = [] | |
while True: | |
i = input() | |
if i == '===': | |
break | |
i = i.split() | |
for j in i: | |
j = j.lower() | |
if j == "we're": | |
lyrics.append('we') |
import requests, re, time, queue, threading | |
from bs4 import BeautifulSoup | |
from urllib.request import urlretrieve | |
from fake_useragent import UserAgent | |
class myThread (threading.Thread): | |
def __init__(self, threadID, name, q): | |
threading.Thread.__init__(self) | |
self.threadID = threadID |
function restartPayment() { | |
var V5O = N0vv; | |
var w0T, | |
I3m, | |
E3m, | |
m3m; | |
document[V5O.s8b(82)](V5O.h8b(78))[V5O.s8b(133)] = !!1; | |
w0T = {}; | |
w0T[V5O.s8b(97)] = V5O.h8b(1) + orderSn; | |
w0T[V5O.s8b(102)] = { |
#!/bin/bash | |
##### This script is based on DigitalOcean Ghost w/ nginx setup. | |
clear | |
echo "========== Stopping Ghost Service ==========" | |
service ghost stop |
#include <stdio.h> | |
#include <stdlib.h> | |
//简易计算器——加减乘除 | |
main() | |
{ | |
int a, b, choice, result; // | |
printf("选择算法:0.加法 1.减法 2.乘法 3.除法 4.结束\n输入您的选择:"); | |
switch(choice = getchar();) //大概是这样 有点忘了 | |
{ | |
case 1: |
int CrossID;//this variable stores the current CrosshairID | |
//add the current base and offsets here, ReadAddress is my custom ReadProcessMemory function. You have to find your own online or create it yourself to RPM! | |
CrossID = ReadAddress(process, base+offsets); | |
if (CrossID != 0 ) //if there is something in the Crosshair | |
{ | |
this.BackColor = Color.Green;//just to see if it works |