As configured in my dotfiles.
start new:
tmux
start new with session name:
As configured in my dotfiles.
start new:
tmux
start new with session name:
| # | |
| # TO-DO: set |DESTINATIONURL| below to be whatever you want e.g. www.google.com. Do not include "http(s)://" as a prefix. All matching requests will be sent to that url. Thanks @Meatballs__! | |
| # | |
| # Note this version requires Apache 2.4+ | |
| # | |
| # Save this file into something like /etc/apache2/redirect.rules. | |
| # Then in your site's apache conf file (in /etc/apache2/sites-avaiable/), put this statement somewhere near the bottom | |
| # | |
| # Include /etc/apache2/redirect.rules | |
| # |
| var tid = '0000000000000000'; //Set appropriate game TID; Need to find a way to get TID automatically... | |
| utils.log("stage1, hijack fsppr and set perms"); | |
| sc.getFSPPR(); | |
| sc.ipcMsg(1).sendPid().data(0).sendTo('fsp-srv').assertOk(); | |
| var pid = sc.read4(sc.ipcBufAddr, 0xC >> 2); | |
| utils.log('Got process PID: '+pid.toString(16)); | |
| var buf1_sz = 0x1C; |
| /* | |
| * 1. Boot game | |
| * 2. Wait a second or so (for the game tid to register but before the code mounts the savedata) | |
| * 3. Home button | |
| * 4. Run this script | |
| * 5. ??? | |
| * 6. PROFIT | |
| */ | |
| var tid = '0000000000000000'; //Change Title ID here |
| EXE = shell | |
| SRC = . | |
| LDFLAGS = -ldflags="-s -w" | |
| windows: | |
| GOOS=windows go build -o $(EXE)_win.exe $(LDFLAGS) $(SRC) | |
| macos: | |
| GOOS=darwin go build -o $(EXE)_macos $(LDFLAGS) $(SRC) |
| #include <stdint.h> | |
| #include <inttypes.h> | |
| #include <winsock2.h> | |
| #include <windns.h> | |
| #include <windows.h> | |
| #include <stdio.h> | |
| #include <tlhelp32.h> | |