Doubling Performance in Swift with No Code Changes: https://www.reddit.com/r/Python/comments/4gwvhg/doubling_performance_in_swift_with_no_code_changes/
reddit
Doubling Performance in Swift with No Code Changes • /r/Python
1 points and 0 comments so far on reddit
Hello i need help with a code i have something very small wrong and i have no idea how to pinpoint it: https://www.reddit.com/r/Python/comments/4gx78u/hello_i_need_help_with_a_code_i_have_something/
reddit
Hello i need help with a code i have something very... • /r/Python
Here is the code http://pastebin.com/ZfH1w7Mc the error im having is that when i run it with (1,10) it should give me 0.84147 but is instead...
(Not homework) Access memory sectors in external HDD. I want to read in, sector by sector, the hex values inside the HDD. Is this possible?: https://www.reddit.com/r/Python/comments/4gxg9g/not_homework_access_memory_sectors_in_external/
reddit
(Not homework) Access memory sectors in external HDD.... • /r/Python
1 points and 0 comments so far on reddit
Trouble understanding assignment in python.: https://www.reddit.com/r/Python/comments/4gxqhd/trouble_understanding_assignment_in_python/
reddit
Trouble understanding assignment in python. • /r/Python
My first language was C, so I am having trouble understanding assignment in python. It seems to me that for some datatypes assignment creates a...
Barebones Faceswap: Find a face, and swap it - all 15 lines of code in the comments: https://www.reddit.com/r/Python/comments/4gxxuy/barebones_faceswap_find_a_face_and_swap_it_all_15/
reddit
Barebones Faceswap: Find a face, and swap it - all 15... • /r/Python
1 points and 1 comments so far on reddit
May have accidentally Apple's python... how do I confirm if this really happened?: https://www.reddit.com/r/Python/comments/4gy7ri/may_have_accidentally_apples_python_how_do_i/
reddit
May have accidentally Apple's python... how do I... • /r/Python
Was having trouble using pip in install Google's Tensorflow, and messed around with the Python environment too much. How do I check to make sure?
Anyone using dabeaz's "curio"? If so, how is it going?: https://www.reddit.com/r/Python/comments/4gyef0/anyone_using_dabeazs_curio_if_so_how_is_it_going/
reddit
Anyone using dabeaz's "curio"? If so, how is it going? • /r/Python
I know it's still experimental. I've been playing round with it over the last week or so, and kind of like what I see. I have a specific use case...
Best practices, IDE, metaclasses and you: https://www.reddit.com/r/Python/comments/4gygz8/best_practices_ide_metaclasses_and_you/
reddit
Best practices, IDE, metaclasses and you • /r/Python
Hello, My favorite IDE (PyCharm) is struggling (for legitimate reasons) with properties and method dynamically added by metaclasses. My...
Doubling Open Stack Swift performance with no code changes: https://www.reddit.com/r/Python/comments/4gygwb/doubling_open_stack_swift_performance_with_no/
reddit
Doubling Open Stack Swift performance with no code changes • /r/Python
2 points and 0 comments so far on reddit
Can somebody help me in understandin this code?: https://www.reddit.com/r/Python/comments/4gymke/can_somebody_help_me_in_understandin_this_code/
reddit
Can somebody help me in understandin this code? • /r/Python
Yesterday, I asked this question http://stackoverflow.com/questions/36917865/fetch-the-required-details-from-soap-xml-response over stackoverflow...
Parallelizing Queries with SQLAlchemy, Gevent, and PostgreSQL: https://www.reddit.com/r/Python/comments/4gysr1/parallelizing_queries_with_sqlalchemy_gevent_and/
reddit
Parallelizing Queries with SQLAlchemy, Gevent, and... • /r/Python
1 points and 0 comments so far on reddit
Libary for drawing logic diagrams: https://www.reddit.com/r/Python/comments/4gyvg0/libary_for_drawing_logic_diagrams/
reddit
Libary for drawing logic diagrams • /r/Python
I want to write a program that converts soem custom text into logic diagram in jpg or pdf. What are some good options that i can easy draw soem...
How to exclude fields from form created via PolymorphicChildModelAdmin: http://stackoverflow.com/questions/36867643/how-to-exclude-fields-from-form-created-via-polymorphicchildmodeladmin
Stackoverflow
How to exclude fields from form created via PolymorphicChildModelAdmin
Playing a little around with Polymorphic and additional plugins I'm wondering how I can prevent some of the base class fields from being showed inside form for child admin interface. Having this
I am collecting large quantities of data but finding it difficult to allow colleagues to view and analyse it. Help!: https://www.reddit.com/r/Python/comments/4gzj6a/i_am_collecting_large_quantities_of_data_but/
reddit
I am collecting large quantities of data but finding... • /r/Python
So I'm running lots of data collection routines and storing the information in databases. I spend quite a lot of time coding and testing the...
A Primer on Recommendation Systems ( a talk i gave at pydata Madrid 2016 :) ): https://www.reddit.com/r/Python/comments/4gzw4f/a_primer_on_recommendation_systems_a_talk_i_gave/
reddit
A Primer on Recommendation Systems ( a talk i gave at... • /r/Python
1 points and 0 comments so far on reddit
Best resource to quickly brush on general Python (Intended usage with NumPy): https://www.reddit.com/r/Python/comments/4gzww4/best_resource_to_quickly_brush_on_general_python/
reddit
Best resource to quickly brush on general Python... • /r/Python
Hi r/python, I am aware that there is learnpython, though I think a little less responsive then you guys here. I'm going to be doing a lot of...
Cooley-Tukey algorithm python out of range: http://stackoverflow.com/questions/36868702/cooley-tukey-algorithm-python-out-of-range
Stackoverflow
Cooley-Tukey algorithm python out of range
I am analyzing the complexity of an implementation of the Cooley-Tukey algorithm, written in Python (the code was taken from here):
def fft(x):
N = len(x)
print N, N//2
if N <= 1:
return x
...
def fft(x):
N = len(x)
print N, N//2
if N <= 1:
return x
...