Browse by: Tags | Language | Country

Screenshot of

Luliban Blog

Tags: linux, python, gentoo, nba, anime

View Blog details
See all blogs tagged as python »


Recent Blog Posts

The Python I like - A string to integer converter
on Sep 18, 2005 in python The following function converts a sequence of bytes into an integer. It is endianness-sensitive: def ordn(big=1):    if big % 2:      def bordn(seq):        if len(seq) > 1: return ord(...



The Python I like - A CDR streams read method
on Sep 18, 2005 in python Here below a function decoding IIOP's CDR streams: def ACE_read(typeLength):    if typeLength:  # scalar (char:1, int:4, ...)      def sclRead(buf, index, big=1):        alignedIndex=...



The Python I like - a bit of functional programming
on Sep 18, 2005 in python To insert a white space before each uppercase letter within a string:     "".join([(i.isupper() and " "+i) or i for i in "PythonIsCool"]) or for the ones who like functional programming:     "".join(map(lambda x:(x.is...



Navigation
on Sep 19, 2005 in python mp3s free lj os x download shell [ Controls | login, my, new, edit, validate, tags, source, console ] [ Links | useless_python, netbsd, selfhtml, gonze ] To subscribe, enter your email:...



Python versus Java
on Aug 30, 2006 in Java Python java python Ever wondered why there are so many people that program in Python, although Java (along with .NET) is the main enterprise language ? You can find out in this post at bitworking.org. Joe talks about the things (technical term!) that Python has and Jav...



See all blog posts on python »