- id
- login
- name
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> | |
#define SIZE 10 | |
#define ANS 2 | |
int in(int i, const int *h){ | |
int c = SIZE; | |
while(c--){ | |
//printf("> %d\n", *h); | |
if(*h == i){ |
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> | |
void main(void){ | |
int c, i, s, f = 1; | |
scanf("%d", &c); | |
while(c--){ | |
printf("%d: \n> ", c); | |
scanf("%d", &i); | |
if(f){ |
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
{ | |
"foxmosa-title": "Foxmosa 小莎", | |
"moztw-name": "台灣社群", | |
"foxmosa-name": "狐耳摩莎", | |
"menu-download": "下載", | |
"menu-forum": "討論區", | |
"menu-events": "活動", | |
"menu-wiki": "共筆系統", | |
"menu-planet": "摩茲工寮", | |
"menu-contribute": "參與我們", |
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> | |
#include <stdlib.h> | |
int counter = 0; | |
int abs(int val){ | |
return val < 0? val * -1: val; | |
} | |
void draw(int * array, int size){ |
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
/*jslint browser: true, regexp: true, nomen: true */ | |
(function (win) { | |
'use strict'; | |
var AvlTreeNode, | |
AvlTree, | |
events = {}; | |
function max(a, b) { | |
a = a || 0; |
We can make this file beautiful and searchable if this error is corrected: It looks like row 2 should actually have 1 column, instead of 7 in line 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
"Dstat 0.7.2 CSV output" | |
"Author:","Dag Wieers <[email protected]>",,,,"URL:","http://dag.wieers.com/home-made/dstat/" | |
"Host:","poying-Lenovo-G470",,,,"User:","poying" | |
"Cmdline:","dstat --noheader --output systemstats.csv",,,,"Date:","07 Apr 2013 20:59:50 CST" | |
"total cpu usage",,,,,,"dsk/total",,"net/total",,"paging",,"system", | |
"usr","sys","idl","wai","hiq","siq","read","writ","recv","send","in","out","int","csw" | |
5.587,1.298,92.440,0.594,0.000,0.082,86255.898,37344.575,0.0,0.0,0.0,0.0,622.540,1860.083 | |
7.035,2.261,89.196,1.508,0.0,0.0,0.0,106496.0,60.0,0.0,0.0,0.0,558.0,1994.0 | |
8.376,1.015,90.609,0.0,0.0,0.0,0.0,0.0,60.0,0.0,0.0,0.0,607.0,2044.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
'use strict'; | |
var path = require('path'); | |
var express = require('express'); | |
function _merge(a, b) { | |
if (a && b) { | |
var i; | |
for (i in b) { | |
if (b.hasOwnProperty(i)) { |
OlderNewer