Skip to content

Instantly share code, notes, and snippets.

View badgeek's full-sized avatar
🎯
Focusing

Budi Prakosa a.k.a Iyok badgeek

🎯
Focusing
View GitHub Profile
@kamilogorek
kamilogorek / _screenshot.md
Last active November 6, 2025 06:15
Clutter-free VS Code Setup
image
@yuryalencar
yuryalencar / pgmodeler-macversion.md
Last active October 2, 2023 11:17
Docker + pgModeler on MacOS/Linux

pgModeler: Configuring using Docker (macOS version).

Installation

For run this project is required: Docker and Homebrew installed in your mac.

@pirate
pirate / docker-compose.yml
Last active December 7, 2024 19:10
Example networking sidecar ingress containers for Cloudflare Argo, Wireguard, Tailscale, LetSencrypt, Caddy, and SOCKS/SSH tunnel containers in Docker Compose.
# Example networking sidecar ingress containers for Cloudflare Argo, Wireguard, Tailscale, LetSencrypt, Caddy, and SOCKS/SSH tunnel containers in Docker Compose.
# https://gist.github.com/pirate/1996d3ed6c5872b1b7afded250772f7c
# Goes well with these docker-compose database container examples:
# https://gist.github.com/pirate/1fafaa18a47254f388aa5c0f79f7d263
version: '2.4'
services:
demo:
@nicolamalizia
nicolamalizia / README.md
Last active March 5, 2026 11:50
How to host your Telegram bot on Google App Script

Telegram Bot on Google App Script

This is the source code of one of my blog post. To read the full blog post please click here.

@brainstorm
brainstorm / fix_osx_pcbnew_kicad_libs.sh
Created September 1, 2017 16:24
Fix KiCAD's pcbnew python scripting support for OSX
#!/bin/bash
# Inspired on: https://www.bountysource.com/issues/31269729-libwx_osx_cocoau-3-1-dylib-not-found
KICAD_LIBS_TOFIX="libwx_osx_cocoau_gl-3.0.0 libwx_osx_cocoau_adv-3.0.0 libwx_osx_cocoau_aui-3.0.0 libwx_osx_cocoau_adv-3.0.0 libwx_osx_cocoau_html-3.0.0 libwx_osx_cocoau_core-3.0.0 libwx_osx_cocoau_stc-3.0.0 libkicad_3dsg.2.0.0 libGLEW.2.0.0 libcairo.2 libpixman-1.0 libwx_baseu_net-3.0.0 libwx_baseu-3.0.0 libwx_baseu_xml-3.0.0"
#KICAD_LIBS_TOFIX=`find /Applications/Kicad/kicad.app/Contents/Frameworks/ -iname *.dylib | xargs otool -L | grep executable_path | awk '{print $1}' | awk -F'/' '{print $4}'`
for kicadlib in $KICAD_LIBS_TOFIX;
do
echo "Fixing ${kicadlib} broken path on pcbnew..."
@joshbuchea
joshbuchea / semantic-commit-messages.md
Last active March 20, 2026 07:46
Semantic Commit Messages

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

@trandaison
trandaison / starUML.md
Last active February 15, 2026 10:20
Get full version of StarUML
@IranthaJ
IranthaJ / jiraconnector.gs
Created September 15, 2016 18:10
google apps script to JIRA connector
function testJiraConnection()
{
var baseURL = "https://yourserver/rest/api/2/search";
var username = "username";
var password = "pass";
var encCred = Utilities.base64Encode(username+":"+password);
var fetchArgs = {
contentType: "application/json",
headers: {"Authorization":"Basic "+encCred},
@mhitza
mhitza / Makefile
Last active March 10, 2026 12:26
Programming Arduino Uno (ATmega386P) in assembly
%.hex: %.asm
avra -fI $<
rm *.eep.hex *.obj *.cof
all: $(patsubst %.asm,%.hex,$(wildcard *.asm))
upload: ${program}.hex
avrdude -c arduino -p m328p -P /dev/arduino-uno -b 115200 -U flash:w:$<
monitor:
@guycalledseven
guycalledseven / osx_yosemite_disable_features.sh
Last active August 16, 2021 01:57
Disabling OSX Yosemite annoyances / features I have no use of
# Tested on OSX Yosemite 10.10.4
# there is also an updated version (work in progress) for El Capitan here https://gist.github.com/guycalledseven/31ffe35eca056838b06b
# XXX TODO
# should I disable com.google.Keystone.Agent ??
# http://applehelpwriter.com/2014/07/13/how-to-remove-googles-secret-update-software-from-your-mac/
# Stop DS_Store file creation on network connections
# restart Finder afterwards