- create a bot.
- create an Webhook agent and add it to your bot.
- paste the code into a Javascript agent and recieve fron webhook.
- create two agents - one for sending messages to Telegram, another for Wechat.
- Link those stuffs and play with them,
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
APP_NAME = *** | |
RUN_USER = git | |
RUN_MODE = prod | |
[security] | |
INTERNAL_TOKEN = *** | |
INSTALL_LOCK = true | |
SECRET_KEY = *** | |
[database] |
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
大于14比例 0.6744 | |
小于-19比例 1 | |
无穿越比例 0.0924 | |
平均最大 25139.9954 | |
平均最小 -20667.7789 | |
平均最大穿越 4983.632 |
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
// TODO: this is obsolete | |
'use strict' | |
require('@pipette/polyfill') | |
;(async function() { | |
const start = 0 // const start = 0 | |
const count = _pt_channel(start) // let count = start | |
const plus = async function() { // fun plus() { | |
_pt_in1 = await count() // count |{ |
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
#Redirect 301 ^/$ /search.htm | |
<IfModule mod_rewrite.c> | |
RewriteEngine On | |
RewriteBase / | |
RewriteCond %{REQUEST_FILENAME} !-f | |
RewriteCond %{REQUEST_FILENAME} !-d | |
#RewriteCond %{REQUEST_URI} !^/index\.htm | |
#RewriteCond %{REQUEST_URI} !^/image\.htm | |
#RewriteCond %{REQUEST_URI} !^/m\.htm | |
#RewriteCond %{REQUEST_URI} !^/mi\.htm |
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
/* | |
*log.js | |
*@author Alan-Liang | |
*@description npmlog wrapper | |
*@license WTFPL | |
*/ | |
/* | |
@example | |
var log=require("./log")("example-logger"); |
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
/* | |
pjax library for personal use | |
@author Alan?Liang | |
*/ | |
var pjax={}; | |
pjax.pagecount=0; | |
pjax.pages=[]; | |
/* | |
class pjax.page(string title,string url,function callback) |
NewerOlder