Skip to content

Instantly share code, notes, and snippets.

View ctkqiang's full-sized avatar
:octocat:
什么性能优化难题,在我这就像踩上风火轮,一路狂飙,轻松突破!

🇨🇳钟智强 『江西青垣科技』 ctkqiang

:octocat:
什么性能优化难题,在我这就像踩上风火轮,一路狂飙,轻松突破!
View GitHub Profile
@ctkqiang
ctkqiang / controllable_Webcams.csv
Created June 24, 2022 06:32 — forked from JT5D/controllable_Webcams.csv
controllable Webcams list
We can make this file beautiful and searchable if this error is corrected: It looks like row 4 should actually have 22 columns, instead of 8 in line 3.
created_utc,score,domain,id,title,author,ups,downs,num_comments,permalink,selftext,link_flair_text,over_18,thumbnail,subreddit_id,edited,link_flair_css_class,author_flair_css_class,is_self,name,url,distinguished
1315403643.0,462,cracked.com,k7kzm,Writer of Cracked.com mentions this subreddit in their article,penguinsmut,493,31,47,http://www.reddit.com/r/controllablewebcams/comments/k7kzm/writer_of_crackedcom_mentions_this_subreddit_in/,,,False,http://thumbs.reddit.com/t3_k7kzm.png,t5_2qt74,False,,,False,t3_k7kzm,http://www.cracked.com/article_19412_8-things-you-wont-believe-can-be-hacked.html,
1339618071.0,159,209.121.28.211,v0dh3,Now we just wait for kinky elevator sex.,Brudus,173,14,97,http://www.reddit.com/r/controllablewebcams/comments/v0dh3/now_we_just_wait_for_kinky_elevator_sex/,,,False,default,t5_2qt74,False,,,False,t3_v0dh3,http://209.121.28.211/anony/mjpg.cgi,
1349006496.0,148,cryptogasm.com,10phl7,"I created a basic web viewer for a load of webcams I discovered (1,392 and counting).",Rsaesha,163,1
<?xml version="1.0"?>
<opencv_storage>
<cascade>
<stageType>BOOST</stageType>
<featureType>HAAR</featureType>
<height>24</height>
<width>24</width>
<stageParams>
<boostType>GAB</boostType>
<minHitRate>9.9500000476837158e-01</minHitRate>
@ctkqiang
ctkqiang / police_dept_data.json
Created March 2, 2022 16:58
Just a regular json for testing
{
"police_department": "police-database-1",
"data": {
"ABC1234": {
"transportation_type": "car",
"vehicle_type": "sedan",
"brand": "Toyota",
"model": "Vios",
"owner": "John Doe",
"is_wanted": false,
log(msg) {
let webhook_url = 'thewebhoooklink';
let params = {
username: 'ABC',
content: msg,
};
return axios({
method: 'POST',
At John Melody Me's Software, one of our main priorities is the privacy of our visitors. This Privacy Policy document contains types of information that is collected and recorded by - and how we use it.
If you have additional questions or require more information about our Privacy Policy, do not hesitate to contact us.
This Privacy Policy applies only to our online activities and is valid for visitors to our app with regards to the information that they shared and/or collect in -. This policy is not applicable to any information collected offline or via channels other than this app. Our Privacy Policy was created with the help of the Free Privacy Policy Generator.
Consent
By using our apps, you hereby consent to our Privacy Policy and agree to its terms.
Information we collect
{
"author": "John Melody Me",
"data": [
{
"Location": 1,
"Frequency": 462.125,
"Duplex": "",
"Offset": 0,
"Tone": "TSQL",
"rToneFreq": 88.5,
@ctkqiang
ctkqiang / BF888S_default_01012019.csv
Created December 26, 2021 16:19 — forked from kennedy/BF888S_default_01012019.csv
Baofeng BF888S default frequencies
Location Name Frequency Duplex Offset Tone rToneFreq cToneFreq DtcsCode DtcsPolarity Mode TStep Skip Comment URCALL RPT1CALL RPT2CALL DVCODE
1 462.125000 0.000000 TSQL 88.5 69.3 023 NN FM 5.00 S
2 462.225000 0.000000 88.5 88.5 023 NN FM 5.00 S
3 462.325000 0.000000 88.5 88.5 023 NN FM 5.00 S
4 462.425000 0.000000 TSQL 88.5 103.5 023 NN FM 5.00 S
5 462.525000 0.000000 TSQL 88.5 114.8 023 NN FM 5.00 S
6 462.625000 0.000000 TSQL 88.5 127.3 023 NN FM 5.00 S
7 462.725000 0.000000 TSQL 88.5 136.5 023 NN FM 5.00 S
8 462.825000 0.000000 TSQL 88.5 162.2 023 NN FM 5.00 S
9 462.925000 0.000000 DTCS 88.5 88.5 023 NN FM 5.00 S
// ignore_for_file: non_constant_identifier_names
import 'dart:convert';
List<UserPostsModel> userPostsFromJson(String str) {
return List<UserPostsModel>.from(json.decode(str).map((x) {
return UserPostsModel.fromJson(x);
}));
}
async get_jnt_tracking() {
let result;
if ((this.tracking_number) == (undefined)) {
result = {
message: (err),
};
return (result);
} else {
class Subsettest:
def __init__(self, s, t):
self.s = s
self.t = t
n = len(s) # Get The Length of S
if(self.issubsetsum(s, n, t) == True):
print("The sum of the subset is equal to T")