PortScan, a simple port scanning command line utility written in python: https://www.reddit.com/r/Python/comments/9wkkfu/portscan_a_simple_port_scanning_command_line/
reddit
r/Python - PortScan, a simple port scanning command line utility written in python
1 vote and 0 comments so far on Reddit
Scanning name off shipping label from picture taken on ipad: https://www.reddit.com/r/Python/comments/9wl2jb/scanning_name_off_shipping_label_from_picture/
reddit
r/Python - Scanning name off shipping label from picture taken on ipad
1 vote and 0 comments so far on Reddit
Computational linguistics library to interface with CoNLL files: pyconll: https://www.reddit.com/r/Python/comments/9wlkfe/computational_linguistics_library_to_interface/
reddit
r/Python - Computational linguistics library to interface with CoNLL files: pyconll
1 vote and 0 comments so far on Reddit
Is this kind of meta-programming fraught with danger? If so, why?: https://www.reddit.com/r/Python/comments/9wmafh/is_this_kind_of_metaprogramming_fraught_with/
reddit
r/Python - Is this kind of meta-programming fraught with danger? If so, why?
2 votes and 0 comments so far on Reddit
Using xtensor ("C NumPy") for High Speed code in Python, Julia and R: https://www.reddit.com/r/Python/comments/9wneij/using_xtensor_c_numpy_for_high_speed_code_in/
reddit
r/Python - Using xtensor ("C++ NumPy") for High Speed code in Python, Julia and R
4 votes and 0 comments so far on Reddit
Low-cost webcam accurate eye tracking(gaze estimation) in Python (x-post from /r/computervision): https://www.reddit.com/r/Python/comments/9wo523/lowcost_webcam_accurate_eye_trackinggaze/
reddit
r/Python - Low-cost webcam accurate eye tracking(gaze estimation) in Python (x-post from /r/computervision)
115 votes and 13 comments so far on Reddit
Stateful LSTM and stream predictions: https://stackoverflow.com/questions/53190253/stateful-lstm-and-stream-predictions
Stack Overflow
Stateful LSTM and stream predictions
I've trained an LSTM model (built with Keras and TF) on multiple batches of 7 samples with 3 features each, with a shape the like below sample (numbers below are just placeholders for the purpose of
Is it possible to combine magics in IPython / Jupyter?: https://stackoverflow.com/questions/53204167/is-it-possible-to-combine-magics-in-ipython-jupyter
Stack Overflow
Is it possible to combine magics in IPython / Jupyter?
Sometimes you want to use several magics at the same time. Now I know you can use
%%time
%%bash
ls
But when I make my own commands this chaining doesn't work...
from IPython.core.magic import
%%time
%%bash
ls
But when I make my own commands this chaining doesn't work...
from IPython.core.magic import
Can I find out the allocation request that caused my Python MemoryError?: https://stackoverflow.com/questions/52424543/can-i-find-out-the-allocation-request-that-caused-my-python-memoryerror
Stack Overflow
Can I find out the allocation request that caused my Python MemoryError?
Context
My small Python script uses a library to work on some relatively large data. The standard algorithm for this task is a dynamic programming algorithm, so presumably the library "under the h...
My small Python script uses a library to work on some relatively large data. The standard algorithm for this task is a dynamic programming algorithm, so presumably the library "under the h...
Check out now how candidate elimination algorithm works with the python: https://www.reddit.com/r/Python/comments/9wp5gs/check_out_now_how_candidate_elimination_algorithm/
reddit
r/Python - Check out now how candidate elimination algorithm works with the python
1 vote and 0 comments so far on Reddit
gitSlack: New received user events on GitHub (user activity feed) posted on Slack: https://www.reddit.com/r/Python/comments/9wpcux/gitslack_new_received_user_events_on_github_user/
reddit
gitSlack: New received user events on GitHub (user... • r/Python
1 points and 0 comments so far on reddit
Handling multiple exceptions in functions: https://stackoverflow.com/questions/53250543/handling-multiple-exceptions-in-functions
Stack Overflow
Handling multiple exceptions in functions
I have a tiny web-server written in Python 3 using http.server which calls the function translate() in method do_GET() like this:
class httpd(BaseHTTPRequestHandler):
def do_GET(self):
...
class httpd(BaseHTTPRequestHandler):
def do_GET(self):
...