http://m.downcc.com/d/359746
https://xiaoerso.com/p/vTdCYypdquU
https://xiaoerso.com/p/Npqa40k5eYF
http://m.xfdown.com/soft/66656.html
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
| OLD_MODULE_NAME="$0" | |
| NEW_MODULE_NAME="$1" | |
| go mod edit -module ${NEW_MODULE_NAME} | |
| -- rename all imported module | |
| find . -type f -name '*.go' \ | |
| -exec sed -i -e 's,{OLD_MODULE_NAME},{NEW_MODULE_NAME},g' {} \; |
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
| import os | |
| sublime_binary_path = "/tmp/sublime_text" | |
| version_magic_string = "4126" | |
| sz_magic_string = 4 | |
| version_magic_string_offset = 0x0002d78a # (Real offset from xxd) | |
| is_file_read = os.access(sublime_binary_path, os.R_OK) | |
| if not is_file_read: |
airplane
enable
adb shell settings put global airplane_mode_on 1
adb shell am broadcast -a android.intent.action.AIRPLANE_MODE
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
| https://nyaa.si | |
| https://sukebei.nyaa.si | |
| https://nyaa.net | |
| https://sukebei.nyaa.net | |
| https://tokyotosho.info | |
| https://anirena.com | |
| https://anidex.info | |
| https://nyaa.iss.one | |
| https://fap.iss.one |
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
| https://1337x.g3g.fun/ |
main tutorial: https://reactnative.dev/docs/environment-setup
tutorial: https://androidsdkoffline.blogspot.com/p/android-sdk-platform-tools.html
- download platform-29 -->> https://dl.google.com/android/repository/platform-29_r04.zip
- using bash cmd >> start with:
cd $ANDROID_SDK_ROOT
rm -rf platforms/android-29 && unzip /f/react/platform-29_r04.zip -d platforms/android-29 && cd platforms/android-29 && mv android-*/* . && rm -rf android-*
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
| # add the remote | |
| git remote add b https://remote_repo.git | |
| # fetch remote commits | |
| git remote update | |
| # uses current branch for diffing | |
| git diff $(git branch --show-current) remotes/b/remote_repo_branch > diff.diff\ | |
| # remove the remote for cleanup | |
| git remote rm b |
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
| addEventListener("fetch", (event) => { | |
| event.respondWith( | |
| handleRequest(event.request).catch( | |
| (err) => new Response(err.stack, { status: 500 }) | |
| ) | |
| ); | |
| }); | |
| async function handleRequest(request) { |