search for: remember

Displaying 20 results from an estimated 21459 matches for "remember".

2006 Jan 21
5
How do you deal with non-model property form values
I have a User ActiveRecord model that has email and password properties. I want to build a login for that has a "remember me" option. My view looks like this: <% @page_title = "Login" -%> <%= error_messages_for ''user'' %> <%= form_tag %> <table> <tr> <td align="right" width="1%" nowrap="nowrap"><label class=&qu...
2009 Sep 30
5
Condition to factor (easy to remember)
Dear List, creating factors in a given non-default orders is notoriously difficult to explain in a course. Students love the ifelse construct given below most, but I remember some comment from Martin M?chler (?) that ifelse should be banned from courses. Any better idea? Not necessarily short, easy to remember is important. Dieter data = c(1,7,10,50,70) levs = c("Pre","Post") # Typical C-Programmer style factor(levs[as.integer(data >10)+1], l...
2012 Aug 16
2
[LLVMdev] How to uniquely remember a loop?
Hi- I am writing a pass to traverse loops and collect some analysis data and later on come back to transform the IR. In the analysis phase I need to remember statistics regarding every loop in the program. What is the best way to uniquely remember a loop? Thanks, -Prashantha -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120816/fb2f47d5/attachment.html>
2012 Apr 27
1
Rconsole file fails to remember GUI settings, and script window text colour option is missing
...itself black (so is now invisible) and now I cannot find any setting in the options list that changes it. Anyone know which one its supposed to be? 2: I initially changed the script window to mid grey (so I could see the text) and saving to the standard 'Rconsole' file, but now R fails to remember that setting when it reloads. So I've tried resetting the GUI settings by deleting all 'Rconsole' files (found 1 on C drive and the one in my personal R folder) but to no avail. It just doesn't remember new settings, and its unclear where R is getting its current GUI settings from....
2012 Aug 20
0
[LLVMdev] How to uniquely remember a loop?
On Aug 16, 2012, at 1:09 PM, "Rao, Prashantha" <Prashantha.Rao at amd.com> wrote: > Hi- > > I am writing a pass to traverse loops and collect some analysis data and later on come back to transform the IR. In the analysis phase I need to remember statistics regarding every loop in the program. What is the best way to uniquely remember a loop? Probably too late to help you but... loops are identified by their header block. Depending on your situation you might directly point to the block or refer to its name. If you need to be more robust a...
2008 Nov 19
2
Transforming a list to a vector with associated levels
I am pretty sure that I came across a function that creates a vector of levels from a list but I just can't remember. Basically, I have something like > t <- list(A=c(4,1,4),B=c(3,7,9,2)) > t $A [1] 4 1 4 $B [1] 3 7 9 2 And I would like to get something like the following: t levels 4 1 1 1 4 1 3 2 7 2 9 2 2 2 I tried unlist without success. I also do remember that there is a corresponding function t...
2005 Aug 02
2
probes on udp port 500
Last couple of days some of my hosts were probed for UDP port 500 (IKE daemon, used by IPSec for key exchange) from dialup IPs. Don't remember seeing similar probes before. Some new vaulnerability that script kiddies (and pro crackers) are trying out, or is this some old stuff? I do remember there were some security problems with racoon in the past (that were fixed in current CentOS ipsec-tools packages), but don't remember reading...
2004 Feb 25
1
"Remember Password" from 2000/XP to Samba share?
...ns and works fine. But, if the passwords do not match (they are still using the same usernames -- just different passwords on the Windows box and samba box), then there does not appear to be a way to get them to automatically reconnect to the samba share. It works when they connect, but the "remember password" option on the mapping appears to be ignored. If they log out of the Windows box and then log back in, it asks for the samba share password again when it tries to remap it. Some people say that "that's just the way it is with 2000/XP" -- that it simply won't rememb...
2023 Mar 07
1
[PATCH v2v] convert: Allow preferred block driver to be specified on the command line
...d some > syntactic sugar: > > https://github.com/ocaml/ocaml/blob/66db964f48869c6470b8ccd1ed672e244ba9d680/stdlib/stdlib.ml#L237 > > The reason mutable fields of structures in general have to be > specially marked with the "mutable" keyword is because of the > "remembered set", an obscure corner of generational garbage collection: > > https://www.cs.cornell.edu/courses/cs3110/2012sp/lectures/lec26-gc/lec26.html > > If mutable fields didn't exist then you could never have a pointer > from the old generation into the new generation, because...
2012 Feb 20
3
puppet-forge.. do I remember correctly?
Do I remember correctly that puppet-forge is no longer accepting uploads? -- Peter L. Berghold Owner, Shark River Technical Solutions LLC -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send email to puppet-users@googlegroups...
2018 Jun 07
2
Recurrent DNS issues after DC loss
On 06.06.2018 21:54, lingpanda101 wrote: > On 6/6/2018 11:02 AM, Ole Traupe via samba wrote: >> >> >> On 06.06.2018 16:02, Rowland Penny via samba wrote: >>> >>>> I seem to remember having read here on the list, that it is no good >>>> idea to mix samba versions in a domain. If there is sound advice to >>>> do it anyways, I would be up for trying it. However, as I have >>>> written above, I messed up the uid/gid ranges. To my understanding,...
2009 Feb 12
1
remember chosen label and re-use for next boot
Hi, I have just converted from grub (legacy) and am now using extlinux, which makes me a very happy camper by the way :-) There is one thing I am missing though, grub has the possibility to remember the chosen label and re-use that as default for the next boot. Is there something I missed in the documentation (would not be the first time ;-)) or is such a feature intentionally left out? I can probably work around this by tweaking my extlinux.conf in an init script and move "MENU defaul...
2007 Dec 16
2
restful_authentication: update of users' attributes on every page load upon 'Remember me' being enabled?
Hello there, I just noticed a kinda weird thing: if users log in with the ''Remember Me'' option enabled, their records in the db get updated everytime the user reloads a page, because apparently restful_authentication''s code updates the remember_token_expires_at & remember_token attributes for each page load (not only once on the actual login (from cookie). W...
2004 Dec 21
4
Removing trailing spaces
Some years ago when I used S-PLUS, I seem to remember, there was a discussion about a simple method of removing trailing spaces from vector elements. I'd be fairly sure the same would work in R, but I can't find any mention of anything like it in the R archives or with help.search(). There are ways I could do it with substring(), but I seem...
2012 Nov 13
3
Can't remember which package I used. Anyone can help please?
...A and method B, e.g. how many of the individuals are clustered as 'Group 1' both by method A and B, and how many are clustered as 'Group 2' both by method A and B and so on. In this case we have 30 and 28 respectively (please see attached table and plot). I lost my code and can not remember which packages/functions I used here? Could anyone recognize and give me some clue? I only made a note 'crosstable' if can ring your bell... Many thanks in advance HJ
2007 Dec 03
4
How to remember if a div is shown or hidden after a page ref
Hi everyone, hi have a similar problem in a view: <div id="content">...</div> <a href="javascript:void(0)" onClick="Effect.Toggle(''content'');">Hide/show content</a> I would like the page to "remember" that the div has been hidden after a page reload. (The div comes up always visible even if it was set to hidden before). Any simple way to do this? Thanks a lot in advance -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this mess...
2004 Sep 08
5
a little question about R
...sequence just like a,b,c,d (In other words,a vector consists of 4 characters :a,b,c,d ).How can I do it in a shortcut manner? Yes,I can do it as following: c("a","b","c","d") and the result is:[1] "a" "b" "c" "d". But I remember there's a shortcut manner to do the same thing,something like c("a":"d").But the system said:"Error in "a":"d" : NA/NaN argument" So I wonder the correct method to do it(I remember the expression is very similar with c("a":"d&quo...
2012 Apr 27
1
Rconsole file fails to remember GUI settings, and script
...any setting in the options list that changes it. =C2=A0Anyone know w= > hich one >> its supposed to be? >> >> 2: I initially changed the script window to mid grey (so I could see the >> text) and saving to the standard 'Rconsole' file, but now R fails to >> remember that setting when it reloads. =C2=A0So I've tried resetting the = > GUI >> settings by deleting all 'Rconsole' files (found 1 on C drive and the one= > ?in >> my personal R folder) but to no avail. It just doesn't remember new >> settings, and its unclear whe...
2009 Jul 10
4
change a image from physical to fil based
i try to change one of my images from lvm to file with dd if=/dev/vps/centos of=/root/mj.img the fiel whas created byt will not ok i bigin boot but failed i remember the system can''t find the lvm groups i not remember anymore _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
2010 Feb 01
2
how to write a function that remembers its state across its calls
Hi, I wonder how to write a function that remembers its state across its calls. For example, I would like to compute the average of the pass three values the function has seen f(1) # NA f(2) # NA f(3) # 2 f(4) # 3 This would require f to keep track of the values it has seen. In other languages like c++ or java it is easy to do by having a...