Showing entries 491 to 500 of 1339
« 10 Newer Entries | 10 Older Entries »
Displaying posts with tag: Linux (reset)
451 CAOS Links 2011.02.01

Hudson developers vote for Jenkins. SugarCRM turns cash flow positive. And more.

Follow 451 CAOS Links live @caostheory on Twitter and Identi.ca, and daily at Paper.li/caostheory
“Tracking the open source news wires, so you don’t have to.”

# The Hudson developer community voted overwhelmingly to rename the project Jenkins, and will continue without Oracle.

# SugarCRM turned cash flow positive in 2010 as billings increased 52% year on year.

# BonitaSoft announced the release of version 5.4 of Bonita Open Solution.

# WANdisco …

[Read more]
Moving a LAMP site

I’ve done this in the past, but thought this time I’ve got to take notes. It can be used as a crude check list in the future. Don’t underestimate the power of a practical, down-to-earth check list! Perhaps documents like this should be kept in a wiki page, for easy updating to avoid being stale, a proeblem with blog entries, it seems.

P in LAMP here stands for php, not Python or Perl. L is CentOS (I used CentOS 5.5) or Red Hat Linux. I am not covering moving all databases in a MySQL instance, just a select few or just one.

I’d appreciate your comments or suggestions.

Software install and configuration
MySQL:
MariaDB or Percona.

MariaDB can be had here.

For Percona server and client tools, it’s best to have direct access to Percona’s repository:

yum install gpg
rpm -Uhv …
[Read more]
451 CAOS Links 2011.01.25

VMware grows 41%. Evidence of Java infringement disputed. And more.

Follow 451 CAOS Links live @caostheory on Twitter and Identi.ca, and daily at Paper.li/caostheory
“Tracking the open source news wires, so you don’t have to.”

# VMware announced full year revenue growth of 41% to $2.9bn.

# Alleged evidence of infringing Java code in Android disputed.

# Oracle nominated SouJava, the Brazilian Java User Group, to a seat in the JCP Executive Committee.

# The Document Foundation launched LibreOffice 3.3. …

[Read more]
Simple Python: a job queue with threading

Every so often you need to use a queue to manage operations in an application. Python makes this very simple. Python also, as I’ve written about before, makes threading very easy to work with. So in this quick program I’ll describe via comments, how to make a simple queue where each job is processed by a thread. Integrating this code to read jobs from a mysql database would be trivial as well; simply replace the “jobs = [..." code with a database call to a row select query.

#!/usr/bin/env python
## DATE: 2011-01-20
## FILE: queue.py
## AUTHOR: Matt Reid
## WEBSITE: http://themattreid.com
from Queue import *
from threading import Thread, Lock

'''this function will process the items in the queue, in serial'''
def processor():
    if queue.empty() == True:
        print "the Queue is empty!"
        sys.exit(1)
    try:
        job = queue.get()
        print "I'm operating on job item: %s"%(job)
        queue.task_done()
    except:
        print …
[Read more]
451 CAOS Links 2011.01.18

Funding for OpenGamma. Riptano becomes OpenStax. And more.

Follow 451 CAOS Links live @caostheory on Twitter and Identi.ca, and daily at Paper.li/caostheory
“Tracking the open source news wires, so you don’t have to.”

# OpenGamma raised $6m series B funding.

# Apache Cassandra-supporter Riptano changed its name to DataStax and has added 50 customers in 6 months.

# WANdisco acquired the SVNForum.org Subversion user community.

# Univa hired the principal engineers from the Grid Engine team, will publish a …

[Read more]
Tech Messages | 2011-01-15

A special extended edition of Tech Messages for 2011-01-12 through 2011-01-15:

[Read more]
451 CAOS Links 2011.01.14

Bid for Novell patents still on. Google drops H.264. And more.

Follow 451 CAOS Links live @caostheory on Twitter and Identi.ca, and daily at Paper.li/caostheory
“Tracking the open source news wires, so you don’t have to.”

# The withdrawal of CPTN Holding proposal to acquire Novell’s patents is purely procedural, said Microsoft.

# Karsten Gerloff explained why the FSFE is concerned about the sale of Novell’s patents to CPTN.

# Google announced plans to support WebM and Theora in Chrome and Chromium, and drop H.264.

# Pentaho …

[Read more]
451 CAOS Links 2011.01.11

Black Duck acquires Olliance Group. Funding for Zend and PHP Flog. And more.

Follow 451 CAOS Links live @caostheory on Twitter and Identi.ca, and daily at Paper.li/caostheory
“Tracking the open source news wires, so you don’t have to.”

# Black Duck Software acquired Olliance Group.

# Viola Private Equity invested $7m in Zend Technologies.

# PHP Fog raised $1.8m from Madrona Venture Group, First Round Capital, Founder’s Co-op, and other angel investors.

# The proposal for CPTN Holdings to acquire Novell’s patents has …

[Read more]
Updated Drupal 7 appliances to version 7.0 final

Congratulations to the Drupal community for getting version 7.0 released! This is a major mile stone and an excellent reason to celebrate!

If you want to give Drupal 7 a try without having to install anything, I've now updated my Drupal 7 appliances on SuSE Studio to the latest release. The appliance is based on openSUSE Linux 11.3 and is available in two variants:

  • A text-mode only appliance to which you connect using your local web browser via the network.
  • A …
[Read more]
451 CAOS Links 2010.12.17

CPTN Holdings unmasked. Oracle updates MySQL. And more.

Follow 451 CAOS Links live @caostheory on Twitter and Identi.ca, and daily at Paper.li/caostheory
“Tracking the open source news wires, so you don’t have to.”

# Florian Mueller reported that the Novell patent acquiring CPTN Holdings is Microsoft, Apple, EMC and Oracle.

# The VAR Guy told the (previously) untold story of Novell’s sale to Attachmate.

# Attachmate committed to support the existing roadmaps and release schedules for Novell and SUSE products.

# Oracle …

[Read more]
Showing entries 491 to 500 of 1339
« 10 Newer Entries | 10 Older Entries »