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
#include "stdio.h" | |
char weight[10]; | |
int compare(const char *a, const char *b){ | |
return weight[*a]-weight[*b]; | |
} | |
void ShuffleArray_Sort(char* arr, int len){ | |
for (int j = 0; j < 10; ++j){ |
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
// ==UserScript== | |
// @name ReadablePass | |
// @namespace zyeoman | |
// @description Generate readable password | |
// @include * | |
// @version 1 | |
// @grant none | |
// ==/UserScript== | |
reg = /([^aeiou]*[aeiou]*([^aeiou]*([^aeiou][aeiou]+[^aeiou]*$)))/ | |
host = /(?:\w+\.)*?([^\.]*)\.[^\.]*$/.exec(window.location.host) [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
gcc libwebsockets-websocket.c -L/usr/local/lib -lwebsockets |
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
adb shell screenrecord --size 480x848 /sdcard/demo.mp4 | |
adb pull /sdcard/demo.mp4 | |
ffmpeg.exe -i demo.mp4 -filter:v "setpts=0.5*PTS" demo.gif |
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
#ds-reset a.ds-user-name[data-user-id='id']:after { | |
content: "魔法笔记的记录者"; | |
margin-left: 6px; | |
font-size: 12px; | |
color: #13BF20; | |
background: rgba(255, 255, 255, .35); | |
border-radius: 4px; | |
padding: 0 3px; | |
} | |
#ds-thread #ds-reset li.ds-post-placeholder { |
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
[Rainmeter] | |
BackgroundMode=1 | |
AppVersion=14000 | |
[Metadata] | |
Name= | |
Author= | |
Information= | |
License= | |
Version= |
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
%% 读取图片 | |
img = imread('船.bmp'); | |
%% 全局阈值二值化 | |
bw = img>65; | |
figure; | |
imshow(bw); | |
%% 横向投影 | |
ys = sum(bw,2); | |
figure; | |
plot(ys); |
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
cloud.mickir.me:443 { | |
tls /etc/letsencrypt/live/cloud.mickir.me/fullchain.pem /etc/letsencrypt/live/cloud.mickir.me/privkey.pem | |
timeouts none | |
root /usr/share/webapps/nextcloud | |
log /home/mickir/caddy/access.log | |
errors /home/mickir/caddy/access.log | |
fastcgi / /run/php-fpm/php-fpm.sock php { |
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
#! /usr/bin/env python | |
# -*- coding: utf-8 -*- | |
# | |
# Copyright © 2018 Yongwen Zhuang <[email protected]> | |
# | |
# Distributed under terms of the MIT license. | |
""" | |
Byr | |
自动从bt.byr.cn上下载免费种子文件,保存到指定位置 |
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
scriptencoding utf-8 | |
" Title: Vimrc for windows and linux | |
" Maintainer: Yeoman Zhuang <[email protected]> | |
" Last Modified: 2018-07-08 23:03 +0800 | |
" Startup {{{ | |
if has('autocmd') | |
" Remove ALL autocommand for the current group | |
au! | |
endif |
OlderNewer