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> | |
int main() | |
{ | |
printf("hello_world"); | |
} |
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
a = 'foo' | |
class << a | |
def inspect | |
'"bar"' | |
end | |
end | |
a.inspect # => "bar" | |
a = 'foo' # new object, new singleton class | |
a.inspect # => "foo" |
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
gem 'faye' | |
Using rake (0.9.2.2) | |
Using i18n (0.6.0) | |
Using multi_json (1.3.6) | |
Using activesupport (3.2.5) | |
Using builder (3.0.0) | |
Using activemodel (3.2.5) | |
Using erubis (2.7.0) | |
Using journey (1.0.4) | |
Using rack (1.4.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
gem 'faye' | |
Using rake (0.9.2.2) | |
Using i18n (0.6.0) | |
Using multi_json (1.3.6) | |
Using activesupport (3.2.5) | |
Using builder (3.0.0) | |
Using activemodel (3.2.5) | |
Using erubis (2.7.0) | |
Using journey (1.0.4) | |
Using rack (1.4.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
U' F L' U' L' B2 F D2 L R' D R F2 R U R' D F2 L F2 R D' U' R' L2 |
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<iostream> | |
#include<cstdio> | |
#include<cstring> | |
#include<algorithm> | |
#include<string> | |
#define MAXN 33 | |
#define INF 0x3f3f3f3f | |
using namespace std; | |
int size[MAXN][MAXN]; | |
string ans; |
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
<html version="g42dymwpi--nx"><script type="text/javascript">window["_gaUserPrefs"] = { ioo : function() { return true; } }</script><head> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | |
<title>学生课表</title> | |
<style> | |
#subprinttable1{ | |
border: 1px solid #d3dffa; | |
border-collapse: collapse; | |
font-size:12px; | |
} |
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
org 7c00h ; 告诉编译器程序加载到7C00H处 | |
mov ax,cs | |
mov ds,ax | |
mov es,ax | |
call DispStr | |
Jmp $ ; 无限循环 | |
DispStr: ; 显示字符串例程 | |
;clear screen | |
mov al,0 | |
mov cx,0 |
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<iostream> | |
#include<cstdlib> | |
#include<cstdio> | |
#include<algorithm> | |
#include<cstring> | |
#include<string> | |
#include<set> | |
#define MAXN 21 | |
#define INF 0x3f3f3f3f | |
using namespace std; |
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 <winsock2.h> | |
#include <time.h> | |
#include "conio.h" | |
#define QLEN 5 | |
#define WSVERS MAKEWORD(2, 0) | |
#pragma comment(lib, "ws2_32_lib") | |
int main(int argc, char argv[]) |
OlderNewer