Skip to content

Instantly share code, notes, and snippets.

View mallusrgreatv2's full-sized avatar
🎯
Focusing

mallusrgreat mallusrgreatv2

🎯
Focusing
View GitHub Profile
@mallusrgreatv2
mallusrgreatv2 / oracle_infrastructure_101.md
Created April 23, 2025 13:14 — forked from madebylydia/oracle_infrastructure_101.md
Oracle Cloud Infrastructure: My 101 guide to setup your new machine like new

Welcome to another tutorial of "What the f*ck is Oracle doing to my machine without me asking for it?"

I will cover in this guide how to correctly setup your machine to get rid of the stupid Oracle's agent on your machine, and even pimp your machine a little bit. You can't say no to that! :D Anyhow, let's start right now!

Just a warning!!!

When you create a machine, I HIGHLY recommend that you grab the SSH keys that Oracle gently ask you to also take. SSH keys are much more secure than passwords and you'll drastically avoid potential security issue with SSH. Oracle will automatically take care to refuse any password connection (Only allowing SSH keys connection) by then.

@mallusrgreatv2
mallusrgreatv2 / index.py
Created November 26, 2022 07:33
Send your friend yo mama jokes indefinitely
import pyautogui, time, json, requests, keyboard, sys
time.sleep(5)
while True:
for x in range(1):
r = requests.get("https://api.yomomma.info")
joke = json.loads(r.content)["joke"]
pyautogui.typewrite(joke)
pyautogui.press('enter')
time.sleep(0.5)
if keyboard.is_pressed('ctrl'):