tryexceptpass: Yes, I was made aware of remi after my first article.
I think it’s great to see that other folks have gone down a similar path… I’m mostly doing this as an exercise in working with websockets…Continue reading on Medium »
View Articletryexceptpass: I’ve seen flexx, but I want to try to do it in native Python...
Continue reading on Medium »
View Articletryexceptpass: Great! Glad to hear I inspired some creativity!!!
I’ll be posting some project links soon so folks can start contributing if interested.Continue reading on Medium »
View ArticleGlyph Lefkowitz: Don’t Trust Sourceforge, Ever
If you use a computer and you use the Internet, chances are you’ll eventually find some software that, for whatever reason, is still hosted on Sourceforge. In case you’re not familiar with it,...
View ArticleSimon: udatetime a fast RFC3339 compliant date-time Python library
Working with date-time formats can be pretty upsetting because of the variate of different formats people can come up with. date-times are used everywhere not just only logging or meta data in database...
View Articleبايثون العربي: مقدمة لمكتبة urllip
إن وحدة urllip في بايثون 3 عبارة عن عن محموعة من الوحدات التي يمكننا إستخدامها للتعامل مع الروابط ، وإذا كنت قادم من بايثون 2 ستجد أن بايثون 2 لديها urllip و urllip2 أما في بايثون 3 أصبحوا عبارة عن...
View ArticleJamal Moir: [Video Series] Taking Your Python Skills to the Next Level With...
This is the second post in a series covering Pythonic code written by Michael Kennedy of Talk Python To Me. Be sure to catch the whole series with 5 powerful Pythonic recommendations and over 45...
View ArticleBrian Okken: 20: Talk Python To Me host Michael Kennedy
I talk with Michael about: Episodes of his show having to do with testing. His transition from employee to podcst host and online training entrepreneur. His Python training courses. The Pyramid Web...
View ArticleFull Stack Python: Python for Entrepreneurs
Python for Entrepreneurs is a new video course by the creators of Talk Python to Me and Full Stack Python.We are creating this course and running a Kickstarter for it based on feedback that it's still...
View ArticleWeekly Python StackOverflow Report: (xxx) stackoverflow python report
These are the ten most rated questions at Stack Overflow last week.Between brackets: [question score / answers count]Build date: 2016-07-30 09:25:51 GMTrounding errors in Python floor division -...
View ArticleDavy Wybiral: WebGL terrain tutorial
Today I put together a quick tutorial on how to build a 3d terrain in Javascript, from setting up three.js to loading a heightmap and texture. More will be added later (controls and collision).Each...
View ArticlePodcast.__init__: Episode 68 - Test Engineering with Cris Medina
SummaryWe all know that testing is an important part of software and systems development. The problem is that as our systems and applications grow, the amount of testing necessary increases at an...
View Articletryexceptpass: Engineering the Tests that Matter
Going beyond the checkboxContinue reading on Medium »
View ArticleItamar Turner Trauring: Write test doubles you can trust using verified fakes
When you're writing tests for your code you often encounter some complex object that impedes your testing. Let's say some of you code uses a client library to talk to Twitter's API. You don't want your...
View ArticleHynek Schlawack: Testing & Packaging
How to ensure that your tests run code that you think they are running, and how to measure your coverage over multiple tox runs (in parallel!).
View ArticleWeekly Python Chat: Python Code Style
Are you concerned about code readability but your team argues too much about code style? Join this chat to discuss Python code style norms, line wrapping, naming things, explicit code style guides, and...
View ArticleGraeme Cross: PyCon AU 2016 runs (not sprints)
PyCon AU 2016 starts next week for five days of mini-confs, the main conference and two days of sprints.With all that sitting around, we want you to pack your running gear and join us for a run each...
View ArticleGraham Dumpleton: Testing out deployment of Python based Opal health care...
When I was working on mod_wsgi, but also in a previous job where I was working on web application performance monitoring tools, I was always after good sample Python web applications to test with....
View ArticleKrzysztof Żuraw: Design by contract in python- part three
I covered py.contracts and zope.interface, now it's time to write about abc module from python standard library.I wanted to write about another library dpcontrancts, but unfortunately, I wasn't able to...
View ArticleThomas Guest: Negative Sequence Indices in Python
Supply a negative index when accessing a sequence and Python counts back from the end. So, for example, my_list[-2] is the penultimate element of my_list, which is much better than...
View Article