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
>++++++++++>>>+>+[>>>+[-[<<<<<[+<<<<<]>>[[-]>[<<+>+>-]<[>+<-]<[>+<-[>+<-[> | |
+<-[>+<-[>+<-[>+<-[>+<-[>+<-[>+<-[>[-]>>>>+>+<<<<<<-[>+<-]]]]]]]]]]]>[<+>- | |
]+>>>>>]<<<<<[<<<<<]>>>>>>>[>>>>>]++[-<<<<<]>>>>>>-]+>>>>>]<[>++<-]<<<<[<[ | |
>+<-]<<<<]>>[->[-]++++++[<++++++++>-]>>>>]<<<<<[<[>+>+<<-]>.<<<<<]>.>>>>] |
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 <stdio.h> | |
#include <string.h> | |
void eval (char *input) { | |
char mem_cell[5000], c; | |
memset(mem_cell, 0, sizeof(mem_cell)); | |
int in, in_ptr, loop; | |
char *ptr = mem_cell; |
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/python | |
import sys | |
def eval_(input_): | |
mem_cell = [0] * 5000 | |
c = '' | |
ptr = in_ptr = loop = 0 | |
while in_ptr < len(input_): |
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
R1 Yuren Ju: Unit testing, CI and Firefox OS | |
R2 fr3@k: Asynchronously C++ | |
======= | |
R1 Kenichi: typemap feature in Perl/XS | |
R2 wycc: 讓系統千變萬化的作業環境 | |
R1 Team Yamanekko: mruby develoment with Eclipse | |
R0 大貓:那些函數語言Tutorial沒教我的事 | |
R1 Mikimoto: 2013 年了還在搞輸入法? | |
R1 Richard lee: Using CocoaPods for Objective-C Library Management. |
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
作者: JokerCatz (JokerCatz) 看板: Soft_Job | |
標題: Re: [討論] 維護者、道德與安全 | |
時間: Wed Feb 20 10:52:05 2013 | |
A...首先抱歉其實不太會用BBS | |
"城邦網留言「囧」暱稱 熱心駭客獲緩起訴" | |
http://0rz.tw/LIDpl | |
我是這篇新聞的作者與被告劉先生 |
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
$ /bin/bash --version | |
GNU bash, version 3.2.48(1)-release (x86_64-apple-darwin12) | |
Copyright (C) 2007 Free Software Foundation, Inc. | |
$ /usr/bin/emacs__ --version | |
GNU Emacs 22.1.1 | |
Copyright (C) 2007 Free Software Foundation, Inc. | |
GNU Emacs comes with ABSOLUTELY NO WARRANTY. | |
You may redistribute copies of Emacs | |
under the terms of the GNU General Public License. |
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
anyasu:~ root# hugs | |
__ __ __ __ ____ ___ _________________________________________ | |
|| || || || || || ||__ Hugs 98: Based on the Haskell 98 standard | |
||___|| ||__|| ||__|| __|| Copyright (c) 1994-2005 | |
||---|| ___|| World Wide Web: http://haskell.org/hugs | |
|| || Bugs: http://hackage.haskell.org/trac/hugs | |
|| || Version: September 2006 _________________________________________ | |
Haskell 98 mode: Restart with command line option -98 to enable extensions |
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
anyasu:~ root# uname -a | |
Darwin anyasu 13.0.0 Darwin Kernel Version 13.0.0: Wed Oct 10 23:30:00 PDT 2012; root:xnu-2107.2.34~2/RELEASE_ARM_S5L8942X iPad2,5 arm P105AP Darwin | |
anyasu:~ root# cat hw.b | |
+++++ +++++ initialize counter (cell #0) to 10 | |
[ use loop to set the next four cells to 70/100/30/10 | |
> +++++ ++ add 7 to cell #1 | |
> +++++ +++++ add 10 to cell #2 | |
> +++ add 3 to cell #3 | |
> + add 1 to cell #4 | |
<<<< - decrement counter (cell #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
sub guess_anon_by_pid { | |
my $pid = shift; | |
my %pool; | |
my @rank = (); | |
my $response = $p->callAPI('/APP/Responses/get', plurk_id => $pid); | |
for my $f_list (keys $response->{friends}) { | |
my $fri = $p->callAPI('/APP/FriendsFans/getFriendsByOffset', user_id => $f_list, limit => 300); | |
for (@$fri) { | |
$pool{$_->{display_name}}++ if ($_->{display_name}); |
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
-- Empty module to serve as the default current module. | |
module Hugs where | |
-- 3 ----------------------------------------------------------------- | |
-- (a | |
-- 先前算過的 value 會記憶起來,後面要用的時候可以直接 reference 到他 | |
-- 8 + 0 = 8 | |
-- (b | |
-- 不會先記憶算過的 value,所以每次用到都要重新算過 |