Displaying 16 results from an estimated 16 matches for "ewwwe".
Did you mean:
ewww
2011 Dec 09
2
unexpected behaviour of sub() / usage of regexp
Dear R users,
the way I understand the documentation of sub() and regexp the following code:
sub('[[:digit:]]{1,2}', '', '9ewww')
... should yield:
'ewww'
It returns, however:
'www'
Why is this the case? My code should just substitute 1 (minimum) or up to 2 (maximum) digits, i.e. numbers and not the 'e' in the string. Do I misinterpret
2012 Nov 26
3
Help in splitting the records
Hi
I have set of records seperated by a separator say "$$$" i want to get the
values in a dataframe.
eq
qwer$$12$$qwre
ewrtr$7789$ewwe
I want the output as\
V1 V2 V3
qwer 12 qwre
ewrtr 7789 ewwwe
Please help me
-----
Thanks in Advance
Arun
--
View this message in context: http://r.789695.n4.nabble.com/Help-in-splitting-the-records-tp4650827.html
Sent from the R help mailing list archive at Nabble.com.
2010 Jun 17
2
[LLVMdev] Relocation issue with jump tables in ELF object files on X86_64
(llvm 2.6)
We have an application where we are using LLVM to generate ELF object files for X86_64. At runtime we load these objects files into memory using our own ELF loader.
Everything is working except for the jump tables.
The ELF emitter is generating JMPQ instructions using X86::reloc_absolute_word_sext relocations which we are unable to patch to the jump table in the .rodata segment
2010 Jun 17
0
[LLVMdev] Relocation issue with jump tables in ELF object files on X86_64
On Thu, Jun 17, 2010 at 12:38 PM, Smith, Tim <tim at bioware.com> wrote:
> (llvm 2.6)
>
>
>
> We have an application where we are using LLVM to generate ELF object files
> for X86_64. At runtime we load these objects files into memory using our
> own ELF loader.
>
>
>
> Everything is working except for the jump tables.
>
>
>
> The ELF emitter is
2010 Jun 17
2
[LLVMdev] Relocation issue with jump tables in ELF object files on X86_64
I had this problem a while back and received this response from Jeffrey. FWIW this is fixed in 2.7 by defaulting to CodeModel::Large and using indirect (far) calls.
-----Original Message-----
From: Jeffrey Yasskin [mailto:jyasskin at google.com]
Sent: Monday, December 07, 2009 11:32 AM
To: Howell, Nathan
Cc: LLVM Developers Mailing List
Subject: Re: [LLVMdev] 2.6 JIT using wrong address for
2017 Mar 24
2
"isolinux.bin missing or corrupt" when booting USB flash drive in old PC
Hi,
i am looking now at the code which i assume loads the rest of isolinux.bin.
The entry point for program execution from the MBR is obviously at
http://git.zytor.com/syslinux/syslinux.git/tree/core/isolinux.asm#n186
(Do i get it right that this is the Intel syntax ? (Gronfff))
If POP yields the victim of the most recent not yet popped PUSH, then
this does not look correctly coordinated
2017 Mar 24
0
"isolinux.bin missing or corrupt" when booting USB flash drive in old PC
Hi,
i now believe to see a difference between isohdpfd.S and isohdpfc.S
which explains why isohdpfc.bin works with isolinux.bin on our
virtual BIOSes:
isohdpfc pushes the CX value to the stack which it gets from INT 13 AH 41.
Quite surely bit 0 of that CX is not set. But bit 2 "Enhanced Disk Drive"
could be set.
https://en.wikipedia.org/wiki/INT_13H
I understand on David's BIOS
2011 Jun 07
0
fogg Player HIGHJACKED libreFM
lol, your right john, i was also looking at
http://savannah.gnu.org/bzr/?group=librefm
better?
-winn
On Tue, Jun 7, 2011 at 1:10 PM, Jonathan Nalley <jnalley at jnalley.com> wrote:
> Flash? ? ewww.... That's not very freedom-loving.
>
> On Tue, Jun 7, 2011 at 11:29 AM, Winn Johnston <winnjohnston at gmail.com> wrote:
>> Anyone using this for their streams?
2006 Mar 21
0
pfpro4r - Ruby bindings for Payflow Pro
pfpro4r is a set of bindings for [2]Verisign''s Payflow Pro SDK.
If you''re distributing an app in Ruby/Rails and you use Verisign''s
Payflow Pro, you basically have three options (paraphrased from the
[3]RoR Wiki):
1. Call the Java/Perl/PHP API from Ruby. (Ewww...)
2. Call Verisign''s command line scripts. (DO NOT DO THIS. This is
2017 Mar 24
3
"isolinux.bin missing or corrupt" when booting USB flash drive in old PC
On Fri, Mar 24, 2017 at 05:38:31PM +0100, Thomas Schmitt via Syslinux wrote:
> isohdpfc pushes the CX value to the stack which it gets from INT 13 AH 41.
> Quite surely bit 0 of that CX is not set. But bit 2 "Enhanced Disk Drive"
> could be set.
> https://en.wikipedia.org/wiki/INT_13H
>
> I understand on David's BIOS after
>
> andw $1,%cx
2010 Jun 17
0
[LLVMdev] Relocation issue with jump tables in ELF object files on X86_64
We generating object files, not using the JIT so I don't know if those fixes applies in our case.
As far as using PIC goes, the ELFCodeEmitter has asserts to tell you that PIC isn't currently supported.
Will have to get the 2.7 update and try it out.
Thanks.
-----Original Message-----
From: Howell, Nathan [mailto:nhowell at ebay.com]
Sent: Thursday, June 17, 2010 3:45 PM
To: Eli
2017 Mar 26
0
"isolinux.bin missing or corrupt" when booting USB flash drive in old PC
On Fri, Mar 24, 2017 at 2:55 PM, Martin Str|mberg via Syslinux
<syslinux at zytor.com> wrote:
> On Fri, Mar 24, 2017 at 05:38:31PM +0100, Thomas Schmitt via Syslinux wrote:
>> isohdpfc pushes the CX value to the stack which it gets from INT 13 AH 41.
>> Quite surely bit 0 of that CX is not set. But bit 2 "Enhanced Disk Drive"
>> could be set.
>>
2011 Nov 29
3
fill binary matrices with random 1s
Dear all, I am finding difficulty in the following, I would like to
create an empty matrix e.g. 10x10 of 0s and sequentially fill this
matrix with randomly placed a 1s until it is saturated. Producing 100
matrices of sequentially increasing density., This process needs to be
randomized 1000 times., I assume i should run this along the following
lines, 1) Create 1000 matrices all zeros, 2) add
2007 Mar 05
4
Router dropping packets?
Hey guys,
I have several Linux routers in place at high-usage
locations (student apartment complexes). I''m having
trouble with some of the routers which use 6Mbit DSL
lines as their Internet feed. The routers use PPPoE
and perform NAT.
During peak usage periods, the routers are dropping
alot of packets. I''m lead to believe this is because
there are too many active
2014 Nov 01
4
[LLVMdev] Using the unused "version" field in the bitcode wrapper (redux)
Hi Sean,
> Rafael gave me some of the backstory on this. Basically it is to work around some buggy behavior in the Darwin ar. Adding that on the front of the bitcode file just to get a version doesn't seem
> like a very clean thing to do.
>
> Doug, what other alternatives did you guys consider before settling on this?
>
> As for #2 above, the non-universality of the wrapper
2006 Jul 26
5
linux-2.6-xen.hg
Hi,
Is the http://xenbits.xensource.com/linux-2.6-xen.hg tree still being
updated? if not, what''s the preferred Linux tree to track that has all
of the Xen bits?
Thanks,
Muli
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel