Skip to content

Instantly share code, notes, and snippets.

@TonyChen-SH
TonyChen-SH / 免流.md
Created April 5, 2026 02:58 — forked from nickfox-taterli/免流.md
免流记录

关于免流和混淆

一、什么是免流?

答:通过混淆协议的方式伪装正常使用的流量到套餐卡免费流量访问范围内,以此做到欺骗运营商,达到薅运营商羊毛的手段,并且部分卡和地区还可以突破无限流量(实际到某流量量限速到3G/2G)卡限速。

二、怎么样免流?

答:通过混淆协议的方式。例如SSR提供的混淆协议功能。

@TonyChen-SH
TonyChen-SH / 1-outbound-call.php
Created July 19, 2024 00:18 — forked from jmadden/1-outbound-call.php
Twilio PHP Outbound Call and Gather Example
<?php
// Get the PHP helper library from https://twilio.com/docs/libraries/php
require_once '/path/to/vendor/autoload.php'; // Loads the library
use Twilio\Rest\Client;
// Your Account Sid and Auth Token from twilio.com/user/account
$sid = "YOU_ACCOUNT_SID";
$token = "YOUR_AUTH_TOKEN";
$client = new Client($sid, $token);
@TonyChen-SH
TonyChen-SH / index.html
Created July 23, 2019 09:43 — forked from jonnyreeves/index.html
JavaScript Class Structure using requireJS. The following code shows you how to create a Class definition in one JavaScript file and then import it for use in another; coming from an ActionScript 3 background this (and some of JavaScript specific traits)
<!DOCTYPE html>
<html>
<head>
<script data-main="usage" src="http://requirejs.org/docs/release/1.0.8/comments/require.js"></script>
</head>
<body>
<p>Check your JavaScript console for output!</p>
</body>
</head>
atom-setting