If you don’t find a FOSS one, my wife and I have used OurGroceries for years and it’s a dead simple shared list app that can do more if you want, but it’s hidden behind the simple bit. I’ve been thinking I should build a selfhosted version myself because if it went offline, I’d be lost. I use it for quick lists if I’m working on something and need a bunch of stuff from the garage/toolbox, or a list of things I want to research later, etc, etc.
Installs all apk files in a given folder to a connected device.
#!/bin/bash
# Check if directory argument is provided
if [ $# -ne 1 ]; then
echo "Usage: $0 <directory_path>"
exit 1
fi
# Store directory path
APK_DIR="$1"
# Check if directory exists
if [ ! -d "$APK_DIR" ]; then
echo "Error: Directory '$APK_DIR' does not exist"
exit 1
fi
# Check if adb is available
if ! command -v adb &> /dev/null; then
echo "Error: ADB is not installed or not in PATH"
exit 1
fi
# Check if any device is connected
if ! adb devices | grep -q "device$"; then
echo "Error: No Android device connected"
exit 1
fi
# Count total APKs
total_apks=$(find "$APK_DIR" -name "*.apk" | wc -l)
if [ "$total_apks" -eq 0 ]; then
echo "No APK files found in '$APK_DIR'"
exit 1
fi
echo "Found $total_apks APK file(s)"
echo "Starting installation..."
# Counter for successful and failed installations
success=0
failed=0
# Find and install all APK files
find "$APK_DIR" -name "*.apk" | while read -r apk_file; do
echo -n "Installing $(basename "$apk_file")... "
if adb install -r "$apk_file" &> /dev/null; then
echo "SUCCESS"
((success++))
else
echo "FAILED"
((failed++))
fi
done
# Print summary
echo
echo "Installation complete!"
echo "Successfully installed: $success"
echo "Failed installations: $failed"
echo "Total APKs processed: $total_apks"
That’s still far from little known. If we’re going by public perception, nobody knows wtf BYD is either. If we’re going by industry knowledge, both are 300 lb gorillas. And I’m suspecting something wrong with that number, because CATL was the undisputed big boy in vehicle batteries a couple years ago.
Going to time this one with my head of lettuce…
Dude. Uninstall it, walk away, get a hobby with that $2000. Something you always wanted to do that’s on your bucket list. There’s no way playing a P2W game was on your bucket list.
Buy a guitar, take some lessons. That would be way more fulfilling than playing something in a virtual town square for imaginary tips.
That fucking painting. How does any Christian even vaguely think Trump is one of them? It’s like the unions that supported him, like shake your fucking heads.