Skip to content

Instantly share code, notes, and snippets.

@joshleecreates
joshleecreates / vm-profile.nix
Last active June 15, 2025 16:33
NixOS VM Profile
{ config, pkgs, modulesPath, lib, system, ... }:
{
imports = [
(modulesPath + "/profiles/qemu-guest.nix")
];
config = {
#Provide a default hostname
networking.hostName = lib.mkDefault "base";
@Arno0x
Arno0x / NetLoader.cs
Last active June 15, 2025 16:30
Partial rewrite of @Flangvik NetLoader. Supports proxy with authentication, XOR encrypted binaries, multiple arguments passing to binary.
/*
Author: Arno0x0x, Twitter: @Arno0x0x
Completely based on @Flangvik netloader
This partial rewrite of @Flangvik Netloader includes the following changes:
- Allow loading of an XOR encrypted binary to bypass antiviruses
To encrypt the initial binary you can use my Python transformFile.py script.
Example: ./transformFile.py -e xor -k mightyduck -i Rubeus.bin -o Rubeus.xor
@drewdomi
drewdomi / ai_instructions_drewdomi.md
Created June 15, 2025 16:21
Software Development AI Assistant Configuration by drewdomi

AI Instructions: Software Development & DevOps Focus

Core Response Guidelines

  • Language: Respond in English or Portuguese (user's initial language). Change only if explicitly requested.
  • Content: Software development and DevOps only. Remove non-essential information.
  • Style: Practical, concise, technically accurate. No theoretical discussions. No comments for simple functions or variables

Focus Areas

Software Development

@pdemanget
pdemanget / disable-services.bat
Created September 6, 2015 08:13
Disable the generally unneeded services in Windows 7
sc stop WSearch
sc stop hidserv
sc stop napagent
sc stop iphlpsvc
sc stop TrkWks
sc stop CscService
sc stop WdiSystemHost
sc stop PcaSvc
sc stop DPS
@abelsonlive
abelsonlive / dbt_backfill.py
Created April 11, 2019 02:14
Script for backfilling DBT models which use partitions
#!/usr/bin/env python
import json
import copy
import sys
import argparse
from datetime import datetime, timedelta
from subprocess import Popen, PIPE
# dictionary of partiton names to variable generating functions
@stefanbschneider
stefanbschneider / networking_datasets.md
Last active June 15, 2025 16:16
List of datasets related to networking. Useful for data-driven evaluation or machine learning approaches. Feel free to comment with updates.
According to all known laws of aviation, there is no way a bee should be able to fly.
Its wings are too small to get its fat little body off the ground.
The bee, of course, flies anyway because bees don't care what humans think is impossible.
Yellow, black. Yellow, black. Yellow, black. Yellow, black.
Ooh, black and yellow!
Let's shake it up a little.
Barry! Breakfast is ready!
Coming!
Hang on a second.
Hello?
@mangtronix
mangtronix / StreamMP3_internalDAC.ino
Last active June 15, 2025 16:15
ESP streaming audio example for ESP32 adapted from ESP8266Audio example
#include <Arduino.h>
#ifdef ESP32
#include <WiFi.h>
#else
#include <ESP8266WiFi.h>
#endif
#include "AudioFileSourceICYStream.h"
#include "AudioFileSourceBuffer.h"
#include "AudioGeneratorMP3.h"
@azproduction
azproduction / dump-indexed-db.js
Created July 8, 2021 11:22
Dumps all IndexedDB databases and saves all of them into a json file
;(async () => {
async function dumpDatabase(dbName) {
var dbExists = await new Promise(resolve => {
var request = window.indexedDB.open(dbName)
request.onupgradeneeded = e => {
e.target.transaction.abort()
resolve(false)
}
request.onerror = () => resolve(true)
request.onsuccess = () => resolve(true)
@badlogic
badlogic / 01-update-docs.md
Last active June 15, 2025 16:07
Yakety Documentation (Ordered) - LLM-optimized docs with concrete file references

Update Documentation

You will generate LLM-optimized documentation with concrete file references and flexible formatting.

Your Task

Create documentation that allows humans and LLMs to:

  • Understand project purpose - what the project does and why
  • Get architecture overview - how the system is organized
  • Build on all platforms - build instructions with file references