search for: likes

Displaying 20 results from an estimated 262573 matches for "likes".

Did you mean: like
2003 May 21
6
fixme:font:LFD_InitFontInfo DBCS fonts like...
I get these errors when running winex on paltalk.exe, what can I do? Building font metrics. This may take some time... fixme:font:LFD_InitFontInfo DBCS fonts like '-default-kai-medium-r-normal--8-80-72-72-c-80-big5-0' are not working correctly now. fixme:font:LFD_InitFontInfo DBCS fonts like '-default-kai-medium-r-normal--8-80-72-72-c-80-gb2312.1980-0' are not working correctly
2009 Jan 26
7
Wine and Guitar Pro 5.2
Ubuntu 8.10 Desktop, Wine 1.1.13 (upgraded from 1.0.1 to try to solve my problem). I have used used Guitar Pro very recently without a problem. After a PSU failure, I had to reinstall the OS and downloaded and installed software, including Wine. Guitar Pro appeared to install properly and its splash screen was normal. Immediately the full program ran, a fatal error stopped it. I have a screen
2005 Dec 11
9
LIKE SQL queries in rails
I''m trying to do something like: SELECT * FROM attachment WHERE filename LIKE ''%whatever%''; so my code is: @search = params[:search] @attachments = Attachment.find(:all, :conditions => ["filename LIKE ''%?%''", @search.to_s]) but that''s converting to: SELECT * FROM attachments WHERE (filename LIKE
2006 Jun 14
6
find and LIKE ''xxx%'' clause
Hi there ! I try to figure out how to do something like this in Rails : SELECT * FROM my_table WHERE name LIKE ''GOGONAM%'' My problem is the % and the quotes. >From now, I do like this : searched_name = params[:name]+''%'' user = MyTable.find(:all, :conditions => ["name LIKE ?", searched_name]) But is there a more gracefull way to do a LIKE
2006 Jul 20
2
Timing benefits of mapply() vs. for loop was: Wrap a loop inside a function
List: Thank you for the replies to my post yesterday. Gabor and Phil also gave useful replies on how to improve the function by relying on mapply rather than the explicit for loop. In general, I try and use the family of apply functions rather than the looping constructs such as for, while etc as a matter of practice. However, it seems the mapply function in this case is slower (in terms of CPU
2016 Jun 15
2
[PATCH] Fix recognition of keeppxe option
> On Tue, Jun 14, 2016 at 12:33 PM, Ady via Syslinux <syslinux at zytor.com> wrote: > > > >> > kernel.c:new_linux_kernel() to load_linux.c:bios_boot_linux() because > >> > there is no convenient way in new_linux_kernel() to control the boot > >> > flags value. > >> > >> This is the part that has me questioning things and trying
2005 Mar 25
5
Re-write callerid?
Is it possible to rewrite caller id's? I would like to have sip phones appear by their local cid (like Henk <208>) but when they call out using the PRI I would like their full DID (MSN) to appear (like 0031201234567) I could ofcourse set callerid to the main phonenumber but surely there must be a better solution? Thanks!! Remco
2010 Oct 18
5
How to create a "like" button
Ive got a like and video model. On a Video page, Users can click a link ("like") button which will allow them to like a particular video. Since my like button/image comes in the form of a link and not an actual html form. How should this be implemented? Do I need to specify a ":method => puts" in my link_to tag helper? What are your thoughts? -- You received this
2009 Mar 13
6
Using LIKE
I''ve heard that using LIKE is very slow, but I see it being used a lot in examples, blogs etc. Is it really that bad? Since Rails doesn''t directly support Fulltext search, this is the easiest way to get searching done, right? Or are there any other easier ways? I''m using acts_as_indexed right now, but it still doesn''t do what LIKE does.
2006 Mar 20
5
:conditions => ["phone like ''%:phone%''" , {:phone => "555"}]
Hi all, What''s wrong with the way I specify the condition in : Person.find :all, :conditions => ["phone like ''%:phone%''" , {:phone => "555"}] ? It translates to (note the two '' between the two ") SELECT * FROM people WHERE (phone like "%''555''%" ) instead of SELECT * FROM people WHERE
2006 Jul 04
3
Recalculating the score
Hey .. I''m using ferret to index various objects and i''m create a Ferret::Document for each of these objects. Indexing and searching is working fine. Each of these Ferret::Documents has a ''relevance'' field, storing an integer, how relevant this object is for the search. The ''relevance'' is in the range of 1..10 Now i would like to
2007 Mar 22
2
Proposal for Ruby on Rails for the SOC.
Hi list, I''m sorry to come here talking about this (since I realize you have many, far better things to do, but I''d really like your feedback on an idea I have for the summer of code. I''d like to work with the guys at Ruby Central on implementing a feature for Ruby on Rails, and since you guys are the best source of information on the subject, I''d like to ask
2006 Feb 14
2
CMS-like routing
I''d like to set up routes like /<section>/<article>. Using a route like map.connect '':section/:article'' works just fine, but I''ve also got an admin area that is accessed through the route ''admin''. Inside the admin area I''ve got subpages like admin/sections and admin/articles. This is conflicting with the other routes
2018 Jul 05
7
RFC: should we spell lambdas like functions?
I argue we should spell C++ lambdas (and other function-like variables) like functions, not like variables. - Use verbs, not nouns. - Use lowerCamelCase. Here's a patch that implements the change to the coding standards: https://reviews.llvm.org/D48991 <https://reviews.llvm.org/D48991> Thoughts? -------------- next part -------------- An HTML attachment was scrubbed... URL:
2012 Feb 23
1
how to draw crossing circles to show relationship?
Dear list, To make it easier, let me start with an example. Say I have 20 different cookies. Dave likes 7 of them, Evan likes 14 of them and Torri likes 11 of them. The data is cookies<-cbind(c(1:20), c(1,0,0,1,0,1,0,0,0,0,1,1,1,0,0,0,1,0,0,0), c(1,1,1,0,0,1,1,1,1,1,0,1,1,0,1,0,1,0,1,1), c(1,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0,1,1,1,0)) colnames(cookies)<-c("cookie","Dave","...
2016 Jun 14
2
[PATCH] Fix recognition of keeppxe option
> > kernel.c:new_linux_kernel() to load_linux.c:bios_boot_linux() because > > there is no convenient way in new_linux_kernel() to control the boot > > flags value. > > This is the part that has me questioning things and trying to recall > if any other KERNEL-like directives ever utilize keeppxe. > @Gene, Not being a developer myself, I don't understand this
2010 Nov 07
1
creating a scale (factor) based on a continuous variable nested within levels of factor
Hello R-helpers I hope that my subject line is not detering anyone from helping me out:) I have been stuck of a few hours now, and I don't seem to pinpoint where the problem is. I have a data.frame which is structured as follow: str(hDatPretty) 'data.frame': 1665 obs. of ?8 variables: $ time ? ?: num ?0 1.02 2.05 3.07 4.09 ... $ hr ? ? ?: num ?62.4 63.6 64.6 65.5 66.2 ... $ emg ? ?
2003 Jul 17
3
confused about histograms
I've got a data set with integer codes from 0--3. I'd like a histogram with a single bar for 0, 1, 2 and 3. I'd like each of the 4 bars centered over a label. hist(mydata, breaks=4, main="Simulation") gives me three bars. The best I've been able to do is do something like print(hist((wexp), breaks=25, main="Simulation")) This gives me something
2003 Jan 15
2
[lattice] lines for stripplot (like dotplot) or jitter for dotplot?
I'd like to use stripplot for some plots because I want to use the jitter parameter. On the other hand, I'd like to use dotplot because I'd like to have the horizontal lines that it includes. dotplot doesn't have a jitter option and I'm not having any success with getting panel.grid(h=-1) with stripplot. Can anyone show me how to make dotplot-like lines on a stripplot? Or
2007 Feb 25
8
Double-banger function names: preferences and suggestions
What do you prefer/recommend for double-banger function names: 1 scale.colour 2 scale_colour 3 scaleColour 1 is more R-like, but conflicts with S3. 2 is a modern version of number 1, but not many packages use it. Number 3 is more java-like. (I like number 2 best) Any suggestions? Thanks, Hadley