public marks

PUBLIC MARKS from solrac with tags linux & app

February 2011

IBM and Obama help put Cold-Hard-Cash in Startups hands

You're a tireless Entrepreneur working long hard hours - you need cash to hire key hackers to finish your code and launch your awesome dream - If that sounds like you, then you should jump on this opportunity to get seed money from the White House-led Startup America campaign and IBM.

September 2010

Porting Perl To Python

Python programmers shouldn't get too smug. While many people agree that Python is designed in a way that makes it a highly readable language, there can still be problems with legacy, untested Python code too. Porting legacy Perl to Python can be a daunting task. In this article, learn some of the theory behind dealing with legacy code, including what not to do.

August 2010

Ubuntu Linux solution stack implementation Demos

Here is a 4 part demo series to show you how to implement a solution stack (Rational Application Developer, WebSphere Application Server, and DB2 Express-C) on Ubuntu Linux, as well as how to integrate them in a Java application.

July 2010

Quick Demo: Ubuntu Linux solution stack implementation

Learn how to download and install a Ubuntu image and then go through some basic shell commands to help you navigate through the Linux environment. This is part 1 of a 4 part demo series to show you how to implement a solution stack (Rational Application Developer, WebSphere Application Server, and DB2 Express-C) on Ubuntu Linux, as well as how to integrate them in a Java application.

Gourmet Java technology for Android applications

Java language is the tool of choice for Android developers. The Android runtime uses its own virtual machine, Dalvik, which is not the usual Java virtual machine that most Java developers are used to. In this article you will learn advanced Java features and how they are implemented on Android. This includes features such as concurrency, networking, and database access.

Migrate your Linux application to the Amazon cloud

Cloud computing and Infrastructure as a Service (IaaS) are well documented, but what's often not discussed is how to get a running Linux application into a cloud computing environment. Discover how to move an application into the cloud and take advantages of the features this setup has to offer.

April 2010

Open source software is no longer just for alpha-geeks

This article humbley attempts to convince you that open source software is a solution for some subset of problems and that some of your problems most likely exist within that subset. See how open source is a flexible, usable approach to efficiency in your work environment.

Kernel APIs, Part 3: Timers and lists in the 2.6 kernel

The Linux® kernel includes a variety of APIs intended to help developers build simpler and more efficient driver and kernel applications. Two of the more common APIs that can be used for work deferral are the list management and timer APIs. Discover these APIs, and learn how to develop kernel applications with timers and lists.

Kernel APIs, Part 2: Deferrable functions, kernel tasklets, and work queues

For high-frequency threaded operations, the Linux® kernel provides tasklets and work queues. Tasklets and work queues implement deferrable functionality and replace the older bottom-half mechanism for drivers. This article explores the use of tasklets and work queues in the kernel and shows you how to build deferrable functions with these APIs.

Kernel APIs, Part 1: Invoking user-space applications from the kernel

The Linux® system call interface permits user-space applications to invoke functionality in the kernel, but what about invoking user-space applications from the kernel? Explore the usermode-helper API, and learn how to invoke user-space applications and manipulate their output.