Skip to content

Instantly share code, notes, and snippets.

View georgatgalaniprojects's full-sized avatar
:shipit:
Coding 🍒🍒

georgatgalaniprojects

:shipit:
Coding 🍒🍒
View GitHub Profile
@MBing
MBing / install_wlan_dongle.sh
Last active April 3, 2024 05:20
install TP-Link-WN725N Nano USB Wifi on Raspberry Pi with Kernel 5.10+
# DO NOT PUT THE WIFI DONGLE IN THE DEVICE BEFORE MENTIONED EXPLICITLY BELOW
# Brief note, after this the UI will not show the usb dongle,
# the wifi does work and I get an IP address, so all works,
# but I don't go into detail of making it show on the Raspbian UI.
# (for this purpose I don't care about the UI)
# For the use of this I connected my device to an ethernet connection and through the Router could see the IP which I can SSH into.
## STEP 1: Prepare machine and install packages needed
@rash0
rash0 / puppeteer_twitterLogin.js
Last active May 6, 2024 17:33
Automate login to twitter with Puppeteer
const puppeteer = require("puppeteer");
const user_email = "email@example.com";
const user_handle = "@example"; //either your handle or phone number
const password = "theEndisNear";
async function fkTwitter() {
const browser = await puppeteer.launch({
headless: false,
});
@makgithub
makgithub / convert.py
Created September 8, 2017 12:40
Excel to Xml file conversion using Python
from openpyxl import load_workbook
import datetime
import xml.etree.cElementTree as ET
wb = load_workbook(filename = 'Sku Assignment 8.24 Furniture Content.xlsx')
sheet = wb.get_sheet_by_name('Output Sheet')#sheet name
root = ET.Element("skuProducts")
@Plazmaz
Plazmaz / bots.txt
Last active October 5, 2022 01:15
List of 171 Twitter auto-retweet/like bot accounts
avkashk
alejandronw
kneuman
threatintelbot
LucyBailey_1989
JeremieRykner
slomogoldfish
remelehane
Iona_Marvel
MrLucasBryant
@bkaradzic
bkaradzic / orthodoxc++.md
Last active May 24, 2024 00:10
Orthodox C++

Orthodox C++

What is Orthodox C++?

Orthodox C++ (sometimes referred as C+) is minimal subset of C++ that improves C, but avoids all unnecessary things from so called Modern C++. It's exactly opposite of what Modern C++ suppose to be.

Why not Modern C++?

@karlcow
karlcow / emlx.py
Last active July 3, 2022 09:00
Parsing emlx files on Mac OS X. Apple Proprietary Storage Format for emails.
#!/usr/bin/env python
# encoding: utf-8
"""emlx.py
Class to parse email stored with Apple proprietary emlx format
Created by Karl Dubost on 2013-03-30
Inspired by Rui Carmo — https://the.taoofmac.com/space/blog/2008/03/03/2211
MIT License"""