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
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
#!/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
#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
>++++++++++>>>+>+[>>>+[-[<<<<<[+<<<<<]>>[[-]>[<<+>+>-]<[>+<-]<[>+<-[>+<-[> | |
+<-[>+<-[>+<-[>+<-[>+<-[>+<-[>+<-[>[-]>>>>+>+<<<<<<-[>+<-]]]]]]]]]]]>[<+>- | |
]+>>>>>]<<<<<[<<<<<]>>>>>>>[>>>>>]++[-<<<<<]>>>>>>-]+>>>>>]<[>++<-]<<<<[<[ | |
>+<-]<<<<]>>[->[-]++++++[<++++++++>-]>>>>]<<<<<[<[>+>+<<-]>.<<<<<]>.>>>>] |
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
Title: | |
Violent Python: Python in the dark side. | |
Types: | |
Lightening Talk (5 minutes) | |
Category: | |
System Admin | |
Description: |
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 urllib2 | |
import urlparse | |
import BeautifulSoup | |
import os | |
import re | |
def find_tags(url): | |
c = urllib2.urlopen(url).read() |
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
TITLE cosine calculator (main.asm) | |
;;======================================================== | |
;; Student Name: | |
;; Student ID: | |
;; Email: @cs.nctu.edu.tw | |
;;======================================================== | |
;; Instructor: Sai-Keung WONG | |
;; Email: [email protected] | |
;; Room: 706 |
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
Author: xatier <[email protected]> | |
Date: Sat Apr 6 01:16:34 2013 +0800 | |
-- | |
Author: xatier <[email protected]> | |
Date: Sat Apr 6 01:16:02 2013 +0800 | |
-- | |
Author: xatier <[email protected]> |
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/env perl | |
use 5.014; | |
use URI::Title; | |
say URI::Title::title('https://twitter.com/al3x/status/1039647490'); | |
use WWW::Mechanize; | |
my $mech = WWW::Mechanize->new(); | |
$mech->get('https://twitter.com/al3x/status/1039647490'); | |
say $mech->title; |