Wednesday, October 05, 2011

Using the Places module (or Gadget) in e17 or enlightenment

Apparently the new version of the enlightenment window manager (called e17 as of now) trys to use udisks instead of hal. But some of the modules, such as Places, have not been updated to use udisks yet.

So, if you load the "Places" module, and then add the Places gadget to, say, your bottom shelf in enlightenment, it may look something like this:So it just shows a blank grey area with no Gadget in it. Not to mention that if you plug a usb device in, the Places module will not detect it. So in order to fix this, I did this:

Solution

1) installed the hal daemon from here.
a) if you are using archlinux,
first install cower from the AUR, and then ...
b) cower -d -d hal-git
c) make dependencies first if needed
I only needed hal-info I think
d) cd hal-git
d) makepkg -s
e) sudo pacman -U hal-git-someDateYouBuiltIt-1-x86_64.pkg.tar.xz
2) Then start the hal daemon
For archlinux users, probably # /etc/rc.d/hal start
3) removed the old Places gadget from my shelf
right click the Places gadget
(which is just a blank area) -> Gedget Places -> Remove
4) unloaded the Places module
left click desktop -> settings -> modules -> Places -> unload
5) restarted enlightenment
left click desktop -> enlightenment -> restart
6) reloaded the Places module
left click desktop -> settings -> modules -> Places -> load
7) added the Places gadget to my shelf
left click shelf -> settings -> gadgets -> Places -> add gadget
8) plugged in a usb camera ...
watched it appear as a new device on the shelf ...
inside the Places gadget ... Yay!
9) Right Click Places -> Gadget Places -> Move to -> Desktop

My Places gadget on the desktop now looks like this with a camera plugged into a usb port:
And when I click on it, it opens a file manager, and shows me the files on my camera ... imagine that. Hope this blog post helps get the Places module working on your desktop.

Tuesday, May 10, 2011

The day of the cross

a similar lunar eclipseThis is an update to my earlier post on this subject. You can download Celestia and see what happened on April 3 of 33 A.D. for yourself with this handy little celestia script. Just save the script to your desktop, launch Celestia, and click File, Open Script, and select the file you downloaded. It appears that this script needed some adjustments for the newest version of Celestia 1.6.0.

Enjoy.

P.S. If anyone knows from the change logs, which revision it was in Celestia which caused this script to need adjustment, please let me know. Thanks.

Tuesday, May 03, 2011

Flex Jam Orlando 2011


Flex Jam with Greg Wilson, James Ward, and Holly Schinsky .... jamesward.com
gregsramblings.com
devgirl.org

Errors: unable to open 'C:\Documents and Settings\geek\Adobe Flash Builder 4.5\TourDeMobileFlex\libs

Description Resource Path Location Type
unable to open 'C:\Documents and Settings\geek\Adobe Flash Builder 4.5\TourDeMobileFlex\libs' TourDeMobileFlex Unknown Flex Problem
Do not worry about this ...

Right click "TourDeMobileFlex" -> New -> Folder
Then just type "libs" in for the Folder name, and click Finish.

Hope that helps.

error: SSL certificate problem, verify that the CA cert is OK.

$ git clone https://github.com/someguy/hisApp.git
Cloning into hisApp ...
error: SSL certificate problem, verify that the CA cert is OK. Details:
error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed while accessing https://github.com/someguy/hisApp.git/info/refs

fatal: HTTP request failed
If this happens to you ... no problem.  Here is a solution:
$ env GIT_SSL_NO_VERIFY=true git clone https://github.com/someguy/hisApp.git
Hope that helps.