View disable-address1-only.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<head> | |
<title>Some Site</title> | |
<meta http-equiv="content-type" content="text/html; charset=utf-8" /> | |
</head> | |
<body> | |
<p>Some other website</p> | |
<form id="test-form" action="#" autocomplete="disabled"> | |
First Name: <input type="text" name="fname" id="fname-id" autocomplete="given-name"><br/> | |
Last Name: <input type="text" name="lname" id="lname-id" autocomplete="family-name"><br/> |
View gist:15f93580601917c1b8c0937233068c30
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(".js-comment-container.outdated-comment").addClass("open") |
View jdks.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#list available jdks | |
alias jdks="/usr/libexec/java_home -V" | |
# jdk version switching - e.g. `jdk 6` will switch to version 1.6 | |
function jdk() { | |
echo "Switching java version"; | |
export JAVA_HOME=`/usr/libexec/java_home -v 1.$1`; | |
java -version; | |
} | |
export PATH=\$JAVA_HOME/jre/bin:$PATH |