Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/armintalaie/nwhacks2024
https://github.com/armintalaie/nwhacks2024
Last synced: about 21 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/armintalaie/nwhacks2024
- Owner: armintalaie
- Created: 2024-01-20T21:23:33.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-01-22T03:39:41.000Z (10 months ago)
- Last Synced: 2024-05-02T05:30:58.354Z (7 months ago)
- Language: TypeScript
- Size: 2.46 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# nwHacks 2024
[Notion](https://www.notion.so/armin-notes/Nw-Hacks-7fae1e0be8f4421b9334ea3640ebd552?pvs=4).
## WSL
```plaintext
# on linux
export WSL_HOST_IP="$(tail -1 /etc/resolv.conf | cut -d' ' -f2)"
socat TCP-LISTEN:5037,reuseaddr,fork TCP:$WSL_HOST_IP:5037# on windows
# turn off your firewall! ya... i know# forward windows to wsl
netsh interface portproxy add v4tov4 listenport=8081 listenaddress=0.0.0.0 connectport=8081 connectaddress=172.28.62.61# run adb
adb -a nodaemon server start
```