R and the proxy server

R is a " a free software environment for statistical computing and graphics". Being a desktop software, R is working out-of-the-box, even if you don’t have a network connection. However, if you want to install packages using a repository on the internet, you need a network connection (of course). If your computer happens to be behind a proxy server, you have to slightly modify your shortcut (in MS-Windows) to allow R to download packages. This can be done by modifying the “Target” field in the “Shortcut” tab of the shortcut properties (right-click on the shortcut to R, select tab “Shortcut”, edit field “Target”): ...

March 29, 2011 · 2 min · jepoirrier

Installing Fedora 14 on a Toshiba Satellite L670-10K

No issue, installation even smoother than the installation of Fedora 13 on the same machine, last month.

November 10, 2010 · 1 min · jepoirrier

Installing Pwytter on Fedora 11

This morning, it was impossible to post tweets on Twitter so I finally gave in to install a Twitter client. Amongst many software available, Pwytter seemed interesting to try: free software, written in Python were my two criteria. Unfortunately, the installation process is not straightforward (although its use of the general python setup procedure). Here is how to install it on Fedora 11 from the command line: Download Pwytter, unzip it, enter directory pwytter-0.8 Install ImageTK: as root, type " yum install python-imaging-tk" ( in Fedora, ImageTK was renamed python-imaging-tk) Install simplejson: as root, type " yum install python-simplejson" (optional) launch: python setup.py build launch: python setup.py install Complete the installation by copying some files with the 4 lines below (type them as root too) ( a comment in pwytter blog helps to solve the pwCache installation bug): cp pwCache.py /usr/lib/python2.6/site-packages/pwytter-0.8-py2.6.egg cp pwCache.pyc /usr/lib/python2.6/site-packages/pwytter-0.8-py2.6.egg cp -r media/ /usr/lib/python2.6/site-packages/pwytter-0.8-py2.6.egg cp -r theme/ /usr/lib/python2.6/site-packages/pwytter-0.8-py2.6.egg Now you can launch pwytter from any user! In addition, since the source code is available and Identi.ca supports a Twitter-compatible API, let’s see if it’s easy to modify pwytter for Identi.ca :-) ...

August 8, 2009 · 1 min · jepoirrier