Skip to content

Instantly share code, notes, and snippets.

View sfloess's full-sized avatar
💭
while(true);

Scot P. Floess sfloess

💭
while(true);
View GitHub Profile
@sfloess
sfloess / Android.md
Last active September 30, 2019 16:36
Android

Android

Helpful tips and tricks for Android.

Nova Launcher

Nova Launcher is an awesome UI supplement/replacement for stock Android UI.

Remove Swipe Indicator

To disable the swipe indicator, perform the following:

  • Select Nova Settings
  • Select App & widget drawers
@sfloess
sfloess / Linux.md
Last active May 3, 2025 22:42
Linux helpful tips and tricks

Linux

Helpful tips and tricks for Linux.

How-To

Quickies

  • NetworkManager
    • Setup bridge
      • nmcli connection add type bridge autoconnect yes con-name [bridge name] ifname [bridge interface name]
      • nmcli con add type bridge-slave ifname [ethernet name] master [bridge hame]
  • Example
@sfloess
sfloess / My Virtual Machines.md
Last active November 13, 2020 16:45
My Virtual Machines
@sfloess
sfloess / My Hardware.md
Last active April 17, 2021 18:27
My Hardware

My Hardware

My hardware at home.

Routers

den-ap

Serves as administrative server.

Tech spec:

@sfloess
sfloess / My Network.md
Last active November 1, 2020 19:16
My Network
@sfloess
sfloess / My ELK Setup.md
Last active August 20, 2019 14:18
My ELK Setup

ELK

I'm a huge fan of Splunk and wanted similar logging functionality at home. Therefore, all baremetal/VMs/chroot'd environments send rsyslog's to admin-ap via /etc/rsyslog.d/50-default.conf:

*.* @192.168.168.2:514

rsyslogd on admin-ap

This setup is required so that all clients send their logs to one server who forwards to Logstash server v5.6.16.

@sfloess
sfloess / Java.md
Last active May 12, 2022 16:39
Java Tips and Tricks
@sfloess
sfloess / Debian.md
Last active March 26, 2024 17:03
Debian Tips and Tricks
@sfloess
sfloess / Raspbian.md
Last active July 14, 2019 02:26
Raspbian Tips and Tricks

Raspbian

Helpful tips and tricks for Raspbian.

Upgrading to Buster

To upgrade your existing Raspbian OS from Stretch to Buster, perform the following:

  1. apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 04EE7237B7D453EC 648ACFD622F3D138
  2. grep -rl stretch /etc/apt/ | sudo xargs sed -i 's/stretch/buster/g'
  3. apt update -y && apt dist-upgrade -y
  4. reboot
@sfloess
sfloess / Maven.md
Last active October 30, 2021 17:16
Maven Tips and Tricks

Maven

Helpful tips and tricks for Maven.

Quickies

  • Execute a java app: mvn exec:java -Dexec.mainClass=[fully qualified name of class]
  • Update properties: mvn -U versions:update-properties
  • PKIX path building failed: mvn -Dmaven.wagon.http.ssl.insecure=true -Dmaven.wagon.http.ssl.allowall=true ...
  • Proxies
    • http: -Dhttp.proxyHost=<host> -Dhttp.proxyPort=<port>
    • https: -Dhttps.proxyHost=<host> -Dhttps.proxyPort=<port>