search for: tate

Displaying 20 results from an estimated 82 matches for "tate".

Did you mean: state
2012 Jan 19
2
smbpasswd not working
...ite the existence of the user root at hayek:~# cat /etc/samba/smbpasswd # # SMB password file. # nobody:65534:XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX:XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX:[U ]:LCT-00000000:nobody john:1000:XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX:XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX:[U ]:LCT-00000000:John Tate,,, I do not understand what is going on. I really need to get this working. John Tate -- www.johntate.org
2006 May 23
10
Ruby on Rails: Up and Running
hello, On page 49 of the beta version of Ruby on Rails: Up and Running, the book suggests to download a zip file containing everything that has been done up to that point, and a create_tables_with_data.sql file. The book doesn''t have the link, and I couldn''t find it in the book site. Does anyone know where to get the files? This is a very good book. Thanks. -- Posted via
2005 Aug 12
1
Manually Calculating Odds from POLR Model
...r the underlying calculations that transform the polr output and the input variables into the final output odds. I have tried a number of dead-end roads so far. So, if anyone has any information on how to do this or where I can find out, I would be extremely grateful. Thank you for your time, Tate Avery
2017 Mar 02
2
C 7.3 sshd will not reload
Hi, On Thu, 2 Mar 2017, Tate Belden wrote: > Might I suggest using "systemctl restart sshd", instead of reload? At the > least - see if it behaves differently for you. restart, reload, stop then start all produce the same results. If I do not change the configuration, and just issue the restart, reload, etc....
2017 Mar 03
1
C 7.3 sshd will not reload
On Thu, 2 Mar 2017, Tate Belden wrote: > I have to assume it's something unique to your install, then. > > I run about a dozen sshd instances on as many CentOS 7 boxes around here. > To a one, systemctl restart sshd is all it takes to implement config > changes. Did you actually change something before...
2001 Jun 25
3
Quadraphonics
Over the weekend I chanced by the house of a quadraphile friend of mine to check it his SQ setup. For those interested, he has a fairly decent Kenwood linear turntable with what I understand is a rather pricy cartridge manufactured by some company whose name escapes me, hooked into a Fosgate Tate II SQ decoder which is likewise hooked into two X10-D buffers then finally into a Marantz receiver. The whole system sounds absolutely wonderful on SQ records, and on non-SQ records the Tate II decoder has a "wide stereo" mode which makes better use of a quadraphonic setup using a stereo...
2005 Oct 24
1
stepAIC formula upper limit guidelines
...ot; or "x5/x7") before the coefficients are applied. Specifically, I am trying to determine what syntax will give stepAIC the most flexibility to slice and dice my inputs as it searches for the best possible model. Any details or references would be immensely appreciated. Thank you, Tate Avery
2006 Sep 19
9
RoR with apache2 on SuSE
...;/var/log/myapp_fcgi_crash.log'' # require File.dirname(__FILE__) + "/../config/environment" require ''fcgi_handler'' RailsFCGIHandler.process! All of the tutorials that I find seem to say the same stuff, has anyone set this up before that could help? thanks, Tate -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gma...
2019 Feb 14
2
Geany 1.34
...L several weeks ago > but have not seen any response. What can I do to raise this issue? > > Appreciate suggestions. > > _______________________________________________ > CentOS mailing list > CentOS at centos.org > https://lists.centos.org/mailman/listinfo/centos > -- Tate Belden "The Dungeon <http://ka7o.net>" A place of (solder) smoke, weird (server) sounds and (LED) blinky lights. More than a few bugs of various flavors, too. Natrona County Beekeepers <http://ncbees.org> Casper Amateur Radio Club <http://casperarc.net> ?Any sufficient...
2019 Feb 16
2
Question about updates
...__________ > > CentOS mailing list > > CentOS at centos.org > > https://lists.centos.org/mailman/listinfo/centos > _______________________________________________ > CentOS mailing list > CentOS at centos.org > https://lists.centos.org/mailman/listinfo/centos > -- Tate Belden "The Dungeon <http://ka7o.net>" A place of (solder) smoke, weird (server) sounds and (LED) blinky lights. More than a few bugs of various flavors, too. Natrona County Beekeepers <http://ncbees.org> Casper Amateur Radio Club <http://casperarc.net> ?Any sufficient...
2019 Feb 14
3
Geany 1.34
On Thu, 14 Feb 2019 at 12:47, H <agents at meddatainc.com> wrote: > > On 02/14/2019 05:58 PM, Tate Belden wrote: > > FWIW, on Fedora 29, I'm running Geany 1.34.1 and didn't have to enable > > anything other than the default repositories. So, it'd appear to at least > > be in the stream. > > > > geany-1.34.1-2.fc29.x86_64 > > > > On Thu, Feb 1...
2019 Feb 14
2
Geany 1.34
On 02/14/2019 08:19 PM, Stephen John Smoogen wrote: > On Thu, 14 Feb 2019 at 13:25, Stephen John Smoogen <smooge at gmail.com> wrote: >> On Thu, 14 Feb 2019 at 12:47, H <agents at meddatainc.com> wrote: >>> On 02/14/2019 05:58 PM, Tate Belden wrote: >>>> FWIW, on Fedora 29, I'm running Geany 1.34.1 and didn't have to enable >>>> anything other than the default repositories. So, it'd appear to at least >>>> be in the stream. >>>> >>>> geany-1.34.1-2.fc29.x86_6...
2006 Aug 09
0
association dows not grt foreign key
...------------------------ class Person < ActiveRecord::Base has_one :address validates_presence_of :email --------------------------------- end class Address < ActiveRecord::Base belongs_to :person end ---------------------------------- person = Person.new person.email = "bruce@tate.com" address = Address.new address.city = "Austin" person.address = address person.save person2 = Person.find_by_email "bruce@tate.com" person2.address.city => "Austin" -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath...
2006 Aug 09
0
Re: association does not get foreign key
...as_one :address > validates_presence_of :email > --------------------------------- > > > end > class Address < ActiveRecord::Base > belongs_to :person > end > > ---------------------------------- > > person = Person.new > > person.email = "bruce@tate.com" > address = Address.new > address.city = "Austin" > person.address = address > person.save > person2 = Person.find_by_email "bruce@tate.com" > person2.address.city > => "Austin" > > > -------------- next part -------------- An...
2019 Jun 17
2
systemd-sleep
I found that one of my users' workstation is, for some reason, running systemd-sleep. I cannot find, anywhere on the system. system-sleep.conf (or systemd-sleep.conf), nor do I find systemctl status system[d]-sleep. How can I turn this thing off, other than renaming /usr/lib/systemd/systemd-sleep? mark
2006 May 23
1
Ruby on Rails: Up and Running: Rough Cuts Version
Anyone read the rough cuts of this book? I''m interested in checking it out because Bruce Tate''s work is always great. How does it compare to the agile books (2nd edition) in terms of timeliness, difficulty, etc. Thanks! Nathan -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060523/e8...
2006 Mar 07
1
DVD RAM drive and CentOS 4
...e DVD-RAM disks. I put one in on the off chance it would just work, but it said it wasn't formatted. What do I need to due to use the this in RAM mode. I didn't find anything that seemed to be aimed at this. Thanks in advance for any pointers on where to look for info or what to do. Bob Tate
2010 May 03
1
Plotting the explanatory against the dependent in a GAM
...ependent variable (just as in Carlslaw et al. 2007, fig. 1*). Otherwise, I'd like to know how to plot the smoothed predictor variable values against the partial residuals. Thank you for taking the time to read my message. Any?help is gratefully appreciated, Oscar * Carslaw, D., Beevers, S.,?Tate, J. 2007. Modelling and assessing trends in traffic-related emissions using a generalised additive modelling approach. Atmospheric Environment 41 (2007) 5289?5299
2019 Feb 11
2
Forums down?
All day I've been getting "Sorry but you cannot use search at this time. The server has high load. Please try again later." from https://www.centos.org/forums/search.php?search_id=unreadposts Is there a problem? -- J Martin Rushton MBCS -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 836 bytes
2020 Jul 08
3
USB-serial adapter for CentOS 7
...is message in error, please notify the sender > immediately by e-mail and delete all copies of the message. > > > > > _______________________________________________ > CentOS mailing list > CentOS at centos.org > https://lists.centos.org/mailman/listinfo/centos > -- Tate Belden "The Dungeon <http://ka7o.net>" We are dreamers, shapers, singers and makers. We study the mysteries of laser and circuit, crystal and scanner, holographic demons and invocations of equations. These are the tools we employ, and we know many things. --Elric