search for: bookmarks

Displaying 20 results from an estimated 525 matches for "bookmarks".

Did you mean: bookmark
2006 Jan 15
1
Attributes of a relationship
Hi all, I have two types of models which I''m not sure how to model (or if it''s even feasible) with ActiveRecord. Let me know if you''ve got any good ideas. 1) For those of you who are familliar with del.icio.us, you probably know that you can bookmark a site, and add your own tags to it. Each person has their own tags for a site, even though multiple people can
2006 Jan 23
2
del.icio.us-like output
I''m trying to build a page similar to a delicious page that is a listing of your bookmarks in this format: 1. Querying serialized data in ActiveRecord<http://www.karmiccoding.com/articles/2005/11/29/querying-serialized-data-in-activerecord> Hack to search serialized fields to rails <http://del.icio.us/djsodom/rails> ... and 4 other people<http://del.icio.us/url/...
2012 Oct 12
2
pdf viewer with bookmarking facility?
pdf viewer with bookmarking facility?
2010 Oct 11
5
Object lost in memory/trashed?
...ms[:commentable][:type].capitalize) instance = model_class.find params[:commentable][:id] report_error("Cannot find " << model_class.to_s << " with id " << params[:commentable][:id].to_s) if instance.nil? @comments = instance.comments # Include bookmarks if model is bookmarkable, and sort bookmarks and comments all together if BookmarksController::BOOKMARKABLE_MODELS.include?(model_class.to_s) @comments += instance.bookmarks @comments = @comments.sort_by {|obj| obj.created_at} end So I fetch all comments for the commentable mod...
2003 Dec 18
1
sharing bookmarks with rsync
I would like to have my computer at home and my computer at work to share the same bookmarks. My idea was to have each of the computers sync with a server's bookmark file. If the client has a newer file than the server it would upload it, if the client has an older file it would download it. I already have the authentication keys set up and want to do it over ssh. Would this be one wa...
2004 Nov 12
1
Firefox keyword searches for R & S-Plus
...e titles. You may prefer a more comprehensive search that includes Keywords and Object names. Edit the SearchObject.html file and change 'false' to 'true' in the following line: line = line + document.SearchEngine.search (searchstring,true,true,true); Here are my R and S-Plus bookmarks. I'll just give the link, my bookmark name, and my bookmark keyword. http://www.google.com/u/newcastlemaths?q=%s R mail archive search rh http://www.google.com/search?q=site:www.biostat.wustl.edu+[S]+%s S-news archive search sn file:///C:/Progra~1/rw2000/doc/html/search/SearchObject.html?%s...
2005 Dec 17
3
Question on Db Table design
Hi Suppose one has a db to track bookmarks for multiple users. Let''s assume that there are ten''s of thousands of users, and that an average user may have 100 bookmarks. (Assume here that no two bookmarks are the same.) Is it a common practice to have a bookmark table for ALL users, thereby producing a table that has on or...
2006 Jun 14
0
testing table associations
First, thanks to everyone who replied to my pluralization question from before! Today I''m confused by associations. I''ve set up a bunch of associations in my models to describe these relationships: - each user can have many bookmarks and tags - each bookmark can have many users and tags - each tag can have many bookmarks and users (Part of what is confusing is that I can change the wording to "each bookmark BELONGS TO many users and tags" and it still sounds ''correct'' when you read it. But does...
2006 Jan 02
4
Bookmarking a page inside r-project.org
By way of review, most large Web sites allow the user to create *bookmarks* which link to pages inside the Web site. However, here, the pages have one of just two URL's: http://www.r-project.org and http://cran.r-project.org The reason is the way HTML *frames* are used in setup of the Web site. It would be very helpful if the Web site were revised so that many if...
2008 Jul 08
2
Centos 5.2 upgrade Firefox Migrating Bookmarks
OK. Now that I have already upgraded, how do I migrate my bookmarks. :( Should have exported them before the upgrade, I suspect....
2001 May 15
1
How to display bookmarks on Lotus Notes 5 - Here is the solution
If you use Notes 5 with wine, you probably have the problem, that the bookmarks frame doesn't open when you click on Favourites or other folders on the left side. Solution: Create a Memo in Notes Go to the Body field and select Create/Hotspot/Button In the lower half, select Script and paste in this code Sub Click(Source As Button) Dim db As New NotesDatabase(&...
2006 Feb 22
1
Include Exclude .. a canonical way
I'm wrestling with include/exclude rules and not finding a way to do this: Simplified command: rsync -avv --exclcude-from=rsync_exclude \ ~/ /dest/ Backup ~/ including ~/.kde3.5/share/apps/konqueror/bookmarks.xml but excluding everything else under ~/.kde3.5 Here are some of what hasn't worked in an EXCLUDE file. + /.kde3.5/share/apps/konqueror/bookmarks.xml /.kde3.5/ + .kde3.5/share/apps/konqueror/bookmarks.xml /.kde3.5** + .kde3.5/share/apps/konqueror/bookmarks.xml .kde3.5/ There are a number...
2003 Feb 10
1
Bookmarks
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Is it possible to add "bookmarks" to an ogg file? I've got a project we're I'd like to be able to set bookmarks at specific times in a file and identify them by id's like "part 1.1" etc. Anyone know if it's possible? Also would it be possible with Ogg speex? Thanks, David - -- If you give s...
2015 Jul 12
1
Mounting NFS file systems via Nautilus on CentOS 6
Looks like Nautilus is periodically 'stat'-ing the bookmark location. How about making a softlink to the target dir in your home directory, then bookmarking the link in nautilus. Hopefully Nautilus will stat the link and not the target then. K
2009 Sep 17
2
r-inferno.pdf with detailed table of contents and bookmarks
Hi, I don't find a r-inferno.pdf that has detailed table of contents and bookmarks. If it is possible, can somebody help generated one and post it on line? Regards, Peng
2006 Jun 22
2
id column for join table... kosher?
I''ve got two tables, bookmarks & tags. Using a has_and_belongs_to_many association, I can do lookups using a join table called bookmarks_tags. Two questions: 1. Can I have a migration for my join tables? Rails seems to "know" about join tables implicitly from the associations, but if I do a rake migrate th...
2006 Feb 25
3
Is there any projects that implement the social bookmarking?
scuttle is written in php,delirious is written in perl,rails has tealeaf which has not published any files until now,is there any other rails social bookmarking with ajax characteriscs? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060225/0e082cd5/attachment.html
2006 Apr 19
2
ssh bookmark manager for centos [dnk]
Can anyone recommend a ssh bookmark manager for centos? Thanks! d
2006 Jun 21
3
rake migrate says table already exists
Hi all, I used the generate script to make a bunch of table migrations, resulting in files like 002_bookmarks.rb, 003_tags.rb, etc. When I did the ''rake migrate'', the db was set up but more migration files appeared, now called 009_create_bookmarks.rb, 010_create_tags.rb, etc. Now when I want to change the database (add a table or column, alter the schema) I do ./script/generate mi...
2010 Dec 07
1
'Bookmarking' a place in a sound file
Hi all, Is it possible to somehow 'bookmark' a place in a sound file? That is, the user presses a key while a sound file is playing and that point is saved, and some time in the future we can play the same sound file and tell it to start playing from that point. This would be done within a perl AGI program. Thanks for any advice! -- David Cunningham, Voisonics http://voisonics.com/ US