Skip to content

Instantly share code, notes, and snippets.

View soykan's full-sized avatar

Soykan Ertürk soykan

View GitHub Profile
global _start
section .text
_start:
mov rax, 1
mov rdi, 1
mov rsi, hello_world
mov rdx, length
@soykan
soykan / it.py
Created March 28, 2020 19:21
InstantTranslate
import subprocess as sp
import requests
import os
import sys
import tty, termios
import _thread
import time
from bs4 import BeautifulSoup
class Translate():
@soykan
soykan / twcleaner.py
Last active February 13, 2018 19:16
It deletes tweets and likes on your twitter account.
import tweepy
consumer_key = ''
consumer_secret = ''
access_token = ''
access_token_secret = ''
auth = tweepy.OAuthHandler(consumer_key, consumer_secret)