similar to: User Group Brisbane, Australia

Displaying 20 results from an estimated 800 matches similar to: "User Group Brisbane, Australia"

2006 Feb 22
4
Rails in Brisbane, Australia
Hi Any Rails developers from Brisbane, Australia? Any companies from Brisbane developing Rails applications? -- Aneesha -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060222/cce3b491/attachment.html
2004 Mar 02
0
Virus notification
################# VIRUS NOTIFICATION ################# A message you sent to bc@ripe.net contains a virus or a worm, and was not delivered. -- DATE : Tue, 2 Mar 2004 21:50:25 +0000 SUBJECT : Status VIRUS : W32/Rox-A -- It is possible your computer is infected without your knowledge. Please download a current virus scanner and check your computer. If you think it's an
2007 Mar 05
4
Identifying last record in individual growth data over different time intervalls
Hi I have a plist t which contains size measurements of individual plants, identified by the field "plate". It contains, among other, a field "year" indicating the year in which the individual was measured and the "height". The number of measurements range from 1 to 4 measurements in different years. My problem is that I would need the LAST measurement. I only
2019 Mar 03
2
bug: sample( x, size, replace = TRUE, prob= skewed.probs) produces uniform sample
When `length( skewed.probs ) > 200' uniform samples are generated in R-devel. R-3.5.1 behaves as expected. `epsilon` can be a lot bigger than illustrated and still the uniform distribution is produced. Chuck > set.seed(123) > > epsilon <- 1e-10 > > ## uniform to 200 then small > p200 <- prop.table( rep( c(1, epsilon), c(200, 999-200))) > ## uniform to 201
2003 Aug 25
1
Samba 3 problems with file read/writes
I just updated my web server box, running Debian testing, to samba v3, and am having some problems with a share. Can anyone advise me on this? I have a share called "allsrvr" which is defined in my smb.conf file as follows. Please note that security isn't an issue here. The server is connected to my home system via a VPN and all smb/cifs ports are closed to the world at the
2013 Feb 28
0
R and S+ Courses: Brisbane, Melbourne & Sydney
Hi, (apologies for cross-posting) SolutionMetrics is presenting Introductory & Intermediate R and S+ courses in Brisbane, Melbourne & Sydney - March & April 2013. S+ FinMetrics course in Sydney - June 2013. More info below. Course Schedule - Click Here<http://bit.ly/13lJ4ag> To book, please email enquiries@solutionmetrics.com.au<mailto:enquiries@solutionmetrics.com.au>
2011 Apr 02
4
[Bug 35889] New: Screen of Geforce4 440 GO NV17 corrupts while booting
https://bugs.freedesktop.org/show_bug.cgi?id=35889 Summary: Screen of Geforce4 440 GO NV17 corrupts while booting Product: xorg Version: unspecified Platform: x86 (IA32) OS/Version: Linux (All) Status: NEW Severity: normal Priority: medium Component: Driver/nouveau AssignedTo: nouveau at
2013 Oct 18
2
Hack
Today I was hacked but caught it very quickly. This is the weird part, they hacked an IP Auth based account by simply knowing the account name. How is this possible? I am running Asterisk 11.5.0. Now it's my fault I used a dictionary based account name but how did they bypass the set ip I had under the account for this host. This also happened with fail2ban running and I pay for Humbug .
2001 Dec 03
0
Socket address problems with 2.5.1pre1
The problem shows in the following log snippet. The numeric address of the peer (localhost in this case) is garbage. rsyncd[32671]: reverse name lookup failed rsyncd[32671]: rsync: forward name lookup for failed: Name or service not known rsyncd[32671]: rsync on debian/ from UNKNOWN (::10fa:ffbf:a426:608%5) rsyncd[32671]: wrote 616 bytes read 70 bytes total size 143069 I am using linux
2009 Jul 23
2
Analog FXO or IAX DIDS for new facility?
I am a Linux sysadmin who has been tasked with developing the phone system for our nonprofit's new US headquarters building. We cannot bring our legacy phone system with us, so I am building this completely from scratch. I have already read "Asterisk: The Future of Telephony" and done a fair amount of googling. I am completely sold on Asterisk, and the new building's
2006 Jun 13
0
[ANN/ADV] Rails Recipes is Shipping
Hi All, Pragmatic Dave Thomas tells me that Rails Recipes (http://pragmaticprogrammer.com/titles/fr_rr) is now shipping! He and Andy apparently have over a ton of books to deliver. If you''ve ordered a paper book, it''s soon on the way. If you''ve been waiting, now''s the time. Amazon is also has the book in stock
2006 Jun 21
0
[REMINDER!] RubyConf 2006 talk proposals now being accepted
[Strictly speaking, this isn''t really a "reminder", since I''m fairly sure the original announcement didn''t go to this list. Nonetheless -- here it is!] Hi everyone -- In case you missed it the first time (and rather a lot of you seem to have...) -- You can now submit a RubyConf 2006 presentation proposal, at: http://proposals.rubygarden.org You
2006 Feb 09
0
OSCON Call For Proposals Deadline (Feb 13)
Hello Rubyists! We on the OSCON presentation committee wanted to remind you all that the deadline for proposals for this year''s O''Reilly Open Source Convention is Midnight (PST) Feb 13. So you have the rest of this week and the weekend to get those talk proposals in! The talk proposal form is here: http://conferences.oreillynet.com/cs/os2006/create/e_sess/ You can read more
2006 Jan 01
0
An Orlando Ruby/Ruby_on_rails user group is forming
Hi all, Anyone in Central Florida wanting a Ruby and Ruby_on_rails user group, please contact Gregg Pollack (his email address is listed at http://www.rubygarden.org/ruby?Orlando), or if you can''t reach him, simply reply to this message and I''ll forward it to him. Thanks SteveT Steve Litt Author: * Universal Troubleshooting Process courseware * Troubleshooting
2006 May 18
4
Email Address verifier--eyes needed...
Folks: I''ve posted a really basic e-mail address verifier to http://wiki.rubygarden.org/Ruby/page/show/VerifyEmailAddress I''d appreciate folks who understand DNS and SMTP having a look at it to see if it looks reasonable. You could comment here or, possibly more usefully, comment on the wiki page itself. Thanks Dave
2006 Jan 16
11
Plans to intigrate ObjectGraph in to Rails
Are there any plans to move the schema definition from migrations to the model, where it should be? Like og does, which I think is used by the ruby Nitro framework... ObjectGraph: http://www.rubygarden.org/index.cgi/Libraries/og_tutorial.rdoc Example code: [code] class Post property :title, String, :sql => ''VARCHAR2(32) NOT NULL'' property :body, String property
2007 May 12
4
Multiply and format with thousands separator
I have just started with Ruby and Rails and am still greatly confuse, finding the usual tutorials not much help. What I want to do is take two numbers from my database, multiply them together and display them in a list with a comma for the thousands separator. This would be very easy to do in a spreadsheet, so I assumed it would be easy to do in Ruby on Rails but I can''t work out how. I
2005 Aug 29
1
[LLVMdev] Re: Forward of moderated message
llvm-bounces at cs.uiuc.edu wrote: > > ------------------------------------------------------------------------ > > Subject: > Fw: (by sospeng at tom.com)something is wrong , when compiling llvm on debian > From: > "4" <sospeng at tom.com> > Date: > Mon, 29 Aug 2005 20:05:46 +0800 (CST) > To: > llvmdev at cs.uiuc.edu > > To: > llvmdev at
1999 Jul 19
0
AARNET mirror (Australia) of CRAN/R now available
Thanks to the efforts of Jason Andrade at AARNET and the CRAN people there is now an Australian mirror of CRAN/R. The mirror will be updated daily. It is http://mirror.aarnet.edu.au/CRAN/ ftp://mirror.aarnet.edu.au/pub/CRAN/ To quote the web page "R, also known as `GNU S', is a system for statistical computation and graphics. It consists of a language plus a run-time environment with
2004 May 12
0
Asterisk Downunder (Australia & New Zealand)
It seems that there is considerable interest in Asterisk in both Australia and New Zealand. I am trying to gauge how much interest there would be in a get together for Asterisk users & developers downunder. I suggest you get back to me OFF list, so we don't flood the list. Just let me know if a) you think it is a good idea b) when would be a good time (a wide window would be