발로짠코드 tw.py 실행후 브라우져에서 허락하고 핀코드뜨면 입력 기다리다보면 info.json 생성함 pic 이랑 vid 폴더를 미리 만들어놔야함 그다음 parser.py 실행하면 저장해줌
1회용코드라 PEP8도 체크안하고 예외처리도 암것도안함...
저장형식: 트윗아이디_사진순서.확장자
| ! 2021-11-28 https://www.google.com | |
| ! block | |
| ! google.com##[href*="template"]:upward(4) | |
| google.com##[href*="codegrepper.com"]:upward(4) | |
| google.com##[href*="githubmemory.com"]:upward(4) | |
| google.com##[href*="codestudyblog.com"]:upward(4) | |
| google.com##[href*="pythonq.com"]:upward(4) | |
| google.com##[href*="stackovergo.com"]:upward(4) | |
| google.com##[href*="pythonrepo.com"]:upward(4) |
| import gdb | |
| gdb.execute('file ./dingjmax') | |
| class MyBreakpoint(gdb.Breakpoint): | |
| first = True | |
| def stop (self): | |
| if self.first: | |
| gdb.execute('set *(unsigned char*)0x401b90 = 0') | |
| gdb.execute('set *(unsigned char*)0x401b91 = 0') | |
| self.first = False |
| import itertools | |
| loopCallCouter = 0 | |
| def loop(min_, max_, n, sum): | |
| global loopCallCouter | |
| loopCallCouter += 1 | |
| if max_ * n < sum: | |
| yield () |
발로짠코드 tw.py 실행후 브라우져에서 허락하고 핀코드뜨면 입력 기다리다보면 info.json 생성함 pic 이랑 vid 폴더를 미리 만들어놔야함 그다음 parser.py 실행하면 저장해줌
1회용코드라 PEP8도 체크안하고 예외처리도 암것도안함...
저장형식: 트윗아이디_사진순서.확장자
I hereby claim:
To claim this, I am signing this object:
| def safe_calc(chat): | |
| import ast | |
| try: | |
| tree = ast.parse(chat) | |
| except SyntaxError: | |
| return None | |
| for node in ast.walk(tree): | |
| for instance in [ast.Call,ast.Exec,ast.Import,ast.ImportFrom,ast.FunctionDef,ast.Lambda,ast.ClassDef]: | |
| if isinstance(node,instance): | |
| return None |
| // ==UserScript== | |
| // @name facebook | |
| // @namespace http://www.facebook.com/ | |
| // @description no facebook | |
| // @domain www.facebook.com | |
| // @include http://www.facebook.com/* | |
| // @include https://www.facebook.com/* | |
| // @version 1 | |
| // @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js | |
| // ==/UserScript== |
| def debug(): | |
| import inspect,code | |
| frame = inspect.stack()[1][0] | |
| code.interact(local=frame.f_locals) |
| import paramiko | |
| import code | |
| ssh = paramiko.SSHClient() | |
| ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy()) | |
| ssh.connect('localhost', username='root', password='password', port = 22) | |
| stdin, stdout, stderr = ssh.exec_command('ls -al') | |
| print 'ls -al test 1' | |
| print stdout.read() | |
| ch = ssh.invoke_shell() |
| # -*- coding: utf-8 -*- | |
| import time | |
| import pickle | |
| import struct | |
| from math import log,e | |
| from hashlib import md5 | |
| startBlock = 'cat' | |
| def mine(block,diff): |