This file contains hidden or 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 <iostream> | |
#include <stack> | |
int main( int argc, const char* argv[] ) { | |
unsigned int x; | |
stack<int> bin; | |
// 接受任何一个无符号整数,直到 EOF 为止 | |
while ( std::cin >> x ) { | |
// 把十进制数依次转化为二进制并压入栈内 | |
while ( x != 0 ) { |
This file contains hidden or 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/perl | |
# love letter (a perl poem) | |
listen (to_me, please); | |
my ($dear, $little_star); | |
please: | |
`touch my heart`. open it, read it; | |
sort my @feelings, and pop @feelings; |
This file contains hidden or 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
/** The Google Chrome Custom Style **/ | |
body, div {font-family: "Hiragino Sans GB W3" !important;} | |
table, tbody, th, td {font-family: "Hiragino Sans GB W3" !important;} | |
h1, h2, h3, h4 ,h5, h6 {font-family: "Hiragino Sans GB W6" !important;} | |
ul, ol, li {font-family: "Hiragino Sans GB W3" !important;} | |
p, a, input {font-family: "Hiragino Sans GB W3" !important;} | |
#wrapper {font-family: "Hiragino Sans GB W3" !important;} | |
#content {font-family: "Hiragino Sans GB W3" !important;} | |
#containner {font-family: "Hiragino Sans GB W3" !important;} |
This file contains hidden or 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
[General] | |
Name=Default | |
Icon=..\mactray.exe.ico,0 | |
;【自动挂钩子进程】 | |
;[0:Disable] 1:Enable | |
HookChildProcesses=1 | |
;【字体微调】 | |
;0:Normal 1:NoHinting 2:AutoHinting 3:Light+AutoHinting |
This file contains hidden or 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
-- | |
-- Table structure for table `users` | |
-- | |
DROP TABLE IF EXISTS `users`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `users` ( | |
`id` int(10) unsigned NOT NULL auto_increment, |
This file contains hidden or 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
/** The Google Chrome Custom Style **/ | |
body, div {font-family: "Microsoft Yahei" !important;} | |
table, tbody, th, td {font-family: "Microsoft Yahei" !important;} | |
h1, h2, h3, h4 ,h5, h6 {font-family: "Microsoft Yahei" !important;} | |
ul, ol, li {font-family: "Microsoft Yahei" !important;} | |
p, a, input {font-family: "Microsoft Yahei" !important;} | |
#wrapper {font-family: "Microsoft Yahei" !important;} | |
#content {font-family: "Microsoft Yahei" !important;} | |
#containner {font-family: "Microsoft Yahei" !important;} |