Archive for the Open Source Category

Why Windows Must Go Open Source?

Posted in Microsoft, Open Source on February 3, 2009 by ubducted

There are those who think Windows will move to an open source model.  Ha!  Fat Chance.  I am quite sure MS wants to move to a network based OS on a subscription based model.  They want to work towards the day when a computer is turned on and it connects to a server where the OS and software are housed. 

Furthermore, I shudder to think just how many more virii and malware there would be if the Windows code base was opened up.  Given that, I personally don’t think Windows should be allowed to consider going open source.

Make Professional Music for Free on Linux

Posted in Linux, Open Source, Software on December 24, 2008 by ubducted

Here is a nice introduction to producing professional music on Linux for free.

Microsoft trying hard to get your business – don’t be a sucker

Posted in Microsoft, Open Source, Software on December 22, 2008 by ubducted

I just read to separate articles that suggest Microsoft is trying hard to get people to buy from them and not turn to Open Source alternatives.

In the first article, Microsoft: The Walmart of Software states

At a time of economic uncertainty, Microsoft serves as a Wal-Mart of software, offering high-volume, low-cost products, a Microsoft executive said in an interview.

Robert Duffner, senior director of Platform and Open Source Strategy at Microsoft, says “We’re a good choice right now in this economic downturn.”

They would have you beleive that it paying for software somehow saves you money from the alternative, which is free of charge.

Then in a second article, Open Source Success due to Microsoft states

The success of open source software is now being driven by its rapid commercialisation and not simply its appeal to evangelistic developers, a new report has suggested.

The authors of Power, Speed and Assimilation: Open Source Changes the Industry, and the Industry Changes Open Source, a mini report from Saugatuck Technology, go as far as to suggest that it has been the involvement of large IT vendors, such as IBM and Microsoft, that has given open source its most important boost.

They also want you to believe that they are the ones behind Open Source.  They want the consumer to feel that Open Source is like a “Free for personal use” type of deal, while the better versions will cost $.

How sad you are, Microsoft, for taking the credit for other people’s hard work.  I’m disgusted.

MS engaging PHP community

Posted in Microsoft, Open Source on December 20, 2008 by ubducted

This just in,

Microsoft’s OSTC [Open Source Technology Center] is helping… [engage] the PHP community. In discussions with various Microsoft executives, …this work is not fully appreciated (yet) within Microsoft, but I suspect that Microsoft will come to significantly appreciate the work that its OSTC has been doing for it, both within the PHP community and in other open-source communities.

[Microsoft] can no longer afford to be an isolated, monolithic development ecosystem, especially as it races to catch up with the competition on the Web.

 

Image Magick Kicks Ass

Posted in Open Source, Software on December 9, 2008 by ubducted

I needed to convert a multipage PDF into a single jpeg image.  Even with Adobe Acrobat Pro I could not figure out how to do this.  It only exports the PDF into multiple jpeg images. 

But with those multiple jpeg images, it’s a snap to use ImageMagick to append them to eachother.

If you want to append images horizontally, use this command:

convert image1.jpg image2.jpg image3.jpg +append final.jpg

If you want to append them vertically, change the + to a – :

convert image1.jpg image2.jpg image3.jpg -append final.jpg

If you don’t have Adobe Acrobat Pro to export a PDF to multiple images, you can use the ImageMagick code:

C:\>convert -density 150 -quality 100 -resize 800x “C:\folder\file.pdf” “result.jpg”

(This command will produce files result-0.jpg result-1.jpg etc… for each PDF page)

You can also find these on my code snippet pages here and here.