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 seq; | |
public class Employee { | |
public String name; | |
public int age; | |
} |
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] | |
name = xxx | |
email = [email protected] | |
signingkey = 37A9AD93 | |
[push] | |
default = simple | |
[alias] | |
ad = add * | |
cm = commit -am | |
cmt = commit -m |
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
google.com | |
twitter.com | |
tumblr.com | |
facebook.com | |
youtube.com | |
telegram.org | |
instagram.com | |
fbcdn.net | |
google.de | |
google.co.jp |
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 nobody; | |
worker_processes 1; | |
#error_log logs/error.log; | |
#error_log logs/error.log notice; | |
#error_log logs/error.log info; | |
#pid logs/nginx.pid; | |
events { |
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
# toolchain: gcc-arm-none-eabi(Linux), pleas use newlib_stubs.c | |
OBJS += newlib_stubs.o | |
CFLAGS += -ffunction-sections -fdata-sections -fno-builtin | |
LDFLAGS += --specs=nano.specs -lc -lnosys | |
# toolchain: keil MDK(Windows), please use redirect_file_stream.c | |
# Please check 'USE MicroLIB' |
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
微信 | |
版本 6.7 GooglePlay版 | |
唤醒锁 | |
正则表达式 WakerLock:+[0-9]{0,26} 间隔999999 | |
SyncService | |
StnCallBack | |
定时器 | |
# 正则表达式设置Amplify链接 https://forum.xda-developers.com/showpost.php?p=64411243&postcount=6237 | |
正则表达式 ALARM_ACTION+[(0-9)]{0,26} 间隔999999 | |
com.tencent.mm/.booter/MMReceivers$AlarmReceiver 间隔60 |
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
# https://github.com/arnofeng/ngx_google_deployment/blob/master/nginx.conf | |
#user nobody; | |
worker_processes 1; | |
#error_log logs/error.log; | |
#error_log logs/error.log notice; | |
#error_log logs/error.log info; | |
#pid logs/nginx.pid; |
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
{ | |
"server":"123.123.123.123", | |
"server_port":8989, | |
"local_port":1080, | |
"password":"password", | |
"timeout":300, | |
"nameserver":"8.8.4.4", | |
"method":"salsa20", | |
"mode":"tcp_and_udp", | |
"fast_open": false, |
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
location ^~ /demo { | |
alias /var/www/demo/; | |
autoindex on; | |
# set to on means use localtime | |
autoindex_localtime on; | |
# show size with unit 'MB' instead of 'Byte' | |
autoindex_exact_size off; | |
} |
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
// Sample file using the Google C++ coding standard. | |
// | |
// http://google-styleguide.googlecode.com/svn/trunk/cppguide.xml | |
// | |
// General rules: | |
// - Indents are two spaces. No tabs should be used anywhere. | |
// - Each line must be at most 80 characters long. | |
// - Comments can be // or /* but // is most commonly used. | |
// - File names should be lower_case.c or lower-case.c | |
// |
OlderNewer