Python

  • submit to reddit
The Python Programming Language

Algorithm of the Week: Python vs. Ruby in the Knapsack Problem

The latest algorithm that we had to code in Algorithms 2 was the Knapsack problem which is as follows:The knapsack problem or rucksack...

0 replies - 5689 views - 02/26/13 by Mark Needham in Articles

ScaleBase Overview – Your complete scale out partner

ScaleBase Overview – Your complete scale out partner Watch the Video below to learn how to scale out your MySQL Database with ScaleBase. Cost-effectively...

0 replies - 312 views - 02/22/13 by Kelley Gemma in Uncategorized

DZone Links You Don't Want To Miss (2/7/13)

It's Better to Have Someone Else Copyedit Text, and It's Better to Have Others Test Your Code   Andrew Wulf shares wisdom about testing - it's not...

0 replies - 3131 views - 02/07/13 by Mitch Pronschinske in Articles

Algorithm of the Week: Bellman-Ford Algorithm in Python

The latest problem of the Algorithms 2 class required us to write an algorithm to calculate the shortest path between two nodes on a graph and one algorithm...

0 replies - 4142 views - 02/05/13 by Mark Needham in Articles

ActuateOne for OEMs

"Actuate BIRT’s (Business Intelligence and Reporting Tool) proven technology allows software companies to innovate, leapfrog the competition and meet...

0 replies - 347 views - 01/22/13 by Kelley Gemma in Uncategorized

Narcissus Prime in Python

I’ve been looking back on some of my blog posts that included Mathematica code to see whether I could rewrite them using Python. For example, I rewrote my...

0 replies - 1333 views - 01/18/13 by John Cook in Articles

Python Code CAN Connect to an Oracle Database.

Despite the beaming praise for the simplicity of the cx_Oracle project on their SourceForge page, I had trouble using the Python module to create a...

0 replies - 2254 views - 01/04/13 by Nick Watts in Articles

More Java and Python Support in Google App Engine 1.7.4

Last week, Google announced the last update for Google App Engine in 2012.  GAE 1.7.4 provides expanded EU support, as well as a new Maven plugin for Java...

0 replies - 2119 views - 12/18/12 by Eric Genesky in Articles

Weekly Poll: Sans JVM?

A few weeks ago, we asked which programming language you'd use if Java weren't an option. JVM languages, especially Scala and Groovy, were the overwhelming...

6 replies - 9178 views - 11/02/12 by Bill Armstrong in Articles

3 Tools for Making Your RaspberryPi Accessible

Problem: Public facing hostname/IP address for your Raspberry Pi. Solutions: Several solutions exist: PageKite: The one I am most familiar with. Coded in ...

0 replies - 2863 views - 10/16/12 by Amit Saha in Articles

Why Do Bad Things Happen to Good Code?

We need to understand what happens to code over time and why, and what a healthy, long-lived code base looks like. What architectural decisions have the...

1 replies - 9851 views - 10/15/12 by Jim Bird in Articles

Multi-Mechanize: An Open-Source Framework for Performance and Load Testing

I put together a slide-deck to help introduce Multi-Mechanize. I wanted something a little friendlier and easier to digest than "go read the...

0 replies - 3915 views - 10/11/12 by Corey Goldberg in Articles

Fizzbuzz Without Ifs in 90 Characters -- I'll Buy You a Beer if You Can Beat It

Yesterday I got nerd-sniped into solving the FizzBuzz problem without using if sentences. Fizzbuzz, no ifs: [{0: "fizzbuzz"}.get(x%(3*5), {0:...

9 replies - 5272 views - 09/20/12 by Swizec Teller in Articles

Through the Eyes of a Newbie

The wife is interested in learning programming so she has been doing the Code Academy JavaScript course. It’s incredible to observe a person...

0 replies - 1071 views - 09/19/12 by Rob Galanakis in Articles

Algorithm of the Week: Graph Breadth First Search

Since we already know how to represent graphs, we can go further for some very simple approaches of walking through them. Passing by all the vertices of a...

2 replies - 9720 views - 09/10/12 by Stoimen Popov in Articles