Skip to content

Instantly share code, notes, and snippets.

# Source: https://gist.github.com/vfarcic/9d9de2cf93b6514ab8cf8fed56542352
##################################################################
# How to Debug Kubernetes Applications With Ephemeral Containers #
# https://youtu.be/qKb6loAEPV0 #
##################################################################
# Additional Info:
# - Containers Are Not VMs! Which Base Container (Docker) Images Should We Use?: https://youtu.be/82ZCJw9poxM
# - Is Timoni With CUE a Helm Replacement?: https://youtu.be/bbE1BFCs548
@niksumeiko
niksumeiko / disable-html-form-input-autocomplete-autofill.md
Last active August 29, 2024 05:23
Disable HTML form input autocomplete and autofill

Disable HTML Form Input Autocomplete and Autofill

  1. Add autocomplete="off" onto <form> element;
  2. Add hidden <input> with autocomplete="false" as a first children element of the form.
<form autocomplete="off" method="post" action="">
    <input autocomplete="false" name="hidden" type="text" style="display:none;">
    ...
@tony4d
tony4d / p4merge4git.md
Created August 24, 2012 19:00
Setup p4merge as a visual diff and merge tool for git
@johanmeiring
johanmeiring / gist:3002458
Created June 27, 2012 08:32
"git lg" alias for pretty git log
# From http://garmoncheg.blogspot.com/2012/06/pretty-git-log.html
git config --global alias.lg "log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --"