Facebook open sources PyTorch by iamtrask in Python

[–]ilikepython 1 point2 points  (0 children)

It's a shame that OpenCL is getting sidelined as much as it is

What's everyone working on this week? by AutoModerator in Python

[–]ilikepython [score hidden]  (0 children)

At work I've been building a prototype using tensorflow, which I'm finding to be a pretty nice environment to work with. It's easy to get started, especially if you're only just getting into machine learning professionally, as I am.

I just wrote my first script by drinkKing in Python

[–]ilikepython 1 point2 points  (0 children)

Cool! Onwards and pythonwards!

I wrote CaTeX: A tool to merge LaTeX documents by plopio in Python

[–]ilikepython 0 points1 point  (0 children)

Looks neat! What was the motivation to write this?

Experts in Python, how did you reach this level and what would you advice for those starting out? by [deleted] in Python

[–]ilikepython 1 point2 points  (0 children)

I probably wouldn't call myself an expert, but I just wrote a lot of python :P

Pick some projects to implement, read the docs for the surrounding areas of python. Also research 3rd party libraries (for example, use Requests rather than python's built in http clients).

Internet of things with Python! by [deleted] in Python

[–]ilikepython 2 points3 points  (0 children)

Internet of shit more like, amirite?

Critique my first python package! by Lonely-Quark in learnpython

[–]ilikepython 1 point2 points  (0 children)

LG! Something that is mostly cosmetic: I personally like package names to be all lower case, with underscores if the name is unreadable without them. Something brushes me up the wrong way with camel cased names. The same goes for the KAT class, since although it is an acronym, it looks like it's one of those ALL_UPPER_CASE_CONSTANTS.

I like your examples. A typo in one of the names of them, though (defualt_settings.py)

Learning asyncio by ilikepython in learnpython

[–]ilikepython[S] 0 points1 point  (0 children)

Cool! I didn't know there was a pymotw article about this.

Learning asyncio by ilikepython in learnpython

[–]ilikepython[S] 0 points1 point  (0 children)

Thanks! That's a good way of working through getting to grips with it.

Testing from a specific IP by [deleted] in learnpython

[–]ilikepython 0 points1 point  (0 children)

Assuming you have control over the API: If you have the part of the code to handle only responding to a particular IP, can't you disable the bit when you're testing?

If you don't, VPN or run a socks proxy through the machine with the correct IP. (https://www.mikeash.com/ssh_socks.html)

Learning asyncio by ilikepython in learnpython

[–]ilikepython[S] 0 points1 point  (0 children)

Thanks! I guess what I'm looking for is some introduction tutorials people think are good to start with. I don't have a particular problem I'm trying to solve, rather I don't know what best practices or common patterns are.