Skip to content

Instantly share code, notes, and snippets.

View Raeein's full-sized avatar

Raeein

View GitHub Profile

Agent guide for Swift and SwiftUI

Project guide

  • At the start of every conversation, read PROJECT_GUIDE.md to orient yourself before touching any code.
  • After any change that adds, removes, moves, or renames a file, update the relevant row(s) in PROJECT_GUIDE.md before finishing the task.

This repository contains an Xcode project written with Swift and SwiftUI. Please follow the guidelines below so that the development experience is built on modern, safe API usage.

@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: