Thanks to visit codestin.com
Credit goes to gist.github.com

Skip to content

Instantly share code, notes, and snippets.

@clduab11
clduab11 / dev-mode.md
Created September 18, 2025 02:38 — forked from ruvnet/dev-mode.md
ChatGPT MCP Developer Mode MCP - Complete Tutorial
@ongkiii
ongkiii / IPA-Sources.md
Last active September 18, 2025 04:44
REPOS/TELEGRAM CHANNELS LIST BY u/angkitbharadwaj
@ericzakariasson
ericzakariasson / what-did-you-get-done-this-week.sh
Created October 14, 2024 07:40
Small script to answer the question "What did you get done this week?"
#!/bin/bash
START_DATE=$(date -v -$(($(date '+%u') + 6))d '+%Y-%m-%d')
END_DATE=$(date -v -$(date '+%u')d '+%Y-%m-%d')
GIT_LOG=$(git log --since="$START_DATE" --until="$END_DATE" --pretty=format:"%h %s" --no-merges)
[ -z "$GIT_LOG" ] && { echo "No commits found."; exit 1; }
PROMPT="In less than 200 characters, summarize the following git commit history to answer the question 'What did you get done this week?'. Answer in the style of Elon Musk. The reader is in a hurry, so make sure it's easy to digest quickly. Start with 'This week'. ':\n$GIT_LOG"

Pre-Installation:

  • Starting in crDroid 10.x (Android 14.0) and onwards, we're using retrofitted dynamic partitions to avoid the constant threat of running out of space in the GPT system partition with any sizeable Google Apps package. Don't panic.

    This will not permanently alter or damage your device, as it makes no changes to the underlying GPT partition table. Following any ROM's installation guide will overwite the changes, so there are no extra steps to "convert back to normal partitions".

    This does mean that you cannot use TWRP or other custom recovery to install crDroid on the OnePlus 6-series, as they do not have the necessary kernel and dynamic partition layout changes compiled in to support the way we're doing things.

  • Phone setup:

@lxe
lxe / goes16-rtlsdr.md
Last active September 18, 2025 04:30
Receive GOES-16 and GOES-17 Images with a Raspberry Pi and RTL-SDR dongle
@tuxfight3r
tuxfight3r / 01.bash_shortcuts_v2.md
Last active September 18, 2025 04:27
Bash keyboard shortcuts

Bash Shortcuts

visual cheetsheet

Moving

command description
ctrl + a Goto BEGINNING of command line
public void handlePickBlock(@NotNull PlayerPickBlockEvent event) {
var player = event.getPlayer();
if (player.getGameMode() != GameMode.CREATIVE) return; // Sanity
var world = MapWorld.forPlayerOptional(player);
if (world == null || !world.canEdit(player)) return; // Sanity
// First try to get the block from the item registry
var block = event.getBlock();
var itemStack = world.itemRegistry().getItemStack(block, event.isIncludeData());
@joao-neves95
joao-neves95 / emu8086-license-key.txt
Last active September 18, 2025 04:18
emu8086 License Key
User: ISHAAN,glaitm
Key: 27R3VDEFYFX4N0VC3FRTQZX
@bitoiu
bitoiu / docker-compose.yml
Last active September 18, 2025 04:17
Graylog docker-compose for Synology DSM 7 deployment
# My article on this:
# I use PUID and PGID as environments variables, but I removed it from this snipped
# Change the passwords especially if this is externally exposed
# TIP: It takes a while for the graylog interface to come up, so check for errors and be patient
version: "3.7"
services:
mongo:
container_name: mongo
image: mongo:4.4.18