Language | Title | Philosophy / Manifesto / Idioms |
---|---|---|
Programmers 🧙 👨💻👩💻🖥⌨️🖱💻🎮👾 |
Brogrammatic Ninja-throwing Rockstar Badassian Wizards | The 12-Factor App Agile Manifesto (the real one) 12 Principles of Agile Software |
- | - | - |
AngularJS | Angularians | - |
(Angular) | - | - |
C | (?) Embedded Software Engineer | (?) "Patterns in C" |
Clojure | Clojurist | "Clojure Rationale" |
Cocoa ☕️ | Cocoa Heads | - |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Hi All! | |
I've recently launched a tool that wraps many of the commands here with a user interface. This desktop application is currently available for macOS. There's a roadmap outlining planned features for the near future. | |
Feel free to request any features you'd like to see, and I'll prioritize them accordingly. | |
One of the most important aspects of this application is that every command executed behind the scenes is displayed in a special log section. This allows you to see exactly what’s happening and learn from it. | |
Here's the link to the repository: https://github.com/Pulimet/ADBugger | |
App Description: | |
ADBugger is a desktop tool designed for debugging and QA of Android devices and emulators. It simplifies testing, debugging, and performance analysis by offering device management, automated testing, log analysis, and remote control capabilities. This ensures smooth app performance across various setups. |
The official doc seems too complicated OpenWrt on VirtualBox HowTo
- Download and install VirtualBox. On Windows add to PATH envs
C:\Program Files\Oracle\VirtualBox
- Get an OpenWrt image
openwrt-x86-64-combined-ext4.img.gz
from targets/x86/64/ folder. Direct snapshot download - Uncompress the image:
gunzip openwrt.img.gz
- Convert it to native VirtualBox format:
VBoxManage convertfromraw --format VDI openwrt.img openwrt.vdi
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# study stream aliases | |
# Requires https://github.com/caarlos0/timer to be installed. spd-say should ship with your distro | |
declare -A pomo_options | |
pomo_options["work"]="45" | |
pomo_options["break"]="10" | |
pomodoro () { | |
if [ -n "$1" -a -n "${pomo_options["$1"]}" ]; then | |
val=$1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# serialcomic.py | |
import machine | |
import os | |
def add(): | |
title = input("Enter comic title: ") | |
uid = input("Enter UID: ") | |
issn = input("Enter ISSN: ") | |
release_date = input("Enter release date: ") |