News aggregator

An Introduction to Application Development with Catalyst and Perl

Linux Journal - Mon, 2012-05-14 10:39

Catalyst is the latest in the evolution of open-source Web development frameworks. Written in modern Perl and inspired by many of the projects that came before it, including Ruby on Rails, Catalyst is elegant, powerful and refined. It's a great choice for creating any Web-based application from the simple to the very complex. more>>


Cryptocurrency: Your Total Cost Is 01001010010

Linux Journal - Wed, 2012-05-09 09:55

Most people have heard of gold. Most people are familiar with dollars. For a handful of geeky folks, however, the currency they hope will become a global standard is digital. Whether it's a problem or not, the currency you use on a day-to-day basis is tied to the government. more>>


HTML5 for Audio Applications

Linux Journal - Mon, 2012-05-07 15:16

HTML5 lets you play music through compliant browsers—no "cloud" required. more>>


May 2012 Issue of Linux Journal: Programming

Linux Journal - Wed, 2012-05-02 11:22
Rubies, Pythons and Perls!

It may sound like a new Indiana Jones movie or possibly a cheesy platform-style video game from the 1990s, but the title of this column actually refers to our focus this month—programming! Not that there's anything wrong with daring adventures in remote locations, it's just that all the red tape can be overwhelming. more>>


Three Ways to Web Server Concurrency

Linux Journal - Tue, 2012-05-01 15:56

Multiprocessing, multithreading and evented I/O: the trade-offs in Web servers.

A Web server needs to support concurrency. The server should service clients in a timely, fair manner to ensure that no client starves because some other client causes the server to hang. Multiprocessing and multithreading, and hybrids of these, are traditional ways to achieve concurrency. Node.js represents another way, one based on system libraries for asynchronous I/O, such as epoll (Linux) and kqueue (FreeBSD). To highlight the trade-offs among the approaches, I have three echo servers written in close-to-the-metal C: a forking_server, a threading_server and a polling_server. more>>


Tales From the Server Room: Zoning Out

Linux Journal - Wed, 2012-04-25 13:55

Sometimes events and equipment conspire against you and your team to cause a problem. Occasionally, however, it's lack of understanding or foresight that can turn around and bite you. Unfortunately, this is a tale of where we failed to spot all the possible things that might go wrong. more>>


Mercurial - Revision Control Approximated

Linux Journal - Tue, 2012-04-24 11:17

A short while ago, an article appeared in Linux Journal implying Git was the be-all and end-all of source code revision control systems ("Git—Revision Control Perfected" by Henry Van Styn, August 2011). more>>


New Products

Linux Journal - Fri, 2012-04-20 12:58

 New products for April.


Science the GNU Way, Part I

Linux Journal - Tue, 2012-04-17 14:37

In my past several articles, I've looked at various packages to do all kinds of science. Sometimes, however, there just isn't a tool to solve a particular problem. That's the great thing about science. There is always something new to discover and study. But, this means it's up to you to develop the software tools you need to do your analysis. more>>


Complexity, Uptime and the End of the World

Linux Journal - Mon, 2012-04-16 13:52

Poorly implemented monitoring systems can drive an administrator crazy. At best, they are distracting. At worst, they'll keep whoever is on pager duty up for nights at a time. This article discusses the best practices for designing systems that will keep your systems up and stay quiet when nothing is wrong. more>>


Blue Drop Awards Celebrate Achievements in Open Source Web Development

Linux Journal - Wed, 2012-04-11 13:22

The first ever Blue Drop Awards for excellence in Drupal development were announced yesterday. Organized and led by Ben Finklea of Volacci, the awards were both a community effort to celebrate the great work of Drupal Developers, and also a vehicle for Drupal and open source evangelism. more>>


MariaDB/MySQL, PostgreSQL and SQLite3 - Comparing Command-Line Interfaces

Linux Journal - Wed, 2012-04-11 10:12

Don't be afraid of using your chosen database's command-line client. more>>


Non-Linux FOSS: TrueCrypt

Linux Journal - Mon, 2012-04-09 13:30

TrueCrypt is a fully open-source tool for encrypting data. That data can be on a completely encrypted hard drive, or just an encrypted image file. Thankfully, the encryption works the same regardless of your platform, so Windows and OS X users can share encrypted files between computers. more>>


Hack and /: Automatically Lock Your Computer

Linux Journal - Thu, 2012-04-05 08:40

If you've ever worked with pranksters, you've probably come across this classic office prank. First, the unsuspecting victim leaves his computer and goes to lunch or a long meeting and doesn't lock his screen. The prankster then takes a screenshot of his current desktop, hides all the desktop icons and any taskbars, and sets the background to be the screenshot the prankster just took. more>>


Building an Ultra-Low-Power File Server with the Trim-Slice

Linux Journal - Mon, 2012-04-02 10:59

For the past several years, I've used a custom-built file server at my house. I've upgraded it many times, but it began life, as near as I can recall, in April 2000. When I say "upgraded", I mean the internals have been swapped completely on at least two occasions among other things. more>>


SSH Tunneling - Poor Techie's VPN

Linux Journal - Wed, 2012-03-28 13:02

"If we see light at the end of the tunnel, it is the light of the oncoming train" ~ Robert Lowell. Oh yes, another good quote. This post is on SSH tunneling, or as I like to call it 'Poor Man's VPN'. Contrary to the sysadmin's popular belief, SSH tunneling actually can be very valuable use for both techies and home users. more>>


How many domains do you own/control personally and/or for your employer?

Linux Journal - Tue, 2012-03-27 15:26
1-5 54% (902 votes) 6-14 20% (334 votes) 15-49 12% (199 votes) 50-99 4% (66 votes) 100+ 11% (178 votes) Total votes: 1679


Roaming Media

Linux Journal - Tue, 2012-03-27 12:36

Portable music doesn't need to be restricted to headphones. Here's a step-by-step how-to on setting up a music system that follows you around the house like a puppy. more>>


Learning to Program the Arduino

Linux Journal - Mon, 2012-03-26 10:40

This article should acquaint you with basic Arduino programming and show you how to write programs that interact with objects in the real world. (A mandatory disclaimer: the last time I really studied electronics was way back in high school, so this article focuses more on the programming aspects, rather than the electronic side of things.) more>>


Work the Shell - What Day Is That Date in the Past?

Linux Journal - Wed, 2012-03-21 12:27

In a previous article, we started a script that worked backward from a day and month date and figured out the most recent year—including possibly the current year—that would match that date occurring on that particular day. more>>