search for: favorits

Displaying 20 results from an estimated 2254 matches for "favorits".

Did you mean: favorite
2006 Aug 11
2
User Favorites
Hi there, I''m currently creating a simple (at least so I thought) structure of user favorites. Basically users can add certain ''objects'' to their list of favorites. Here is my current structure (simplified) class User has_many :favorites end class Book belongs_to :favorites end class Favorite belongs_to :user has_one :book end The table favorite just has a two
2006 Jul 10
18
Deleting join association of has_many :through
I''m trying to use has_many :through, since my join model deserves being more than just an intersection table. But when I try to break the association, the break only seems "temporary": Let''s say my two tables are Users and Colors, and the join model is Favorites. user = Users.find(1) user.colors.length >> 2 c = user.colors.first >> #<Color:....>
2006 Jul 10
2
Polymorphic associations in reverse?
My app has an association that''s got me scratching my head. I have Users, and Images. A User has many Images. (Yes, another picture sharing app, but it''s for a small niche, and it doesn''t end in -r!) I would like to express a "Favorite" relationship between both Users to Users, and Users to Images. This seems like the opposite of the standard
2006 Mar 28
5
Rails 1.1 released
I haven''t seen a note here on the list, so in case anyone doesn''t have their RSS reader glued to the relevant blogs... http://weblog.rubyonrails.org/articles/2006/03/28/rails-1-1-rjs- active-record-respond_to-integration-tests-and-500-other-things Congrats to David and all the core team, and thanks for your dedication and all the work. This release looks really solid and
2006 Jun 23
2
polymorphic challenge
Hello All, I have a little challenge and I am not sure if this is even possible I am working on a dating/event site and few functionalities are similar that I want to centralize them. We have users which can have - favorite users - interest list - blocked users All these relations are like; User <-> Relation <-> User I was thinking I could have a class called Relation (with a
2016 Jul 06
4
Permanently change default virsh editor
Hello, I found in the docs that I can change the editor I use on a per vm bases with the following: *EDITOR=$your-favorite-editor virsh edit $your-vm-name* But how do I change it permanently so when I run: *virsh edit $your-vm-name* It defaults to my favorite editor (vim)? Ref: http://wiki.libvirt.org/page/FAQ
2007 Jun 14
1
Outlook 2003 - Disappearing favorite folders
Hello all, I'm having an issue with Outlook 2003, where favorite folders seem to disappear. Specifically, they are subfolders of the Inbox. The Inbox favorite folder stays there without a problem. Any clues as to what the problem may be? With the previous IMAP server (courier I believe) this wasn't a problem...so it leads me to believe that Dovecot might be the problem. I'm
2004 Apr 21
1
Symlinks and roaming profiles
Hi all, Has anyone else had trouble (or not) with symlinks created in root preexec scripts and roaming profile directories? I'm trying to add a "shared links" director (symlink) to everyone's favorites, and I get error loading profiles where a symlink loop is forming (ends up with something like "cannot copy
2015 Sep 02
4
Redirected Folders not working for Desktop
Well, I've just added another directory to not make the redirected folders a the root. And, Favorites and Documents do work. Goog suggestion to check the Windows event viewer. I'll do that and get back with what I find. Thanks, --Mark -----Original Message----- > To: samba at lists.samba.org > From: James <lingpanda101 at gmail.com> > Date: Tue, 1 Sep 2015 08:14:06 -0400
2008 Jan 24
6
Your "favorite" Asterisk application.
Hi, all. I've done some Asterisk recelling, but recently got roped into a Sr. SysAdmin position. Our PBX is c. 1823, and -- well, as pretty much all circuit-based systems do, it sucks. It sucks to administer, moves suck... you know the drill. So, I'd love change to an Asterisk system. My boss, who loves to spend money for no particular reason, wants to go proprietary, though. So
2015 Sep 01
4
Redirected Folders not working for Desktop
I have a problem I've not been able to figure out. I'm using Samba4 as the office AD/DC. I've set up the Redirected Folders policy to redirect Desktop, Favorites and Documents to \\mail.hprs.local. I set this up months ago and it works great for Documents and Favorites, but Desktop is not redirected (no Desktop): $ ls -l /redirectedFolders/Users/thisuser/ total 16 drwxrwx---+ 10
2006 Jun 26
1
Help with Wine programming.
We at Webyog produce the SQLyog program. SQLyog is an advanced graphical client for MySQL. SQLyog records at winehg.com applications database are available here: http://appdb.winehq.org/appview.php?appId=1328 As you can read versions up to 5.0.x worked fine with Wine. Basically version 5.1.x does too. However we have two issues with two new features of SQLyog version 5.1.x (we tested primarily
2008 Mar 13
2
Please vote for your favorite Wine-1.0 bugs...
The 1.0 release of Wine is tenatively scheduled for the 15th anniversary of the project (roughly 1 June 2008, if you take Dan Dulitz' message as the start of the project, http://groups.google.com/group/comp.os.linux/msg/7f92abdf494ab8b3 ) Over the last six or so months, the wine developers have identified 180 or so bugs as possibly being worth fixing before the 1.0 release. 63 of the Wine
2007 Nov 09
1
Your favorite desktop wifi sip hardphone ?
Hi, Which is your favorite desktop wifi sip hardphone ? I'm looking for something like http://www.mitel.com/DocController?documentId=19401 which could be easily moved from one meeting room to another. (In this specific case, finding an electrical plug to power a large desktop phone is seen more relevant than finding an PoE Ethernet plug or using a mobile handset.) Which product would you
2005 Jan 25
0
Inconsistent ls behavior on smbmount'ed Windows shares
Hi group When I use [TAB] to finish the file name ls shows the file. When I repeat the comman with [UP] ls says there's no such file. Any ideas ? The same thing on Fedora Core 3 and FreeBSD 5.3,4.9 [root@vax ~]# cat /etc/sysconfig/i18n LANG="ru_RU.UTF-8" SUPPORTED="en_US.UTF-8:en_US:en:ru_RU.UTF-8:ru_RU:ru" SYSFONT="latarcyrheb-sun16" [root@vax ~]# mount -t
2015 Sep 03
0
Redirected Folders not working for Desktop
James, First, I mis-spoke (typed?) in my previous message. Yes, my redirected folders are set up as \\mail.hprs.local\Users\%username%, just like you say. (Note, I've already been chastized about the .local thing -- too late). I did examine the event logs. For Favorites, Document, Photos, etc. I have Event 501 messages which say, "Successfully applied policy and redirected folder
2006 Jul 02
1
prevent duplicate inserts with has_many :through ??
Does anyone have an efficient/elegant way to prevent duplicate inserts when using a has_many :through relationship. So I have something like this: class User < ActiveRecord::Base has_many :favorite_teams has_many :teams, :through => :favorite_teams end class FavoriteTeams < ActiveRecord::Base belongs_to :user belongs_to :team end class Teams < ActiveRecord::Base has_many
2009 Aug 24
1
Want to help Wine and prevent regressions in your favorite (downloadable) app?
Howdy all, For Google Summer of Code, I worked on a project I called Appinstall, which is basically an automated test framework for Wine. It works as a simple shell script, that runs several independent tests of applications, then parses the log files to make sure no applications broke, or bugs were fixed. The tests themselves are written using AutoHotKey (http://www.autohotkey.com). The neat
2006 Apr 30
2
HABTM: Find sorted by number of associations
Hi, I''ve been googling and searching the forums for some time but can''t seem to find exactly what I''m looking for. Suppose User HABTM Products (for example a favorites list). I would like to construct a single query for finding Products ordered by the number of Users that have flagged them as favorites. Although I can construct the query using SQL a with a
2011 Apr 19
0
Love wine? Here's a new way to find your favorites!
Hi, I never use blogs so I am not sure what I am doing =). But I had to share an amazing find! A friend of mine sent me a link to a new website that carries so many different wines---(that I can never find at my local liquor store)---its called ELEPHANTWINE.COM....I called the customer service number because I could not find my favorite wine..and the lady was soo nice and made a special order for