Fanatic Attack

26 January 2009

Great List of Open Courseware

Hey folks! We’re busy cruising the Web to find some great tools for you. We discovered this list of 101 Killer Open Courseware Projects from Around the World: Ivy League and Beyond. The list isn’t categorized, but it is alphabetized…so it’s fairly easy to browse through it to find something that may interest you.

What we liked about this list is that it basically covers all the colleges and universities that are creating open courseware projects. If you’re interested in a broad range of topics, you might try the MIT link…that university carries a large crop of interesting courses. Other schools, such as Brigham Young, offer free but limited courses in topics such as family history, family life and religious scripture study.

No matter which link you click on in that list, you’ll discover free tools that can help you slug through those real-time courses or that can help you decide what you’d like to study in the future. It’s ALL good.

13 January 2009

Worldlabel launches Blog – more Open Source

Filed under: News, Open Source — Tags: , , , — Russell @ 1:49 pm

It was just a matter of time. There is so much to talk about, so much to share.  I know that I need to use as many social media outlets as possible in order to succeed on the Web today, especially if you own a small business. So, I convinced my colleagues at Worldlabel.com that a blog was necessary!

our-blog.png

Labels are everywhere and we will talk about how and when to use them most effectively on the Worldlabel blog. The blog will also cover news and information about Open Source with a nod towards Openoffice.org,  free tools, productivity, how-to articles, reviews and downloads. We will try make your life easier, especially in the office – no matter if that office is in a cubicle or at home. I hope you visit Worldlabel Blog and subscribe to the feed (you’ll find the subscription box for the feed in the right column).

1 January 2009

Design Inspiration leads to Colorful Exhibition of Labels

Filed under: Art & Design, Open Source — Tags: , , , , — Russell @ 2:48 pm

The craziness all started one day when I took a color palette from Colourlovers.com and started designing geometric patterns only using the palette’s colors. This lead to some intricate designs and then to an idea to use these designs in label templates for an exhibition. We asked the folks on the ColourLovers forum if any one would be interested in creating designs as well. Several folks contributed and an exhibition with the collaboration from several folks began!

Colourlover's palette

From the Colourlovers Blog: The folks over at Worldlabel.com had an idea to create an easy way for people to create their own cd and address labels using palettes geometric patterns and color palettes, and asked the members here at COLOURlovers to contribute designs for an exhibition. Here’s the exhibit at Worldlabel: Personalized labels exhibit.

And, following are some of my own wild and crazy designs, just for inspiration:
(more…)

18 November 2008

Back up OpenOffice.org Documents on Amazon S3

Filed under: Open Source — Tags: , , — FA Editors @ 2:44 pm

When it comes to cheap and secure off-site backup and storage, few services can beat Amazon S3. And if you want to easily back up your OpenOffice.org documents on Amazon S3, you can do so using a simple OpenOffice.org Basic macro and the s3cmd utility (http://s3tools.logix.cz/s3cmd). First of all, you have to install the s3cmd tool on your system. Download the latest version of s3cmd, unpack it, switch to the resulting directory in the terminal, and run the python setup.py install command as root. Run then the s3cmd –configure command to configure the utility. Next, you have to create a so-called bucket — a repository on the Amazon S3 servers for storing your files and documents — using the s3cmd mb s3://BUCKET command, where BUCKET is a unique name for your bucket (e.g., d3b84nm_126d9sp5gg8). Once s3cmd is configured and ready to go, you start working on an OpenOffice.org macro that backs up the currently opened document on Amazon S3 via s3cmd. The macro starts with obtaining the currently active document and checking whether it has already been saved. The latter is required to obtain the path to the document:

ThisDoc=ThisComponent

If ThisDoc.hasLocation=False Then

MsgBox (”You have to save to document first!”, 16, “Attention!”) :End

End If

Next, the macro saves all unsaved changes in the document and obtains its path:

If ThisDoc.isModified Then

ThisDoc.storeAsURL(ThisDocURL, Args)

End If

DocPath=ConvertFromURL(ThisDoc.getURL())

To upload a file to Amazon S3, s3cmd uses the put command which has the following format:

s3cmd put /path/to/file s3://BUCKET

The path/to/file part refers to the file or document you want to upload, while BUCKET refers to a bucket on Amazon S3. So to construct the command that uploads the current OpenOffice.org document, the macro simply inserts the obtained DocPath value in a string which is then passed to the Shell routing:

PutCommand=”put ” & DocPath & ” s3://d3b84nm_126d9sp5gg8″

Shell(”s3cmd”, 1, PutCommand)

Here is the entire macro in all its beauty:

Sub AmazonS3Backup()

ThisDoc=ThisComponent

If ThisDoc.hasLocation=False Then

MsgBox (”You have to save to document first!”, 16, “Attention!”) :End

End If

If ThisDoc.isModified Then

ThisDoc.storeAsURL(ThisDocURL, Args)

End If

DocPath=ConvertFromURL(ThisDoc.getURL())

PutCommand=”put ” & DocPath & “s3:// d3b84nm_126d9sp5gg8″

Shell(”s3cmd”, 1, PutCommand)

End Sub

Being a Linux user, I tested this solution on Ubuntu and Sidux. If you had luck making it work on other platforms, share your experiences with other users in the comments area.

by Dmitri Popov of Nothickmanuals.info

Older Posts »

Powered by WordPress