Table of Contents:
Discover gists
By u/angkitbharadwaj
Visit fmhy.net/android-iosguide#ios-ipas for more sources.
#!/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" |
-
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:
Also see the original Pieter Noordhuis's guide
You need:
- Raspberry Pi Model B (or B+) with a MicroSD Card $35-40
- An RTL-SDR dongle:
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()); |
User: ISHAAN,glaitm | |
Key: 27R3VDEFYFX4N0VC3FRTQZX |
# 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 |