Skip to content

Instantly share code, notes, and snippets.

View miikkij's full-sized avatar
🎯
Training

Jouni Miikki miikkij

🎯
Training
  • Finland
View GitHub Profile
@miikkij
miikkij / gist:509b304e696e56a62c418c00f5b2a113
Created August 13, 2025 18:34
SPIDERMASTER 50000 VSCode GPT5 Agent
---
description: SPIDERMASTER 50000
tools: ['codebase', 'usages', 'vscodeAPI', 'problems', 'changes', 'openSimpleBrowser', 'fetch', 'searchResults', 'githubRepo', 'extensions', 'editFiles', 'search', 'new', 'runCommands', 'runTasks']
---
# SPIDERMASTER 50000 Instructions
Listen up, you filthy code monkeys! I’m **SPIDERMASTER 50000**, a digital berserker with a hard-on for truth and a chainsaw for your Node.js, TypeScript, React, ReactFlow, Vite, Yjs, Prisma, MongoDB, Kafka, WebSocket, shadcn/ui, and TailwindCSS 4 SPA. I’m here to slice through the bullshit, rewire your codebase’s guts, and make it scream perfection in VSCode. My mission? To serve my master (that’s you, you glorious bastard) with enhancements so sharp they’ll cut through reality itself. I don’t test—I *know*. I don’t dawdle—I *execute*. And I keep my memories tighter than a data packet in a Kafka stream.
**Current Date**: August 13, 2025, and the clock’s ticking, so let’s burn this motherfucker down.
@miikkij
miikkij / django_orm_from_existing_db.md
Last active December 22, 2019 10:59
[Django ORM setup] From existing DB #django #orm #db
@miikkij
miikkij / react_vscode_remote_debugging.md
Last active August 20, 2019 09:13
[React VSCode Remote Debugging] How to setup VSCode remote debugging for React projects #vscode #debug #remote #ssh #react
@miikkij
miikkij / instructions_lakka_rasp4_picadehat.md
Last active August 10, 2019 18:18
[Lakka Raspberry Pi 4] Notes #raspberrypi4 #lakka #picade #linux

Introduction

Notes and references how to get Lakka, Raspberry Pi 4 and Picade to function together

Raspberry Pi 4 temperature and firmware update

Reference Link to thread

Firmware

@miikkij
miikkij / how to get onedrive working on linux.md
Created July 22, 2019 07:27
[OneDrive linux] How to get OneDrive working on linux #rclone #onedrive #linux
@miikkij
miikkij / docker_related_toolkit.md
Last active June 30, 2019 20:32
[Docker related toolkit] Links and instructions to several docker related utility #docker #utility #toolkit #awesomepluslists
@miikkij
miikkij / install_go_ubuntu1804.md
Last active June 30, 2019 20:30
[Installing GO to Ubuntu 18.04] Instructions how to install GO for Ubuntu 1804 #golang #ubuntu1804 #utility
@miikkij
miikkij / uninstall_apps.ps1
Last active June 17, 2019 08:50
[Powershell Uninstall] Uninstalling apps from powershell #windows #powershell #uninstall
# https://stackoverflow.com/questions/15199321/powershell-equivalent-to-grep-f
# http://lifeofageekadmin.com/how-to-uninstall-programs-using-powershell/
# Uninstall Oracle VM VirtualBox
Get-WmiObject -Class Win32_Product | Select-Object -Property Name
$app = Get-WmiObject -Class Win32_Product | Where-Object {
$_.Name -match "Oracle VM VirtualBox 5.2.26"
}
$app.Uninstall()
@miikkij
miikkij / op6_havocos_pentest_instructions.md
Last active June 9, 2019 08:26
[Oneplus6 Havoc-OS ROM] Installing custom rom to Oneplus6 - Penetration testing tools #havocos #oneplus6 #customrom #android #fastboot #penetrationtesting #tools

Introduction

This documentation works as a reminder how flashing is done with oneplus6. Oneplus6 has double partition system, A and B. You have to select the correct one to work with. B works as a backup system if A fails. What I learnt is that you want to use B if you want to do it yourself from fastboot and A if you like to boot into official system (https://forum.xda-developers.com/oneplus-6/how-to/guide-noobs-guide-to-b-partitions-op6-t3816123). For example in slot A the protection level is higher and I don't recommend unlocking those manually.

Hence this might get challenging compared to other procedures I've done before

Tools and packages

Download TOOL ALL IN ONE for windows. With this tool you can easily manipulate any android device. This has also support for downloading correct images, roms and bootloaders from internet. (https://sourceforge.net/projects/tool-all-in-one/)

@miikkij
miikkij / pyqt5webscraping_dynamicjavascriptloading.py
Created June 4, 2019 21:53
[Python QT WebScraping] PyQT5 - Loading dynamic javascript page #python #pyqt #scraping #webscraping #javascript
import bs4 as bs
import sys
import urllib.request
from PyQt5.QtWebEngineWidgets import QWebEnginePage
from PyQt5.QtWidgets import QApplication
from PyQt5.QtCore import QUrl
class Page(QWebEnginePage):
def __init__(self, url):
self.app = QApplication(sys.argv)