AWS | OpenSource |
---|---|
OpenSearch | ElasticSearch |
Athena | Presto |
Redshift | PostgreSQL |
MSK | Kafka |
Kinesis Data Analytics | Flink |
DocumentDB | MongoDB |
Keyspaces | Cassandra |
Elastic Transcoder | ffmpeg |
This file contains 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
{ | |
"全国放送局": [ | |
{ | |
"name": "NHK公式チャンネル", | |
"url": "https://www.youtube.com/channel/UCip8ve30-AoX2y2OtAAmqFA" | |
}, | |
{ | |
"name": "NHK WORLD-JAPAN", | |
"url": "https://www.youtube.com/channel/UCSPEjw8F2nQDtmUKPFNF7_A" | |
}, |
There are n
venues (starting from 0
), and the distribution of roads between venues is recorded in a two-dimensional array edges
, edges[i]= [x, y]
means that the i
-th road connects venue x
and venue y
(i.e., two venues are adjacent to each other). Initially, each venue has a certain number of volunteers (the number of volunteers may vary from venue to venue), and the number of volunteers will be deployed every day for the next m
days according to the popularity of the event. There are three deployment options:
- Halve the number of volunteers in the venue with idx number.
cnt[idx] = cnt[idx]/2;
- Adding the number of volunteers from the venue with idx to the number of volunteers from the venue with idx in the adjacent venues.
cnt[idx-1] += cnt[idx]; cnt[idx+1] += cnt[idx];
- Subtracting the number of volunteers in the venue numbered idx from the number of volunteers in the venue numbered idx from the number of volunteers in the venue adjacent to the venue numb
The debug process is actually the process of constantly asking and answering questions to a rubber duck (yourself)
This file contains 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
{ | |
"enabled" : true, | |
"services": [ | |
{ | |
"id": "tiles", | |
"name": "OpenSearch Maps Tile Service", | |
"manifest": "https://maps.opensearch.org/tiles/v2.json", | |
"type": "tms" | |
}, | |
{ |
This file contains 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
USER-AGENT,Anime* | |
PROCESS-NAME,tw.com.gamer.android.animad | |
DOMAIN-SUFFIX,bahamut.com.tw | |
DOMAIN-SUFFIX,gamer.com.tw | |
DOMAIN-SUFFIX,hinet.net | |
DOMAIN-SUFFIX,hanime1.me | |
IP-CIDR,104.16.181.30/32,no-resolve | |
IP-CIDR,104.26.0.18/32,no-resolve |
This file contains 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
//META{"name":"Stalker"}*// | |
// !!! Hey there! If you didn't come here from the BetterDiscord Discord server ( https://discord.gg/2HScm8j ) !!! // | |
// !!! then please do not use whatever you were using that led you here, getting plugins from places other than !!! // | |
// !!! the #plugin repo channel in the BD server can be dangerous, as they can be malicious and do bad things. !!! // | |
class Stalker { | |
getName() { | |
return "Stalker"; | |
} |
This file contains 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
function parseFile (req, res) { | |
req.setEncoding('binary'); | |
var body = ''; // 文件数据 | |
var fileName = ''; // 文件名 | |
// 边界字符串 | |
var boundary = req.headers['content-type'].split('; ')[1].replace('boundary=',''); | |
req.on('data', function(chunk){ | |
body += chunk; | |
}); |
This file contains 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
let count = 0; | |
window.setInterval(function(){ | |
if($('a[action-type="ok"]')[0]){ | |
$('a[action-type="ok"]')[0].click() | |
} | |
$('a[action-type="fl_menu"]')[0].click(); | |
if($('a[action-type="ok"]')[0]){ | |
$('a[action-type="ok"]')[0].click() | |
} | |
if($('a[action-type="fl_personalVisible"]')[0]===undefined){ |
This file contains 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
function FindProxyForURL(url, host) { | |
return "SOCKS5 127.0.0.1:1090"; | |
} |
NewerOlder