05.07.10
Posted in Tools at 1:20 pm by cphoton
While organizing my downloads, sometimes I directly delete files directly in order to free up some space, skipping the recycle step. Now, in Windows 7 it happened to me that sometimes it screws up in determining which folder to delete when you have no file selected, and it deletes the entire folder instead!
After venting for a bit, I decided to search for a better way to recover files than using an unerase tool. Fortunately, if you have System Restore enabled, Windows stores a copy of the files you deleted, and by using a tool called System Restore Explorer, you may be able to recover the recently unerased files (I recovered them all)!
Permalink
| 1 views
04.09.10
Posted in Life, Mobile, Tools at 6:00 pm by cphoton
Hi All!
As you may have noticed, this year I am focusing on doing exercise more often, and I intend to run a Marathon this year. This is something I have always wanted to do, but never did due to lack of self-discipline… Now that my mother has passed away (she was killed in a car crash recently), I want to achieve this goal to remember her (she was an athlete when she was young) and as a means of self treatment as well (Forrest Gump, anyone?).
In order to track my progress, I have been using a program for Windows Mobile called Marathon. It logs GPS data fetched from the mobile device, and then it gives you a lot of information, like current and average speed, a preview of the track, distance ran, calories burned (estimated, of course). It also has a feature called Announcements, where it tells you this information on a specified interval (time or distance, take your pick). This is very nice, as I am used to listening to music while I run, and I don’t want to take the phone out of the arm band just to look at the information. You can also set a goal and it will tell you how far behind or ahead of it you are.

Once finished, you can save the activity, and share the information via the program’s website (example), tweet a summary of it, or export it (this is useful as you can import the data into Google Earth or tracking services like Runmap.net or Garmin Connect and then publish to Facebook from them).
The only issue I have found so far is that my Omnia sometimes gets very bad GPS reception and the results get a bit distorted, but I think this is something due to the device itself more than the program’s fault, though. So far, the only solution I have found is to get a better GPS receiver (and get the heart monitored along the way).
Lastly, Marathon comes in several languages, including Spanish! (I made the translations, BTW
). If you happen to know a language that Marathon does not support, you can do the translations in exchange for a free build (yes, it’s not free, but you can periodically download the latest beta bits, so it is not a big issue).
Permalink
| 9 views
11.14.08
Posted in Development, Subversion, Tools at 12:33 am by cphoton
Hi All, time for a technical post!
Today while I was setting up a Subversion 1.5 installation over Apache 2.2.10 on Windows, I was experiencing a strange difficulty. After making the necessary configuration details on httpd.conf and I tried running the server, everything went smoothly, however when I made it run as a service, it would not run and give the following error:
“Cannot load C:/../modules/mod_dav_svn.so into server: The specified module could not be found.”
Even though this module was at the right location. After googling for a while and reading the Subversion FAQ for this problem and another useful document, I tried all the suggestions but the problem would still persist. After a while of tinkering, I resolved it by copying the following libraries from the Subversion’s installation to the modules folder of Apache:
- intl3_svn.dll
- libdb44.dll
- libeay32.dll
- libsvn_client-1.dll
- libsvn_delta-1.dll
- libsvn_diff-1.dll
- libsvn_fs-1.dll
- libsvn_ra-1.dll
- libsvn_repos-1.dll
- libsvn_subr-1.dll
- libsvn_wc-1.dll
- ssleay32.dll
I hope this post helps those who are having problems with Subversion deployments.
It did not use to be like this in previous Subversion releases, usually after putting the *.so files on the modules entry on Apache and configuring httpd.conf it was enough to make it run…
Permalink
| 24 views