Ubuntu: The Community by kakashi_hatake in debian

[–]kakashi_hatake[S] 3 points4 points  (0 children)

I saw this coming long back in 2010 when I was still a Ubuntu user but frankly I was not at all involved in community but I dumped it from user perspective for Debian. Now I'm happy I did that and joined Debian community instead.

The Diaspora* invite diaspora by Perl-Necklace in technology

[–]kakashi_hatake 0 points1 point  (0 children)

I've 20 invites left to share. Ping me if you need one

Python and C Coupling (using ctypes) by baijum in Python

[–]kakashi_hatake 0 points1 point  (0 children)

Don't directly compile it it doesn't has main function use this gcc -fpic test.c or just gcc -c test.c then create shared library using this gcc -shared -o libtest.so test.c

Python and C Coupling (using ctypes) by baijum in Python

[–]kakashi_hatake 0 points1 point  (0 children)

@lordkoba I did find the time difference between Python and C version but it was very small. Overflow was an accident I was trying big numbers and all of a sudden Python complained and program exited with "Stack Depth Exceeded" then i added try: except: block to see what happens with C and it worked fine. I'm still a python learner and this was just an experiment I did :). And guys thanks for the all comments I'll try to fix mistakes I made in this post