-
It seems that Launchy 2.1.2 expands tilde (~) to %USERPROFILE% on Windows XP. I would prefer that ~ expands to %HOME%, which I have set to my cygwin home folder. This would allow quickly navigating through paths when I know I need to get something that isn't the catalog. Perhaps, like XP, Launchy should use %HOME% if it's defined, otherwise it should fall back to %USERPROFILE%.
2009-09-01 12:53:52 UTC in Launchy
-
If there's one time when I'm most impatient at waiting for my laptop to respond, it's when I wake it from hibernation. Launchy 2.0 alpha 9 spikes my CPU quite bit on wake, and that's causes some trouble with the fingerprint recognition and detecting the wireless network. Would it be feasible to throw in a minor Sleep() during the indexing to release some of the CPU?.
2007-10-28 16:17:55 UTC in Launchy
-
I added several debug print statements to getBookmarks() in order to track down the error I'm having. It seems that the database query returns an empty value. I'm not sure if it's due to the way I setup the tables or some other bug in the handling of the initial database.
File Added: bookmarkservice.php.
2007-01-27 18:18:28 UTC in Scuttle
-
I would like to use SQLite with Scuttle, but I'm not sure if I have properly created the database. I have attached my attempt, but for some reason this still does not work.
I did realize that to use sqlite requires specifying the full path to the database as the dbhost in config.inc.php. The dbport must be left blank. However, I get an error when services/bookmarkservice.php fails to get the...
2007-01-27 18:15:14 UTC in Scuttle
-
So has anyone else even attempted to use sqlite with Scuttle?.
2007-01-23 13:14:29 UTC in Scuttle
-
I got a little further. I had to modify sqlite.php in order to match the database filename, but I'm not sure if that created another problem. The getBookmarks() function fails. I first modified sql_connect to use the dbname:
$this->db_connect_id = ($this->persistency) ? @sqlite_popen($this->dbname, 0, $error) : @sqlite_open($this->dbname, 0, $error);
That at least let me know...
2007-01-05 16:11:03 UTC in Scuttle
-
I'm trying, but I haven't had much luck. I haven't been able to get it to work yet. I think I made the tables correctly, but I'm getting an error when I try to view the site:
Catchable fatal error: Object of class sql_db could not be converted to string in /Users/Shared/www/scuttle/functions.inc.php on line 157
CREATE TABLE sc_bookmarks (
bId int(11) NOT NULL PRIMARY KEY,
uId int(11...
2007-01-03 13:51:49 UTC in Scuttle
-
I would find this useful as well. ajaxGetTitle.php already fetches the URL in order to update the title, but it would be great to store the page content as well. This could add some level of protection and preservation after a page has been removed.
2007-01-02 13:20:55 UTC in Scuttle
-
I added the following line to my .emacs to avoid any future confusion on my end:
(define-key global-map [ns-drag-file] [ns-open-file])
2006-12-27 23:36:14 UTC in Emacs.app
-
Ah, I made the mistake of dragging and dropping an image file onto the Emacs window. That just brought up gibberish when Emacs opened it as binary data. That's what threw me off. Using C-x C-f worked fine, as did the graphviz-dot-mode once I fixed my paths. The file drag and drop inserted the image contents into the current buffer, and I misinterpreted that as an inability to read images.
2006-12-27 22:58:00 UTC in Emacs.app