This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """Simple script to restart the ZTE F6600P modem/wireless router""" | |
| import base64 | |
| import hashlib | |
| from Crypto.PublicKey import RSA | |
| from Crypto.Cipher import PKCS1_v1_5 | |
| import requests |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM debian:trixie | |
| ARG DEBIAN_FRONTEND=noninteractive | |
| RUN apt-get update && \ | |
| apt-get install -qq wget git libtool shtool automake autoconf git-core pkg-config make python3 gcc-arm-none-eabi && \ | |
| wget https://obs.osmocom.org/projects/osmocom/public_key && \ | |
| echo "deb [signed-by=/usr/share/osmocom-keyring/osmocom.asc] https://downloads.osmocom.org/packages/osmocom:/latest/Debian_13/ ./" | tee /etc/apt/sources.list.d/osmocom.list && \ | |
| install -Dm644 public_key /usr/share/osmocom-keyring/osmocom.asc && rm public_key && \ | |
| apt-get update && apt-get install -qq libosmocore-dev libosmo-csn1-dev libosmo-gprs-rlcmac-dev \ | |
| libosmo-gprs-llc-dev libosmo-gprs-sndcp-dev \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| # HTTP Host header for SSH through use of ProxyCommand | |
| # Copyright (C) 2016 Kasper Dupont | |
| # 2025/02/13 Python 3 ported version by Faiz Jazadi | |
| # This program is free software: you can redistribute it and/or modify | |
| # it under the terms of the GNU General Public License as published by | |
| # the Free Software Foundation version 3. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import ipaddress | |
| import pathlib | |
| import socket | |
| import sys | |
| QUERY_MAGIC = 0x50304601.to_bytes(4, byteorder=sys.byteorder) | |
| RESPONSE_MAGIC = 0x50304602.to_bytes(4, byteorder=sys.byteorder) | |
| STATUS_BADQUERY = 0x00.to_bytes(4, byteorder=sys.byteorder) | |
| STATUS_OK = 0x10.to_bytes(4, byteorder=sys.byteorder) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
| <title>colortable</title> | |
| <link | |
| rel="stylesheet" | |
| href="https://cdn.jsdelivr.net/npm/@exampledev/new.css@1/new.min.css" | |
| /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Transcribed manually from | |
| // https://www.youtube.com/watch?v=GpUhmUVvD9Y | |
| // Enjoy ;) | |
| // UPDATE: 2025-02-13: They also have the lyrics here https://x.com/FamilyMart_ID/status/1752210891142291560 | |
| // UPDATE: 2025-11-19: I think I found the "official" lyrics: https://www.linkedin.com/posts/familymart-indonesia_famima-activity-6716558644214931456-tmTg (also, it's "we one", not "we are") | |
| Hai kawan-kawan | |
| Mari bekerja membangun bersama FamilyMart | |
| Suka dan duka ada di FamilyMart | |
| Semua keluarga kita |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| Author: Faiz J <askmehere@lcat.dev> | |
| Date: 2023-11-01 | |
| Another proof of concept of a CompactByte blog article | |
| https://blog.compactbyte.com/2018/06/10/membedah-e-ktp/ | |
| To run this script successfully, you must connect a PN532 reader to the USB | |
| port of your computer using a USB-to-TTL converter (I use CH340). Enjoy! | |
| """ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Test how profitable is monero.win | |
| # it's not :/ | |
| import random | |
| import time | |
| balance = 0.1 | |
| bet_size = 0.01 | |
| profit_per_bet = 0.009 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| auto-edom -- automatically fill your lecturer evaluation questionnaires | |
| on SIMASTER UGM | |
| DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
| Version 2, December 2004 | |
| Copyright (C) 2023 Faiz Jazadi <me@lcat.dev> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import re | |
| import logging | |
| import sys | |
| import time | |
| import requests | |
| from simaster import get_simaster_session | |
| KHS_URL = 'https://simaster.ugm.ac.id/akademik/mhs_khs/view' |
NewerOlder