Programming Leftovers
-
OpenShift's oc debug and parallel execution
A colleague reported some issues in the OpenShift troubleshooting and diagnosis scripts at OpenShift-checks.
Some time ago I did contribute some changes to use functions and allow using the RISU wrapper to the scripts, helping consuming the results via RISU’s HTML interface.
As my colleague reported, for some plugins, the output of the command was not shown in the HTML Interface.
-
Stack Overflow CEO on how it became the world's most popular programming site
-
Alphabetical linting ..
This included examples of scanning comments above classes to ensure they referred to the appropriate object, ensuring that specific function calls always included a specific (optional) parameter, etc.
Nothing too complex, but I figured I'd give a new example this time, and I remembered I'd recently written a bunch of functions for an interpreter which I'd ordered quite deliberately.
-
Get kids creating webpages with HTML and CSS
With our new free ‘Introduction to web development’ path, young people are able to learn HTML and create their own webpages on topics that matter to them. The path is made up of six projects that show children and teenagers how to structure pages using HTML, and style them using CSS.
-
Good old-fashioned code optimization never goes out of style
Sometimes, making your Python data processing software faster doesn’t require libraries like NumPy or Pandas, or specialized techniques like vectorization. In fact, if you’re doing string processing, libraries like Pandas won’t help.
Pushing calculation down to a faster implementation is just one way to speed up software. Another way to get faster results is to remove code that is redundant, repetitive, superfluous, needless, or otherwise does unnecessary work. The fastest software, after all, is software that doesn’t run at all.
In short, sometimes all you need is some good old-fashioned speed optimization.
-
Elizabeth Mattijsen: Sequencing for the win!
This is the 6th and final part of the "Don't fear the grepper!" series.