search for: nickname

Displaying 20 results from an estimated 329 matches for "nickname".

2007 Mar 29
4
validates_length_of not working with :if ?
Hello, I''m trying to cut down the errors if the guy already getting the empty nickname, so he doesn''t get anything about the nickname is short. validates_presence_of :nickname This below is not working ? validates_length_of :nickname, :within => 4..40, :if => Proc.new { |user| user.nickname.length > 1 } nor this one below? validates_length_of :nickname, :within...
2010 Feb 09
2
How can I rearange my dataframe
An embedded and charset-unspecified text was scrubbed... Name: ??????????? URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20100209/db12d14b/attachment.pl>
2014 Jul 29
1
IRC Instructions for Beginners
...Install button. Once ChatZilla is installed, you can open it from Firefox by going to the Tools menu, then clicking ChatZilla. A new window opens for ChatZilla. Once you have your IRC client is open, go to irc://freenode/ (ChatZilla provides a link to freenode for you to click on). To change your nickname, type /nick yournickname in the input box and press Enter. To register your nickname, type /msg NickServ yourpassword youremailaddress and press Enter. NickServ will send an email back to the given email address, containing a message in the format /msg NickServ VERIFY REGISTER yournickname yourtok...
2007 Nov 25
4
is notify resevered word?
...ne :notify end ...and tried then to update column in User table it will call queries for notify table automatic? Output --------------------------------------------------------------- User Columns (0.041488) SHOW FIELDS FROM `users` User Load (0.001544) SELECT * FROM `users` WHERE (`users`.`nickname` = ''jamal'') LIMIT 1 SQL (0.000373) BEGIN SQL (0.001843) SHOW TABLES User::Notify Load (0.001113) SELECT * FROM `user_notifies` WHERE (user_notifies.user_id = 1) LIMIT 1 User::Notify Load (0.001009) SELECT * FROM `user_notifies` WHERE (user_notifies.user_id = 1) LIMIT...
2008 Dec 30
0
[LLVMdev] LLVM ARM Cross-Compiler Build
...the folks targeting the ARM backend. The folks developing on ARM instead might be using QEMU to emulate ARM on x86, and run it as a regular (not cross) compiler in that environment. In fact, looking at the nightly tester runs, I've noticed one of the ARM nightly testers seems to run in QEMU: Nickname:shark-qemu-armv5tel uname:Linux shark-armel 2.6.24-rc7 #1 Wed Jan 16 02:28:08 CET 2008 armv5tel GNU/Linux http://llvm.org/nightlytest/machine.php?machine=335 However, some other nightly testers may be running cross-compilers (but are probably still running the tests via QEMU or similar emulator):...
2007 Nov 05
0
Authentication: is a guest a user or an "exception"?
...he has... ---------------------------------------------------------- Alternative 1: guests do not really exist, they are handled in the view code (view code knows that there''s a difference between guests and logged in users and checks accordingly) Hello <%= member_logged_in? ? member.nickname : ''Guest'' %>! <%= "You have #{member.private_messages.find_by_status(:unread)} unread PM''s" if member_logged_in? %> While the member function looks something like that: def member Member.find_by_id(session[:member_id]) end -------------------------...
2011 May 09
0
Approximate name matching
...hing key I have is the name. I know that commercial solutions exist, and I know I code code this from scratch, but I'd prefer to build on some existing free solution if it exists. Unfortunately, the names are not standardized, and there is also a certain level of error: Danny Williams (nickname) Dan Williams (nickname) Daniel Williams (nickname) Dan William (spelling error) D. Williams (initials) Daniel "Danny" Williams (formal + nickname) Dan P. Williams (includes middle initial) Williams, Daniel (different convention) Wil...
2003 Jun 19
1
Slow windows -> cups print - CONCLUSION
...the linux server) from the www.linuxprinting.org, click the "Browse" button and select that PPD. After that you'll have a new printer installed an all will work like a charm. Note: Inside the PPD of my printer (HP OfficeJet 5110) I had these line (despite all the others :) ): *ShortNickName: "HP OfficeJet 5110, hpijs" *NickName: "HP OfficeJet 5110, Foomatic + hpijs (recommended)" On the instalation of the Adobe drivers I had erros saying my printed had illegal chars on it's name. So, I've replaced the previous lines with: *ShortNickName: "HP Off...
2010 Jul 16
31
Added associations but don't see generated methods
Hi, I''ve got a Rails app working that includes two two classes, etc.: Expense & Vendor. I eventually learned that the mental concept I had of their relationship should be express in Rails as: class Expense < ActiveRecord::Base; belongs_to :vendor; end class Vendor < ActiveRecord::Base; has_many :expenses; end
2008 Dec 28
1
[LLVMdev] LLVM ARM Cross-Compiler Build
Hi, This is a simple question about building ARM cross-compiler. What is the building procedure using LLVM 2.4 and GCC front-end 4.2? I used these commands for LLVM, and it is okay. $ ../configure --prefix=/usr/local -target=arm $ make ENABLE_OPTIMIZED=0 $ make ENABLE_OPTIMIZED=0 install Then these commands were used for GCC front-end but this got couple of errors. $ ../configure
2010 Mar 22
7
How to reference a select_tag within a form
...ode: <% form_for(@expense) do |f| %> [snip] <p> <%= f.label :vendor %><br /> <%= f.text_field :vendor %> <br /> <div id="vendor_droplist> <%= select_tag "test", options_for_select(@current_vendors.collect { |v| v.nickname }), {:multiple => true} %> </div> </p> It brought up a list of vendor-names immediately under my Vendors textbox, which worked great as far as I was concerned. Then I tried to turn it into a real drop-down: 1. I added style="display:none" to the div so th...
2008 Jul 21
4
[LLVMdev] nightly tester setup
...htly script, run from cron: export BUILDDIR=$HOME/llvm-test export WEBDIR=$HOME/llvm-test-results export LLVMGCCDIR=$HOME/llvm-gcc/install cd -- "$HOME" mkdir -p -- "$WEBDIR" cd llvm utils/NewNightlyTest.pl -release -parallel -noexternals -noremoveresults -nickname martini where $HOME/llvm is an LLVM checkout that I keep up to date manually. I also have llvm-gcc installed on the same system in /usr/local/bin/. Could anyone who has the nightly tester set up properly please comment on what my problem might be, or what I could try to fix it? Thanks, Nick
2010 Mar 20
4
Displaying an image in a Rails form_for
...esent this image in the following context: <p> <%= f.label :vendor %><br /> <%= f.text_field :vendor %> <%= f.image "DownArrow.jpg" %> <br> <%= select_tag "test", options_for_select(@current_vendors.collect { |v| v.nickname }), {:multiple => true} %> </p> But Rails gushes the unforgiving response: undefined method `image'' for #<ActionView::Helpers::FormBuilder: 0x48194e0> I couldn''t find anything helpful in: -- http://api.rubyonrails.org/classes/ActionView/Helpers/FormHelper....
2013 Jul 05
1
Ambiguous behavior with prefetch database?
Hello, Let's say dovecot.conf contains: mail_uid = dovemailer mail_gid = dovemailer mail_home = /some/path/%n mail_location = mbox:~/mboxes:INBOX=~/mboxes/inbox and that the password database query is of the form: password_query = \ SELECT \ passwd AS password, \ nickname AS user, \ mail_home AS userdb_home, \ mail_location AS userdb_mail, \ WHERE \ ... The database initially comes with NULL for both mail_home and mail_location, the goal being to be able to progressively replace legacy settings. With the above, one gets such entries in the logs upon a pop o...
2004 Jul 09
7
IRC channel #asterisk on irc.freenode.net
Hi all! It's great to start with "for dummies" question, but hey, we all have been human infants also =) Problem is, that I can not log on to this channel and I haven't found anything helpful during the past few days either. 1. The irc.freenode.net server gives me "Couldn't look up your hostname" and "No identd (auth) response" followed with
2016 Jun 01
2
data.frame colname igraph
...2.5 year 2016 month 04 day 14 svn rev 70478 language R version.string R version 3.2.5 (2016-04-14) nickname Very, Very Secure Dishes > number_edges_vertex <- as.data.frame(degree(datos.network)) > head(number_edges_vertex) degree(datos.network) Ficha 1022 9 Ficha 1024 10 Ficha 1028 7 Ficha 1053 9...
2013 Jan 01
1
Behavior or as.environment in function arguments/call (and force() behaviors...)
...x86_64-apple-darwin11.2.0 arch x86_64 os darwin11.2.0 system x86_64, darwin11.2.0 status major 2 minor 15.1 year 2012 month 06 day 22 svn rev 59600 language R version.string R version 2.15.1 (2012-06-22) nickname Roasted Marshmallows > R.version _ platform x86_64-apple-darwin11.2.0 arch x86_64 os darwin11.2.0 system x86_64, darwin11.2.0 status Under development (unstable) major 3 minor 0.0 year 2012 month...
1999 May 24
0
Required Services for Samba?
...achine in a caching-only setup, but according to those in the know the RedHat setup is barely adequate - I haven't mastered named/bind myself yet). If you *do* use your ISP's domain, you should reverse the name order in /etc/hosts like this. Instead of the standard: IP address FQDN nickname 127.0.0.1 localhost.localdomain 192.168.0.2 sambahost.foo.bar sambahost ... use this instead: IP address nickname FQDN 127.0.0.1 loopback localhost 192.168.0.2 sambahost sambahost.foo.bar ... (notice the loopback address in RedHat is also broken) Reversing the FQDN and nickname fields will s...
2006 Jul 07
0
[LLVMdev] New Nightly Tester
...by an HTTP POST request. I would like to start transitioning testers to the new testing scheme. This will hopefully be a painless process and I have designed NewNightlyTest.pl so that it can be invoked almost the exact same as NightlyTest.pl. The only difference is NewNightlyTest.pl accepts "-nickname YourNicknameHere". This options allows us to name machines for easier reference. For now, host names will act as the best nicknames. So if you are the manager of a nightly test machine, please 1.) run `cvs up` to get NewNightlyTest.pl. 2.) change your settings to call NewNightlyTest.pl instea...
2006 Oct 18
0
[LLVMdev] Nightly Test Machine Identification
...s so > could you please indicate what factors lead to one run of nightly test > being viewed as a different machine? If you explain it, I'll add the > explanation to the documentation. I don't recall the details, but I believe that all of the architecture, base compiler version, nickname and probably other stuff factor into it. Upgrading the system compiler (in particular) can have a significant impact on the performance results, so I think this behavior makes sense. If you strongly disagree and want to change it, go for it. -Chris -- http://nondot.org/sabre/ http://llvm.org/