angular based
simple html/csss
simple html/csss
| # https://dev.to/ashishpandey/lets-see-wifi-password-using-python-3kg3?utm_source=hackertab.dev&utm_medium=post&utm_campaign=home | |
| import subprocess | |
| network_name = "Get your own wifi" #your_wifi_network_name | |
| result = subprocess.run(['netsh', 'wlan', 'show', 'profile', network_name, 'key=clear'], stdout=subprocess.PIPE) | |
| output = result.stdout.decode() | |
| for line in output.split('\n'): |
| Verifying my Blockstack ID is secured with the address 1GHuDxjhFSzYtadAcJP51Q7x7wNNr6XqcL https://explorer.blockstack.org/address/1GHuDxjhFSzYtadAcJP51Q7x7wNNr6XqcL |
| alias j9="export JAVA_HOME=`/usr/libexec/java_home -v 9`; java -version" | |
| alias j8="export JAVA_HOME=`/usr/libexec/java_home -v 1.8`; java -version" | |
| alias j7="export JAVA_HOME=`/usr/libexec/java_home -v 1.7`; java -version" |
| /* Sample function that returns boolean in case the browser is Internet Explorer*/ | |
| function isIE() { | |
| ua = navigator.userAgent; | |
| /* MSIE used to detect old browsers and Trident used to newer ones*/ | |
| var is_ie = ua.indexOf("MSIE ") > -1 || ua.indexOf("Trident/") > -1; | |
| return is_ie; | |
| } | |
| /* Create an alert to show if the browser is IE or not */ | |
| if (isIE()){ |
| upstream rest_node_js { | |
| server 127.0.0.1:8000; | |
| } | |
| server { | |
| listen 443 ssl; | |
| server_name findmybusnj.com; | |
| ssl on; | |
| gzip on; |
| https://github.com/google/ios-webkit-debug-proxy/ | |
| https://stackoverflow.com/questions/20408110/debug-ipad-safari-with-a-pc?utm_medium=organic&utm_source=google_rich_qa&utm_campaign=google_rich_qa | |
| https://github.com/RemoteDebug/remotedebug-ios-webkit-adapter/issues/79 |
| ^(?:[\t ]*(?:\r?\n|\r))+ |
| npm outdated --depth=0 | grep -v Package | awk '{print $1}' | xargs -I% npm install %@latest --save |
angular based
simple html/csss
simple html/csss