Skip to content

Instantly share code, notes, and snippets.

View keyiflerolsun's full-sized avatar
🏕️
hiçbi kere hayat bayram olmadı ya da; her nefes alışımız bayramdı.. 🎶

Ömer Faruk Sancak keyiflerolsun

🏕️
hiçbi kere hayat bayram olmadı ya da; her nefes alışımız bayramdı.. 🎶
View GitHub Profile
[
{
"bank_name": "AKBANK T. A.S.",
"image": "https://www.tozlumikrofon.com/wp-content/uploads/2021/08/akbank-tas.png",
"card_bin": "535280",
"card_brand": "MASTER"
},
{
"bank_name": "AKBANK T. A.S.",
"image": "https://www.tozlumikrofon.com/wp-content/uploads/2021/08/akbank-tas.png",
# 1_matplotlib
# 2_seaborn
@kittinan
kittinan / client.py
Last active July 18, 2024 14:05
Python OpenCV webcam send image frame over socket
import cv2
import io
import socket
import struct
import time
import pickle
import zlib
client_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
client_socket.connect(('192.168.1.124', 8485))
@gboudreau
gboudreau / AuthyToOtherAuthenticator.md
Last active October 19, 2024 01:14 — forked from Ingramz/AuthyToOtherAuthenticator.md
Export TOTP tokens from Authy

Exporting your 2FA tokens from Authy to transfer them into another 2FA application

IMPORTANT - Update regarding deprecation of Authy desktop apps

Past August 2024, Authy stopped supported the desktop version of their apps:
See Authy is shutting down its desktop app | The 2FA app Authy will only be available on Android and iOS starting in August for details.

And indeed, after a while, Authy changed something in their backend which now prevents the old desktop app from logging in. If you are already logged in, then you are in luck, and you can follow the instructions below to export to tokens.

If you are not logged in anymore, but can find a backup of the necessary files, then restore those files, and re-install Authy 2.2.3 following the instructions below, and it should work as expected.

@j-jith
j-jith / miui-fastboot-howto.rst
Last active October 8, 2024 19:33
How to flash MIUI Fastboot ROM from Linux

How to flash MIUI Fastboot ROM from Linux

@yoki
yoki / 00_pandas.py
Last active January 26, 2023 07:21
Pandas tutorial
# 10_generation
# 11_filter
# 12_setting_value
# 13_io
# 15_groupby
# 16_merge
# 17_pivot_reshape
# 18_misc
# 19_type
# 21_category
@yoki
yoki / html2markdown.py
Created May 23, 2016 05:19
Convert html file to markdown
def html2markdown(self, html):
# convert html to markdown.
# specification:
# remove all tag exccept tags listed in the cleanbody._repl
# when p/div tags are in the table tag, markdown converter (htmlformatter)
# confuses. so it is removed
# we need following in the header
# import re, html2text
# from bs4 import BeautifulSoup