Skip to content

Instantly share code, notes, and snippets.

View kfrncs85's full-sized avatar

Kevin Francis kfrncs85

  • Austin, Texas
  • 15:06 (UTC -06:00)
View GitHub Profile
@kfrncs85
kfrncs85 / cloud-init.yaml
Created August 13, 2025 20:33 — forked from syntaqx/cloud-init.yaml
cloud init / cloud config to install Docker on Ubuntu
#cloud-config
# Option 1 - Full installation using cURL
package_update: true
package_upgrade: true
groups:
- docker
system_info:
@kfrncs85
kfrncs85 / .gitconfig
Last active October 13, 2025 12:46 — forked from pksunkara/config
Sample of git config file (Example .gitconfig) (Place them in $XDG_CONFIG_HOME/git)
# vi: ft=dosini
[user]
name = Kevin Francis
email = [email protected]
username = kfrncs85
[core]
editor = nvim
whitespace = fix,-indent-with-non-tab,trailing-space,cr-at-eol
pager = delta
[column]
@kfrncs85
kfrncs85 / sources.list
Last active October 9, 2025 23:34 — forked from hakerdefo/sources.list
Debian 12 "bookworm" complete sources.list
deb https://ftp.debian.org/debian/ trixie contrib main non-free non-free-firmware
# deb-src https://ftp.debian.org/debian/ trixie contrib main non-free non-free-firmware
deb https://ftp.debian.org/debian/ trixie-updates contrib main non-free non-free-firmware
# deb-src https://ftp.debian.org/debian/ trixie-updates contrib main non-free non-free-firmware
deb https://ftp.debian.org/debian/ trixie-proposed-updates contrib main non-free non-free-firmware
# deb-src https://ftp.debian.org/debian/ trixie-proposed-updates contrib main non-free non-free-firmware
deb https://ftp.debian.org/debian/ trixie-backports contrib main non-free non-free-firmware
@kfrncs85
kfrncs85 / AdbCommands
Created February 28, 2025 03:23 — forked from Pulimet/AdbCommands
Adb useful commands list
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.