You are currently browsing the Random Musings weblog archives for June, 2010.
10. June 2010 by admin.
gnuplot is a great open cross platform data visualization application, that beats just about every other graphing application hands down specially with large volumes of data. I use gnuplot on a daily basis to analyze application and systems performance data on my linux and windows machines. I was hoping there would be an OSX binary ready for me to download and use (wishful thinking). In order to build gnuplot on OSX from source, you will need to do the following
—x from miscdebris.net x—
1 |
export PATH=/Library/Frameworks/GTK+.framework/Resources/bin:$PATH |
pkg-config cairo --libs works.Then download Gnuplot 4.4.0, untar, configure and compile it:
tar xzf gnuplot-4.4.0.tar.gzcd gnuplot-4.4.0mkdir build && cd build../configure --with-readline=bsd --disable-wxwidgets. In the configure output you should find something like
wxt terminal: no (requires C++, wxWidgets>2.6, cairo>0.9, pango>1.10) cairo-based pdf and png terminals: yes
makesudo make installPosted in gnuplot, open source, OSX | No Comments »
3. June 2010 by admin.
One day out of the blue, Firefox SSL stopped working on OSX. OSX very helpfully prompted me with the message that I should fix the issue and relaunch the application. Reinstalling Firefox did not resolve the issue. I ended up deleting my Firefox profile under ~/Library/Application Support/Firefox. This resolved the issue, however I lost all the addins that I had installed in Firefox.After reinstalling all the addins, i made a backup of my Firefox profile, so that in the future if the SSL issue should reoccur I can simply switch to the backup profile without losing any of my addins!
Posted in Fail, SSL, Firefox, OSX | No Comments »
2. June 2010 by admin.
One of my pet peeves is the lack of a good note taking app, that works across platforms (Linux, Windows, OSX). I want to be able to write notes on whatever OS I happen to be using at the moment and then pull it up from another and from a browser and from my phone and so on. Notesync is an AIR app that works on Linux, Windows, OSX and uses Google Docs to store the notes (and so works from a browser on my computer or iphone too). It only supports simple text notes, but you will soon find yourself wondering how you got along without this app (specially if you use multiple computers and operating systems).
Posted in X Platform, Windows, Linux, Cloud, OSX | No Comments »
1. June 2010 by admin.
Having spent several hours on this, I think its appropriate that the first blog post should be about 1&1 .htaccess setup. The .htaccess,password file and group file configuration is standard as described here, however the catch is that the home directory is in fact the “htdocs” directory under the “Document Root” specified in the 1&1 control panel under Domain data.
If the Document root specified under the Domain data is /homepages/XX/XXXXX and the password/group files are in a directory called private in your root directory, then .htaccess needs to use the paths as specified below.
AuthUserFile /homepages/XX/XXXXX/htdocs/private/password.file
AuthGroupFile /homepages/XX/XXXXX/htdocs/private/groups.file
Also its a good idea to create a .htaccess file as below and place it in the private directory above
Order Deny,Allow
Deny from all
Posted in 1&1 | No Comments »