This file contains hidden or 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
andromax.m3y/mark_home.w.xml | |
andromax.m3y/mark_title.w.xml | |
andromax.m3y/mark_set_ip.w.xml | |
andromax.m3y/mark_set_basic.w.xml | |
andromax.m3y/mark_conn.w.xml | |
andromax.m3y/mark_engineer.w.xml | |
andromax.m3y/rand.w.xml | |
andromax.m3y/read_imei.w.xml | |
andromax.m3y/open_diag.w.xml | |
andromax.m3y/close_diag.w.xml |
This file contains hidden or 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
root:$1$YinWP4CA$9YsLRT1/rzO2yCHdW4Lx00:0:0:root:/root:/bin/sh | |
usr:$1$k3sVqeOn$BcweChtGFoYN2n4drIh4n1:1000:1000:Linux User,,,:/var:/bin/sh | |
dbus:*:81:81:System message bus:/:/sbin/nologin | |
haldaemon:*:68:68:HAL daemon:/:/sbin/nologin |
This file contains hidden or 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
#!/bin/bash | |
checkExisting(){ | |
echo "Checking if already existing device on file..." | |
while read fileLine; do | |
if [ "$line" = "$fileLine" ]; then | |
echo "[WARNING] Device already initialized on this system. Nothing to do here" |
This file contains hidden or 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
var supportsWebGL = ( function () { try { return !! window.WebGLRenderingContext && !! document.createElement( 'canvas' ).getContext( 'experimental-webgl' ); } catch( e ) { return false; } } )(); | |
if ( supportsWebGL ) { | |
alert( 'FTW!' ); | |
} |
This file contains hidden or 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
# | |
# Lock current screen from command line | |
# | |
/System/Library/CoreServices/Menu\ Extras/User.menu/Contents/Resources/CGSession -suspend |
This file contains hidden or 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
# | |
# SSH port forwarding to server | |
# | |
remote_ip=8.8.8.8 | |
remote_user=root | |
local_port=22 | |
remote_port=2222 | |
ssh -f -N -R $remote_ip:$remote_port:localhost:$local_port $remote_user@$remote_ip |
NewerOlder