similar to: ABA's Brain Explorer

Displaying 20 results from an estimated 100 matches similar to: "ABA's Brain Explorer"

2008 Jul 12
1
ABA's Brain Explorer and the OpenGL offset problem
I've seen reports on appdb of SketchUp having the same problems. Have these been resolved yet? I think this has been called the "OpenGL offset problem". http://appdb.winehq.org/objectManager.php?sClass=version&iId=6842&iTestingId=21368 > B) The area between the window pane and the edge of the OpenGL window > never updates, collects copies of other windows, is
2019 Jan 29
3
Samba and UFW
Here is the ufw.log after enabling logging medium and trying to connect to the windows net. Unfortunately the web Microsoft page is in German. I think it says window uses smb1 syntax. Jan 27 15:11:09 martin-RB042AV-ABA-a1410y kernel: [ 887.241685] [UFW BLOCK] IN=enp2s5 OUT= MAC=00:19:21:a2:11:5e:74:27:ea:ab:1e:e0:08:00 SRC=192.168.254.15 DST=192.168.254.39 LEN=90 TOS=0x00 PREC=0x00 TTL=128
2019 Jan 28
1
Samba and UFW
Rowland, Got more problems after I copied the requested files using gedit I can no longer connect to the Windows 8.1 PC. The error is "Unable to mount location - Failed to retrieve list from service - Invalid argument. I have no idea where this one comes from. Have rebooted both machines - no change. Without being connected to the network I cannot list the current smb.conf file on the
2007 Aug 07
3
About grep
Hi,everyone. I have a problem when using the grep. for example: a <- c("aa","aba","abac") b<- c("ab","aba") I want to match the whole word,so grep("^aba$",a) it returns 2 but when I used it a more useful way: grep("^b[2]$",a), it doesn't work at all, it can't find it, returning integer(0). How can I chang the
2016 Oct 28
0
Panic: file dsync-brain-mailbox.c: line 358 (dsync_brain_sync_mailbox_deinit): assertion failed: (brain->failed || brain->sync_type == DSYNC_BRAIN_SYNC_TYPE_CHANGED)
On 28 Oct 2016, at 15:36, Gilles Chauvin <gilles.chauvin at univ-rouen.fr> wrote: > > Hello, > > Here is a Panic that happened while doing some testing with two servers both running Dovecot v2.2.26 on CentOS 7. > > These are test servers owning 32 accounts whose data were copied from our production server. > > > What I've done is: > > server01#
2010 Aug 04
6
applying strsplit to a whole column
I am sorry, I'd like to split my column ("names") such that all the beginning of a string ("X..") is gone and only the rest of the text is left. x<-data.frame(names=c("X..aba","X..abb","X..abc","X..abd")) x$names<-as.character(x$names) (x) str(x) Can't figure out how to apply strsplit in this situation - without using a
2016 Oct 28
2
Panic: file dsync-brain-mailbox.c: line 358 (dsync_brain_sync_mailbox_deinit): assertion failed: (brain->failed || brain->sync_type == DSYNC_BRAIN_SYNC_TYPE_CHANGED)
Hello, Here is a Panic that happened while doing some testing with two servers both running Dovecot v2.2.26 on CentOS 7. These are test servers owning 32 accounts whose data were copied from our production server. What I've done is: server01# doveadm force-resync -A '*' server01# doveadm replicator replicate -f '*' For 5 accounts I obtained the following crash:
2017 Sep 21
0
Heal Info Shows Split Brain, but "file not in split brain" when attempted heal
Hello I am using Glusterfs 3.10.5 on CentOS7. A replicated distributed volume with a dist-rep hot tier. During data migration, we noticed the tierd.log on one of nodes was huge. Upon review it seemed to be stuck on a certain set of files. Running a "gluster vol heal VOL info" showed that those same files caused problems in the tier, were in split brain. So we went to fix split
2012 Aug 14
0
SayUnixTime quandry
Hi Gang, Hopefully somebody out there has a "doh" for this one. My dialplan announces the date and time using SayUnixTime. When I run this: exten => 36225,1,Set(ABA=999999999) exten => 36225,n,Background(telbank/${ABA}/${CHANNEL(language)}/thetimeis) exten => 36225,n,sayunixtime(,,Abe 'digits/at' IMP) I get this CLI output -- Executing
2004 Aug 30
3
cannot access files after update samba 3.0.5 -> 3.0.6 (Redhat 6.2)
Redhat 6.2 kernel 2.2.14-12 Samba 3.0.6 compiled with ./configure --prefix=/usr/local/samba --localstatedir=/var/log/samba --with-lockdir=/var/lock/samba --with-privatedir=/etc/rc-abas.d --with-configdir=/etc/rc-abas.d --enable-debug I can list directories and write files on a samba share but cannot read files. This happens with Windows XP client or smbclient. After downgrading to 3.0.5 samba
2016 Jun 04
0
factors with non-unique ("duplicated") levels have been deprecated since 2009 -- are *more* deprecated now -- and why you should be hesitant misusing suppressWarnings()
>From this bug report (it's a proposal for speedup only, not a bug), https://bugs.r-project.org/bugzilla/show_bug.cgi?id=16895#c6 the fact that you can construct factors with non-unique aka "duplicated" levels in R has been re-raised. As mentioned there, we had a small discussion here (on 'R-devel') a bit more than 7 years ago, where I had said that indeed R core had
2008 Mar 12
3
Converting a data frame with values into a matrix/
Dear Group, I have a data frame like the following: x <- c("Mike","A",0.01) x1 <- c("Carl","A",0.2) x2 <- c("Gene","C",0.3) x3 <- c("James","A",-0.3) x4 <- c("Dough","B",0) xx <- rbind(x,x1,x2,x3,x4) colnames(xx)<-c("Name","Class","NES") xx
2019 Jan 29
2
Samba and UFW
Rowland, I found the reason for the "wrong argument" error. The windows firewall was set to block remote connections. Fixed that now I'm able to connect to the network. Now I'm back to the original problem. That is I cannot connect to the windows network with ufw enabled. Error "Cannot mount location - file or directory does not exist". If I press ok the error
2018 Mar 24
0
How to integrate a dynamic code within a R script?
Hi, I am working on a script which should includes a dynamic listing, i.e. # SCRIPT BEGINS # some R procedures here # DYNAMIC PART BEGINS d1$X5 <-f1("AAA") d1$X5 <-f1("AAa") d1$X5 <-f1("ABa") # etc... d1$X6 <-f2("AAA") d1$X6 <-f2("AAs") d1$X6 <-f2("ABs") # etc... # DYNAMIC PART ENDS # other procedures here # SCRIPT
2018 Oct 03
1
2038 year Problem
At Wed, 3 Oct 2018 08:49:56 -0500 CentOS mailing list <centos at centos.org> wrote: > > > From: Johnny Hughes <johnny at centos.org> > To: centos at centos.org > Message-ID: <fd4926e4-5430-7203-8f51-07d6ec4df2de at centos.org> > Subject: Re: [CentOS] 2038 year Problem > References: <8831B7AE-76C1-4CF1-815C-EF52D4C5DE10 at abas.de> > In-Reply-To:
2002 Jan 27
0
Beta Brain-deadness
--------------Boundary-00=_0ISLLHMP6MR2D0LS3C6S Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Attached is an updated firewall script that gets the order of things corr= ect=20 (I hope) in the stop_firewall() function. -Tom --=20 Tom Eastep \ A Firewall for Linux 2.4.* AIM: tmeastep \ http://www.shorewall.net ICQ: #60745924 \
2002 Jul 30
2
Alpha, configure and (brain dead) bash?
System: Alpha Tru64 5.1a, openssh 3.4p1 and bash 2.04. Problem: when configure comes to the test to find xauth, it is not able to find it in /usr/bin/X11. This path is listed as one to test while looking for xauth. It is of course found if I define the exact path with --with-xauth. Any one good with configure and bash to help me get this automatically found? Thanks in advance, Keith
2011 Jan 01
4
Brain Fitness Pro By MindeSpark
I read this article and bought the software so I could use it on linux. I am a newbie on linux. It say it works with Wine version 1.1.6 using winetricks. i dont even know what version of the brain fitness software I have. How do I get wine 1.1.6? Any advice? http://appdb.winehq.org/objectManager.php?sClass=version&iId=14227 This is the error when I try to click setup icon: The file
2011 Apr 09
0
Endurance is the brain, YouSheng is better.
People always nostalgia pure childishness, secular impact to the more intense, the more precious outdid themselves. Perhaps this is natural law rule, human innate responses. ChenYuan short flit, feeling the world love radiant. Short life course, why can't let each wholesalers (http://www.ebuybus.com)
2011 Nov 14
1
WHat's Your Brain Grade?
Friends Human Brain is Mysterious. It is More Powerful than any super computer in Thsi world. you can Do things Like You have never imagined before, Using Your Mind. Like: Controlling Any Person Using Your Mind (He/she will do whatever you want them to do Bain as a Remote Control. To Putt Off and On the Devices using Your Brain, and not touching The remote control at all Click Here To Use Your