Skip to content

Instantly share code, notes, and snippets.

View Raeein's full-sized avatar

Raeein

View GitHub Profile
@Raeein
Raeein / heater.py
Created January 15, 2024 13:45 — forked from ishan1608/heater.py
A python script to heat your computer so that your fingers can work upon your laptop in winter.
"""Heater
A program that spawns as much number of processes as there are CPUs on the computer.
This keeps the core temprature high.
I made this so that my fingers feel more comfortable while working on my laptop during winter.
Caution : An eye should be kept on the CPU temprature so that when it is getting too hot,
the prgoram needs to be killed; else it can damage the CPU.
Author : Ishan
Email : ishanatmuzaffarpur@gmail.com
"""
@Raeein
Raeein / main.py
Created November 10, 2022 22:41
Change Your Mac Adress - Kali Linux
#!/usr/bin/env python3
import argparse
import subprocess
import sys
import os
def is_root():
if os.geteuid() != 0: