Blogs1 - 10 of 12,007 recent posts for tag:"python"
05
Jul
2009
Nの階乗(再帰処理)  

1 hour ago by etekko

Pythonで簡単な再帰処理を書いてみました。 引数に渡した値Nの階乗を求めます。 # -*- coding: utf-8 -*- import sys def factorial(n): if n == 0: return 1 else: return n*factorial(n-1) def main(): n = sys.argv[1] print 'N no kaijo: ', n print n, 'no kaijo: ',factorial(int(n)) if __name__=='__main__': main()

CHIBILOG - etemonkey.com/chibilog

04
Jul
2009
Richards benchmark  

3 hours ago by leonardo

This old post of mine is about virtual methods and devirtualizations: http://leonardo-m.livejournal.com/76547.html I have performed more benchmarks about virtual methods and its costs with LDC. I have used a little well known benchmark, the Richards one. I have used the code from here (on the Web Ar ...

leonardo - leonardo-m.livejournal.com · 8 references

UI Builder 0.3b WIP  

4 hours ago by Neill

Подготавливаю новую версию редактора интерфейсов. Функционал был существенно расширен. Теперь кроме регионов появились еще и сами визуальные компоненты и события. Добавлена возможность тестового просмотра разрабатывамой тулзы.

... - neill3d.com

Birth  

4 hours ago by Max Millionare

Monty Python’s Meaning of Life www.amazon.com … Monty Python Graham Chapman John Cleese Terry Gilliam Eric Idle Jones Michael Palin Meaning of Life yt:crop=16:9

4 BILLION NET - 4billion.net

Project Euler Problem 125 Solution  

6 hours ago by admin

Problem Description The palindromic number 595 is interesting because it can be written as the sum of consecutive squares: 6 2 + 7 2 + 8 2 + 9 2 + 10 2 + 11 2 + 12 2. There are exactly eleven palindromes below one-thousand that can be written as consecutive square sums, and the sum of these palindro ...

Dreamshire - blog.dreamshire.com

Python URLGrabber: Ignore System Proxy Settings  

7 hours ago by David Andrzejewski

The Duke URLGrabber package for Python makes it incredibly easy to retrieve files from remote servers, and it abstracts urllib2 for you in a protocol-independent way, so you can focus on your application instead of spending time working with Python’s built-in urllib2. On Windows and Mac OSX, by defa ...

David Andrzejewski - davidandrzejewski.com · 1 reference

[Tuto] Nginx et Django : serveur de production Python  

8 hours ago by Maxime

Après PHP et Ruby On Rails sur Nginx, on s’attaque maintenant au Python et a son formidable framework qu’est Django. Et je peux vous le dire tout de suite, un serveur comme Nginx avec la stabilité de Python font qu’avec ces technologies vous pouvez aller loin, très loin niveau performance ! Pour inf ...

Maxime Gaillard - maximegaillard.com · 48 references

Bluezone and openIPAM  

8 hours ago by admin

Duct-tape and bubblegum networking In August 2008, Utah State University flipped the switch on new infrastructure that completely and radically changed the way that USU’s network had been run for decades. The original was a classic legacy system—archaic, unmaintainable, and unintuitive systems that ...

Mike Fotinakis's Portfolio - fotinakis.com/portfolio

Running Pylons with NGINX - Pylons Cookbook - PythonWeb  

9 hours ago by mbo

bm.doomicile.de - bm.doomicile.de/tags

Python 英文母轉為摩斯密碼  

9 hours ago by Zeuxis

寫了個小玩意,不過也只是簡單的一個版本. 所以沒有寫註解,應該也不難懂,主要針對字母,而不是對整組文字. 或者這個日後再來改善..又一個小小玩意.. """ Author : Zeuxis Lo 傻心-窮等人家 Pub-Date: 2009-07-05 00:14 How To Use: ------------ python morse.py I L O V E U """ import sys morseCode = { ' A ' : " .- " , ' B ' : " -... " , ' C ' : " -.-. " , ' D ' : " -.. " , ' E ' : " . ...

SeekStudio - studio.zeuik.com/wordpress · 2 references

Previous1234567