Meta
Archives
Categories
Category Archives: programming
Your Tech Skills Have a Two Year Half-Life
itwbennett writes “Eric Bloom, an IT leadership coach and former CIO, has answered that eternal question ‘does working on old software hurt your professional marketability’ with a somewhat surprising ‘no.’ But, Bloom adds, ‘a techie’s skill set from a… Continue reading
Your Tech Skills Have a Two Year Half-Life
itwbennett writes “Eric Bloom, an IT leadership coach and former CIO, has answered that eternal question ‘does working on old software hurt your professional marketability’ with a somewhat surprising ‘no.’ But, Bloom adds, ‘a techie’s skill set from a… Continue reading
Google To Introduce New Programming Language — Dart
An anonymous reader sends this excerpt from El Reg:
“Google has built a brand-new programming language for ‘structured web programming,’ one that appears to be suited to browser-based apps. Two of the search giant’s engineers will discuss Dart, Google’… Continue reading
Jenkins CI
(via Delicious/tsangal)
Posted in programming, syndicated
Tagged bookmark, continuousintegration, development, opensource, oss, syndicated
Comments Off
CoffeeScript
“CoffeeScript is a little language that compiles into JavaScript. Underneath all of those embarrassing braces and semicolons, JavaScript has always had a gorgeous object model at its heart. CoffeeScript is an attempt to expose the good parts of JavaScr… Continue reading
Posted in language, programming, syndicated
Tagged bookmark, compiler, javascript, syndicated
Comments Off
JavaScript Lint
“With JavaScript Lint, you can check all your JavaScript source code for common mistakes without actually running the script or opening the web page.” Continue reading
Posted in programming, syndicated
Tagged bookmark, development, javascript, lint, syndicated, tools
Comments Off
PyInstaller
“PyInstaller is a program that converts (packages) Python programs into stand-alone executables, under Windows, Linux, and Mac OS X. Its main advantages over similar tools are that PyInstaller works with any version of Python since 1.5, it builds small… Continue reading
Posted in programming, syndicated
Tagged bookmark, compiler, cross-platform, install, linux, python, scripting, syndicated, tools, windows
Comments Off
Clever Algorithms
The book "Clever Algorithms: Nature-Inspired Programming Recipes" by Jason Brownlee PhD describes 45 algorithms from the the field of Artificial Intelligence. All algorithm descriptions are complete and consistent to ensure that they are acce… Continue reading
Posted in programming, syndicated
Tagged ai, algorithms, artificialintelligence, bookmark, syndicated
Comments Off
Beautiful Soup
"You didn't write that awful page. You're just trying to get some data out of it. Right now, you don't really care what HTML is supposed to look like. Neither does this parser. " Continue reading
Posted in programming, syndicated, web
Tagged bookmark, html, parser, python, syndicated
Comments Off
Sage: Open Source Mathematics Software
Sage is a free open-source mathematics software system licensed under the GPL. It combines the power of many existing open-source packages into a common Python-based interface. Continue reading
Posted in math, programming, syndicated
Tagged bookmark, mathematics, opensource, oss, science, software, syndicated, tools
Comments Off
Diffuse
Diffuse is a small and simple text merge tool written in Python. With Diffuse, you can easily merge, edit, and review changes to your code. Diffuse is free software. Continue reading
Posted in programming, syndicated
Tagged bookmark, diff, opensource, oss, software, syndicated, tools
Comments Off
LINQ: .NET Language Integrated Query
(via Delicious/tsangal)
Posted in programming, reference, syndicated
Tagged .net, bookmark, C#, development, linq, Microsoft, msdn, syndicated
Comments Off
C# Portable Settings Provider
(via Delicious/tsangal)
Omaha Overview
The Omaha project provides a shared autoupdate and install system for Windows client products at Google that works on multiple Windows platforms, including Windows Vista. Continue reading
Posted in programming, syndicated
Tagged autoupdate, bookmark, google, syndicated, update, updater
Comments Off
Ideone.com | Online IDE & Debugging Tool
Ideone is something more than a pastebin; it's an online compiler and debugging tool which allows
to compile and run code online in more than 40 programming languages. Continue reading
Posted in programming, syndicated
Tagged bookmark, code, compiler, development, ide, online, pastebin, syndicated, tools
Comments Off
Ideone.com | Online IDE & Debugging Tool
Ideone is something more than a pastebin; it's an online compiler and debugging tool which allows
to compile and run code online in more than 40 programming languages. Continue reading
Posted in programming, syndicated
Tagged bookmark, code, compiler, development, ide, online, pastebin, syndicated, tools
Comments Off
Updates to setup projects
(via Delicious/tsangal)
Posted in programming, syndicated
Tagged .net, bookmark, deployment, development, installer, msi, setup, syndicated, visualstudio
Comments Off
Updates to setup projects
(via Delicious/tsangal)
Posted in programming, syndicated
Tagged .net, bookmark, deployment, development, installer, msi, setup, syndicated, visualstudio
Comments Off
How to Write an Equality Method in Java
Excellent article on how to avoid common pitfalls and preserve the contract of equals() when writing an equality method in Java. Class java.lang.Object defines an equals method, which subclasses may override. Unfortunately, it turns out that writing a correct equality … Continue reading