cp /usr/lib64/spotify-client/Apps/zlink.spa ~/
unzip zlink.spa -d zlink
- Search for `view-billboard-ad'
- Add
data-bind="visible: null" - Save file
cd zlink; zip --quiet --recurce-paths ../zlink.spa ./
| # | |
| # 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 |
| # | |
| # Lock current screen from command line | |
| # | |
| /System/Library/CoreServices/Menu\ Extras/User.menu/Contents/Resources/CGSession -suspend |
| var supportsWebGL = ( function () { try { return !! window.WebGLRenderingContext && !! document.createElement( 'canvas' ).getContext( 'experimental-webgl' ); } catch( e ) { return false; } } )(); | |
| if ( supportsWebGL ) { | |
| alert( 'FTW!' ); | |
| } |
| #!/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" |
| 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 |
| 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 |
| #!/bin/sh | |
| for vid in *.MOD; do python3 convert_mod.py $vid; done |
| #!/bin/bash | |
| function show_help | |
| { | |
| echo "Usage: $0 (-x xcoord) (-y ycoord) (-l level)" | |
| echo " [-r x width] [-s y width] -h for help" | |
| } | |
| if [ $# -le 1 ]; then | |
| show_help |
| #!/usr/bin/env python | |
| # https://reverseengineering.stackexchange.com/a/13395 | |
| import sys | |
| import binascii | |
| import struct | |
| import zlib | |
| if (len(sys.argv) <= 1): | |
| print('USAGE:\n%s [configBak.cfg|config.bin]' % sys.argv[0]) | |
| exit(1) |