search for: farili

Displaying 20 results from an estimated 21 matches for "farili".

Did you mean: farily
2006 Oct 19
2
OT :JavascriptSortableTables
I found this on the rails wiki http://www.kryogenix.org/code/browser/sorttable/ Looked farily easy, class and id for the table. Dropped the JS in to application.js. Problem is it''s putting the sort link on the first row of data and not on <thead> Anyone know how to fix it ? Here''s a bit of my table: <table class="sortable" id="poso">
2017 Aug 01
3
configure.ac
Hi, Just a quick mail to mention that I cannot generate a new configure script using autoconf or autoreconf. I had edited the configure.ac and thought ... "oh, that's my fault", but then I tried it on R-patched and R-3.4.1 without touching configure.ac and had the same problems. The "building R packages" documentation seems to suggest that "autoconf" should take
2001 Jul 27
2
Strane remount behaviour with ext3-2.4-0.9.4
Following the announcement on lkml, I have started using ext3 on one of my servers. Since the server in question is a farily security-sensitive box, my /usr partition is mounted read only except when I remount rw to install packages. I converted this partition to run ext3 with the mount options "nodev,ro,data=writeback,defaults" figuring that when I need to install new packages etc,
2000 Apr 10
2
Metadata, file signatures, and extentions
Hi, I've been working writing some tools that deal with id3v2 tags on mp3 files. id3v2 is this really, really long specification with places for all kinds of metadata for media. I've looking at the sample vorbis encoder and a file I made from it I noted that you have some a comment field, and I was wondering if you had any plans to support more metadata, and if you would
2002 Aug 15
5
REPOST: queuepause/queueresume and w2k machines, won' t work
[Shane Drinkwater] Daniel, I have the same probelm. These are the steps I did in a previous thread... Jim, I think I found another bug... I really seem to be in printer hell :(.... I found that windows 2k doesn't update its status "ready" or "paused" when used with samba. Here is what I did... 1.) enable all of the lpr/lpd queues. check em' with lpq... 2.)
2006 Jun 18
3
ActiveRecord Help - Not finding Data
Hello, I''m farily new to RoR and am having a problem trying to retrieve data from my database. Here is the code from my controller: def index zip = params["zip"] @zip1 = Zipcode.find(:first, :conditions => ["zip = ?", zip]) lat = @zip1.latitude.to_f long = @zip1.longitude.to_f radius = 50 @bookstores = Bookstore.find_by_sql ["SELECT * FROM
2013 Apr 07
0
Jenkins Plugins & puppet
I''ve been looking at the problem of jenkins plugins, and they seem to fit the custom package provider model vs a set of exec scripts in a module. It''s possible to get a list of versioned plugins that are present, and tell the system to install new ones, either from a source string, or a version (built from a URL), or central list of the plugins. The major problem I see is
2001 Aug 23
0
Interrupts (was Re: X11 protocol errors ...) (PR#1068)
Martin wrote: > Just this morning, > I found (again!, we had something close to this before) > the following related bugous behavior : > After interrupting a plot (which would have taken a few minutes and was > "wrong" anyway), starting another plot, interrupting again [with C-c], > and maybe the same once more, > R started just giving a ">" prompt
2017 Aug 14
0
Re: virsh blockcommit fails regularily (was: virtual drive performance)
On Mon, Aug 14, 2017 at 08:42:24 +0200, Dominik Psenner wrote: > Hi, Hi, > > a small update on this. We have migrated the virtualized host to use the > virtio drivers and now the drive performance is improved so that we can see > a constant transfer rate. Before it used to be the same rate but regularly > dropped to a few bytes/sec for a few seconds and then was fast again.
2017 Aug 01
0
configure.ac
If you check developer.r-project.org, you'll find links to the scripts that we use for building releases and pre-releases of R. These are usually run on a Mac, but shouldn't require much change for Linux. In particular, notice this lead-in in the prerelease script: rm -rf BUILD-dist mkdir BUILD-dist cd R aclocal -I m4 autoconf cd ../BUILD-dist ....etc.... -pd > On 1 Aug 2017, at
2009 Jun 18
2
Speex problem installing on CentOS 5.3
Hello, all. I am delightfully slogging my way through installing and configuring Asterisk 1.6.1.1 on CentOS 5.3. I'm learning lots and admiring the product but I'm having a problem getting speex to install and I would very much like to use it. It is not available in menuselect and the problem appears to be with speex_preprocess_ctl: [root at pbx01 asterisk-1.6.1.1]# grep -i speex
2007 Dec 15
1
Is 'force user/group' misbehaving?
Hello list, I'm running ubuntu server 7.10 amd64 and trying to set up a samba server for a LAN. Samba version is 3.0.26a IIRC (I can't access the machine ATM) I'm stumped with a problem and I believe it's related, somehow, with the 'force user' parameter, so I created this testcase to seek for help... In the example smb.conf I'm trying to create one share accessible
2008 Dec 15
5
pci passthrough under xen-3.3 without VT-d
Hi all! I''m hoping someone here might be able to help. I''m familiar with several UNIX''es, though farily new to Linux... I''m running RHEL 5.2. I''ve got the RHEL kernel headers installed, etc, and compiled xen-3.3. Once that was built, I rebuilt libvirt, etc, the kernel, and all the modules. The whole mess boots and runs fine... mostly. My hardware
2004 Sep 15
2
Results of 13 month study on reducing telemarketing calls
Hello-- I've been playing with the privacy options on my home/home-office system since August last year, and have some results, gleaned from my CDR records, which over the last 13 months, number a total of 8672, which includes incoming, as well as outgoing calls. Before I start spitting out numbers, let me note that with the current setup, I haven't had to tell a single telemarketer
2003 Mar 30
0
why do file locks revert to root ( fairly long)
I help an NT admin that has recently added a redhat 8.0 based samba server to his network. the share is one that is a core service for the operation of the business and has about 50 users constantly accessing data from several accounting and tax preparation applications. One of the primary applications requires update farily recently as of late and the admin is having problems getting all files
2017 Aug 14
2
virsh blockcommit fails regularily (was: virtual drive performance)
Hi, a small update on this. We have migrated the virtualized host to use the virtio drivers and now the drive performance is improved so that we can see a constant transfer rate. Before it used to be the same rate but regularly dropped to a few bytes/sec for a few seconds and then was fast again. However we still observe that the following fails regularily: $ virsh snapshot-create-as --domain
2006 Feb 24
4
Any way to pass state to a component?
I am trying set up a rails app that utilizes components. I need to be able to pass some state (a bunch of name value pairs) from the Main controller to the component. Is there any way to pass this state info using render_component? Regards -- Posted via http://www.ruby-forum.com/.
1999 Nov 11
1
VQ codebook sanity check (please help)
Hello folks, The codebook infrastructure for Vorbis is now well underway. This is it! The last piece needed for *real* bitstreams. To that end, I have a decent VQ codebook generator running. I was originally using some farily typical merge/split algorithms and then decided that the right way to do this was to model a VQ codebook as an m-dimensional set of bubbles (like a foam). I know there
2019 Feb 28
3
Making LLD PDB generation faster
As for multithreaded ghashes: Even if the hashtable stores 32-bit indices to SeenHashes, you would still need to compare the ghashes for collisions: https://github.com/llvm/llvm-project/blob/master/llvm/include/llvm/ADT/DenseMap.h#L627 Finding the 32-bit index in the hashtable doesn’t necessarily mean it’s the right one. The following table shows the collision distribution when inserting (type)
2011 Aug 19
26
Pulse audo in 1.3.25+
So I used to use the winepulse patch for wine. (Yes I like pulse). But since 1.3.25+ uses mmdevapi for audio, that patch no longer works. That author points to a wine multimedia git, however, after installing that I have no more sound in any wine application, and the winecfg test audio says audio failed. How do I get this new sound server working in wine? -- Sincerely, MacNean C. Tyrrell