search for: ignoramus

Displaying 9 results from an estimated 9 matches for "ignoramus".

2012 Sep 10
1
Advice on Namespaces
...hit CRAN or even be distributed beyond a relatively narrow audience at my company. Nevertheless, I have tried to adhere to practices that would work if it were. With that in mind, I have read the Writing R Extensions Manual (and my humble kudos to its writers, as it has successfully guided even an ignoramus like myself ) and Luke Tierney's R Newsletter documentation on Namespaces. However, it is still not clear to me (see above ignoramus comment!) what functions -- and especially which S3 methods whose generics I define in my package -- should be exported and which should not. Perusing other packa...
2006 Jan 05
1
Font Question
...lated to wine in that the font was much bigger with earlier versions of wine (I use the current CVS version of wine). Is there some way to choose the default font/fontsize used for an application? I've used winecfg (nothing relevant there) and regedit (maybe relevant, but as I'm a windows ignoramus, I don't know what to change), but couldn't figure out what to do. (I have created a windows/fonts directory and linked all my ttf fonts there). Thanks in advance David
2017 Jan 24
1
metaflac crashes adding cuesheet
...t gotten any response from posting on their mailing list. I do get the same crash when running metaflac without the --import-tags-from, so I'm not sure this is the problem. Unless perhaps there's an absolute requirement for tag info? I could try debugging it myself, but I'm a total ignoramus when it comes to audio codecs, so I've no idea where to even start. Or FTM, how to even get gdb to find the source for debugging. James On Tue, 24 Jan 2017 00:58:47 -0800, Erik de Castro Lopo <mle+la at mega-nerd.com> wrote: > James wrote: > >> The command used by ab...
2006 Mar 24
0
Adding gs line to Renviron file on Mac
...roblem contained in the archives, I still get Error in bitmap("acaldi.bmp", res = 100) : sorry, 'gs' cannot be found /bin/sh: line 1: gs: command not found in response to the bitmap(acaldi.bmp, res=100) command. Any hints on what I'm doing wrong? I'm a relative ignoramus on programming languages, so I really don't know where to begin fixing this problem. Thanks. Jim Milks Graduate Student Environmental Sciences Ph.D. Program Wright State University Dayton, OH 45435
2012 Sep 27
1
Puppetmaster with mongrel
Hey Guys, So i have puppetmaster running and well. I have a few questions 1) Even though i followed instructions on http://projects.puppetlabs.com/projects/1/wiki/Using_Mongrel on using Mongrel, puppetmaster is probably still using webrick since the client connection timeout still occurs. How do i make it use mongrel? 2) Now after messing a little with /etc/sysconfig/puppetmaster i increased
2017 Jan 23
3
metaflac crashes adding cuesheet
Erik, The command used by abcde is metaflac --no-utf8-convert --import-cuesheet-from=/home/me/Audio/abcde.50107806/cue-50107806.txt --import-tags-from=- /home/me/Audio/abcde.50107806/track1.flac but I get the same result re-trying without the --no-utf8-convert and -no-utf8-convert. Here's the cuesheet: PERFORMER "William Shakespeare" TITLE "A Midsummer
2005 May 29
0
Re: Demonizing generic Linux issues as Fedora Core-only issues -- WAS: Hi, Bryan
...100% of regression testing onto yourself. ;-> > I've enjoyed this discussion and learned a lot about RedHat that I > didn't know. I thank you for your rational comments. Unlike Bryan, I > think you realize that not everyone who disagrees with RedHat on a > given topic is an ignoramus. Thank you for demonizing me so. The only time I said someone was "ignorant" is when they absolutely refused to stop and understand why Red Hat develops RHEL the way they do, and want to call things "Fedora Core / RHEL-only bugs." In other words, blindly assign blame to Red H...
2002 Aug 13
1
mdct.c pointer to array conversion
Hi all, I'm attempting to convert all the pointers to arrays the mdct_backward function so it can be partitioned off for a hardware implementation. Although this code is quite short I'm finding it a little tricky. As it stands, mdct_backward is passed values by reference i.e. void mdct_backward(mdct_lookup *init, DATA_TYPE *in, DATA_TYPE *out) o my modified version starts void
2011 Dec 04
3
Vectorization instead of loops problem
Hello, I am having problems vectorizing the following (i/o using a for/next/while loop): I have 2 sequences such as: x, y 1, 30 2, -40 0, 50 0, 25 1, -5 2, -10 1, 5 0, 40 etc etc The first sequence (x) takes integer numbers only: 0, 1, 2 The sequence y can be anything... I want to be able to retrieve (in a list if possible) the 3 last values of the y sequence before a value of 1 is