search for: moose

Displaying 20 results from an estimated 87 matches for "moose".

Did you mean: loose
2009 Jul 15
4
The Talking Moose
Anyone here remember the old Talking Moose desktop toy from the 80's? For the unitiated, the Talking Moose was a simple applet on old Mac computers that periodically displayed an animated Bullwinkle-lookalike moose in the corner of the screen, spouting witty phrases or biting insults, as well as commenting on various activities like ope...
2016 May 12
3
RPM perl requirements woes
...SON::backportPP) Error: Package: zonemaster-engine-1.0.13-1.el7.gii.x86_64 (/zonemaster-engine-1.0.13-1.el7.gii.x86_64) Requires: perl(namespace::clean::_Util) Error: Package: zonemaster-engine-1.0.13-1.el7.gii.x86_64 (/zonemaster-engine-1.0.13-1.el7.gii.x86_64) Requires: perl(Moose::Conflicts) Now, JSON::backportPP and Moose::Conflicts are part of JSON and Moose, respectively. However, those specific modules hide themselves from /usr/lib/rpm/perl.prov, by doing this: package # hide from PAUSE Moose::Conflicts; and package # This is JSON::backportPP JSON::PP; Th...
2010 Aug 23
1
Strange space characters in character strings
Hello everyone, I am reading a HTML table from a website with readHTMLTable() from the XML package: > library(XML) > moose = readHTMLTable("http://www.decisionmoose.com/Moosistory.html", header=FALSE, skip.rows=c(1,2), trim=TRUE)[[1]] > moose V1 V2 V3 1 07.02.2010 SWITCH to Long Bonds\n (BTTRX) $880,370 2 05.07.2010...
2013 May 09
1
AuthenticationFailedException: [IN-USE] Couldn't open INBOX: Permission denied
...rite_locks = fcntl passdb { driver = pam } ssl_cert = </etc/pki/dovecot/certs/server.crt ssl_key = </etc/pki/dovecot/private/server.key userdb { driver = passwd } protocol pop3 { pop3_uidl_format = %08Xu%08Xv } Here's an except of the maillog from a recent attempt: May 8 17:46:49 moose dovecot: auth: Debug: pam(lib.sysadmin,{ip removed}): lookup service=dovecot May 8 17:46:49 moose dovecot: auth: Debug: pam(lib.sysadmin,{ip removed}): #1/1 style=1 msg=Password: May 8 17:46:49 moose dovecot: auth: Debug: client out: OK#0111#011user=lib.sysadmin May 8 17:46:49 moose dovecot: aut...
2013 Feb 17
2
nested random factor using lme produces errors
Hi, I am running a mixed-effect model with a nested-random effect. I am interested in gut parasites in moose. I has three different type of treatment that I applied to moose which are from different "families". My response variable is gut parasites and the factors are moose families which is nested within treatment. My data is balanced. To answer this question, I used the lme function like this...
2016 Dec 02
0
Re: CentOS 7, PS-2 moose
On Fri, 2 Dec 2016 18:28, m.roth at ... wrote: > I just built a workstation, CentOS 7, fully updated. My user requires his > three-button mouse, telling me that imaging software is written for > three-button mice (so *please* don't tell me to tell him to get a new > mouse). > > Anyway, no cursor. In both /var/log/messages and journalctl, I see "unable > to enable
2016 Dec 02
1
CentOS 7, PS-2 moose
Yamaban wrote: > On Fri, 2 Dec 2016 18:28, m.roth at ... wrote: > >> I just built a workstation, CentOS 7, fully updated. My user requires >> his three-button mouse, telling me that imaging software is written for >> three-button mice (so *please* don't tell me to tell him to get a new >> mouse). >> >> Anyway, no cursor. In both /var/log/messages and
2005 Feb 18
5
Budgetone 101
Everytime that I make a call to a Budgetone 101 phone. I always see the following: -- Executing Dial("SIP/1001-bac5", "SIP/1000|20|tT") in new stack -- Called 1000 -- Got SIP response 302 "Moved Temporarily" back from 172.22.5.4 -- SIP/1000-465e is busy I can use X-Lite all the time to make a call without a problem, but any of the budgetone 101 phones
2005 Jan 17
1
Re: Any interest in a Canadian Asterisk
Quoting asterisk-users-request@lists.digium.com: > > Would it be considered trolling to start a thread on Cleaning Maple > > Syrup off of Dial Pads, or Wiring your Moose for Wi-Fi? > > Let's not forget the weekly "tooques and telephony" segment, and a > review of > the best block heaters for your wi-fi fones. > Oh, we're gonna have a good time next Thursday. We need to get Molson Canadian to sponsor us and find Bob & Doug for...
2016 Dec 02
4
CentOS 7, PS-2 moose
I just built a workstation, CentOS 7, fully updated. My user requires his three-button mouse, telling me that imaging software is written for three-button mice (so *please* don't tell me to tell him to get a new mouse). Anyway, no cursor. In both /var/log/messages and journalctl, I see "unable to enable mouse". What I read in messages and manpages is that PS-2 is default
2009 Jul 07
6
yum update error
...my CentOS 5.3 system with yum cause of the following error message. # yum update [...] Resolving Dependencies --> Running transaction check ---> Package exiv2.i386 0:0.18.2-1.el5.rf set to be updated ---> Package perl-Params-Util.i386 0:1.00-1.el5.rf set to be updated ---> Package perl-Moose.noarch 0:0.86-1.el5.rf set to be updated --> Processing Dependency: perl(Class::MOP) >= 0.89 for package: perl-Moose ---> Package perl-MRO-Compat.noarch 0:0.11-1.el5.rf set to be updated ---> Package exiv2-devel.i386 0:0.18.2-1.el5.rf set to be updated --> Finished Dependency Resolut...
2012 Mar 28
2
getopt does not work as expected!
...before 'q(status=0)' ------") q(status=0); } if ( is.null(opt$verbose ) ) { opt$verbose = 0 } if ( is.na(opt$verbose ) ) { opt$verbose = 0 } print(sprintf("%s: do something with %s!",self,infile)) If I run this script from the command line, I get the output: rose at moose:/home_moose/rose/Txt/src/Test/R(24)$ ./getopt_test.R [1] "/usr/lib64/R/bin/exec/R: do something with test.dat!" Why is commandArgs()[1] = "/usr/lib64/R/bin/exec/R" and not "getopt_test.R" as described by the help (?getopt)? rose at moose:/home_moose/rose/Txt/src/Tes...
2011 Apr 16
6
Winetricks did not load
Testing UBUNTU 11.04 Beta 2 with wine 1.3.15 from the download page. Winetricks did not come in with the download and is not in synaptic. Hope this will be fixed soon.
2004 Sep 14
0
RV: SAMBA & ISAM Databases
You were correct. The problem was with smbfs. But now I have aproblem I didn`t have before: if a file is open by the application in Linux I can not create new records thru the application in Win. I can modify existing records but I can not create new records. Any ideas Jos? Guimar?es [ pg@moose-software.com ] Director Moose Software http://www.moose-software.com -----Mensaje original----- De: Volker Lendecke [mailto:Volker.Lendecke@SerNet.DE] Enviado el: martes, 14 de septiembre de 2004 11:04 Para: Pepe Guimar?es CC: samba-technical@lists.samba.org; samba@lists.samba.org Asunto: Re: SA...
2001 Jul 01
1
directX
...all to compile for some reason, so I've stuck with the rpm. I know that people have gotten diablo II and other directX programs to run. What am I missing? Also, when I run the setup (which DOES run, I get the following error/warnings: is this normal? Script started on Sun Jul 1 16:03:45 2001 Moose$ wine --winver=win20 d:\\setup.exe fixme:module:CreateProcessA (E:\d2l_Install.exe,...): CREATE_NEW_CONSOLE ignored fixme:module:CreateProcessA (E:\d2l_Install.exe,...): CREATE_NEW_PROCESS_GROUP ignored fixme:module:CreateProcessA (E:\d2l_Install.exe,...): CREATE_DEFAULT_ERROR_MODE ignored fixme:pt...
2010 Dec 12
9
SPAM?
Received this email this morning. But I seem to be the last poster on that list and search says the topic doesn't exists. Is there a next page problem on the forum, or is it just spam? Hello, You are receiving this email because you are watching the topic, "The perils of GMAX" at WineHQ Forums. This topic has received a reply since your last visit. You can use the following link
2010 Nov 08
6
Ubuntu 10.10 AMD64 and building wine
Hooray! I got a new machine. However, if I want to continue doing things with wine, I need a little more information than is in the wiki on building wine for 32-bit and/or 64-bit operations. First question: Are the instructions for 10.04 still OK? Is there any real change? Second question: If I follow the line in the RegressionTesting page that says: [code]CC="ccache gcc -m32"
2017 Aug 25
4
GlusterFS as virtual machine storage
> This is true even if I manage locking at application level (via virlock > or sanlock)? Yes. Gluster has it's own quorum, you can disable it but that's just a recipe for a disaster. > Also, on a two-node setup it is *guaranteed* for updates to one node to > put offline the whole volume? I think so, but I never took the chance so who knows. > On the other hand, a 3-way
2004 Sep 14
5
SAMBA & ISAM Databases
...Try to access the data from Linux with the same full path as Win clients. In the above case //pepe/testdata rather than /testdata Finally: shouldn't "posix locking = yes" in smb.conf give consistent locking between SMB and posix (NFS or local) access? TIA Jos? Guimar?es [ pg@moose-software.com ] Director Moose Software http://www.moose-software.com <http://www.moose-software.com/>
2010 Jul 23
9
winetricks jet40 failed reason 2?
Terminal session: john at john-lynx-lts:~$ winetricks jet40 Executing wine /home/john/.winetrickscache/jet40sp8_9xnt.exe fixme:setupapi:extract_cabinet_file awful hack: extracting cabinet "C:\\users\\john\\Temp\\IXP001.TMP\\Jetsetup.CAB" err:ole:TLB_ReadTypeLib Loading of typelib L"C:\\Program files\\Common files\\Microsoft shared\\dao\\dao2535.tlb" failed with error 2 Install