🔔 NOTE: If you can, please buy software license to support the authors/developers!
- Go to menu Help > Enter License.
- Copy the license key below and paste it into the textbox > Click the Use License button.
| // <!--GAMFC-->version base on commit 43fad05dcdae3b723c53c226f8181fc5bd47223e, time is 2023-06-22 15:20:02 UTC<!--GAMFC-END-->. | |
| // @ts-ignore | |
| // Copy From https://github.com/zizifn/edgetunnel/blob/main/src/worker-vless.js | |
| import { connect } from 'cloudflare:sockets'; | |
| // How to generate your own UUID: | |
| // [Windows] Press "Win + R", input cmd and run: Powershell -NoExit -Command "[guid]::NewGuid()" | |
| let userID = 'd342d11e-d424-4583-b36e-524ab1f0afa4'; | |
| let proxyIP = ''; |
| // Sublime Text 3 License Keys // | |
| Sublime Text 2.x (for all Builds) | |
| —– BEGIN LICENSE —– | |
| Andrew Weber | |
| Single User License | |
| EA7E-855605 | |
| 813A03DD 5E4AD9E6 6C0EEB94 BC99798F | |
| 942194A6 02396E98 E62C9979 4BB979FE | |
| 91424C9D A45400BF F6747D88 2FB88078 |
| //DNS Query Program on Linux | |
| //Author : Silver Moon (m00n.silv3r@gmail.com) | |
| //Dated : 29/4/2009 | |
| //Header Files | |
| #include<stdio.h> //printf | |
| #include<string.h> //strlen | |
| #include<stdlib.h> //malloc | |
| #include<sys/socket.h> //you know what this is for | |
| #include<arpa/inet.h> //inet_addr , inet_ntoa , ntohs etc |
🔔 NOTE: If you can, please buy software license to support the authors/developers!
| #!/usr/bin/env bash | |
| # Clear out all previous attempts | |
| rm -rf "/tmp/source-git/" | |
| # Get the dependencies for git, then get openssl | |
| sudo apt-get install build-essential fakeroot dpkg-dev -y | |
| sudo apt-get build-dep git -y | |
| sudo apt-get install libcurl4-openssl-dev -y | |
| mkdir -p "/tmp/source-git/" |
| // A string-like object that points to a sized piece of memory. | |
| // | |
| // Functions or methods may use const StringPiece& parameters to accept either | |
| // a "const char*" or a "string" value that will be implicitly converted to | |
| // a StringPiece. The implicit conversion means that it is often appropriate | |
| // to include this .h file in other files rather than forward-declaring | |
| // StringPiece as would be appropriate for most other Google classes. | |
| // | |
| // Systematic usage of StringPiece is encouraged as it will reduce unnecessary | |
| // conversions from "const char*" to "string" and back again. |