A "Best of the Best Practices" (BOBP) guide to developing in Python.
- "Build tools for others that you want to be built for you." - Kenneth Reitz
- "Simplicity is alway better than functionality." - Pieter Hintjens
| you might find these interesting 👀 | |
| configs for my terminal, multiplexer, shell, etc. | |
| currently rolling with: alacritty + zsh + oh-my-zsh + zellij + nvim |
| ``` | |
| docker run -p 6080:80 -v /dev/shm:/dev/shm dorowu/ubuntu-desktop-lxde-vnc | |
| ``` | |
| Browse to http://127.0.0.1:6080/ | |
| In the VNC UI, run the LXTerminal. Paste these commands to install a given version of Firefox. Set `FF_VERS` to the release you want. See available releases at http://releases.mozilla.org/pub/firefox/releases | |
| ``` | |
| apt-get update && apt-get install wget |
| /** | |
| * This is a compilation of code snippets required to render SVG files in JavaFX using Batik. | |
| * See my full post on StackOverflow: http://stackoverflow.com/a/23894292/603003 | |
| */ | |
| package proofofconcept; | |
| import java.awt.image.BufferedImage; | |
| import org.apache.batik.transcoder.TranscoderException; | |
| import org.apache.batik.transcoder.TranscoderOutput; |
| # ==== Basic | |
| # Default shell | |
| set-option -g default-shell /bin/bash | |
| set-option -g default-command /bin/bash | |
| # Allow UTF-8 | |
| set-window-option -g utf8 on | |
| # Disable ESC delay | |
| set-option -s escape-time 0 | |
| # ==== Reload config (r) |