Displaying 20 results from an estimated 702 matches for "kludged".
Did you mean:
kludge
2005 Feb 08
0
Samba patch kludge-gmt fixes red files in WinCvs
Hi all,
in our LAN we use a Samba server (version 2.2.9) on Linux (Debian Woody)
to provide file services to workstations running (mostly) W2K. WinCVS is
a GUI frontend to the popular CVS version control system. After the swap
to and from daylight savings time WinCVS erroneously flags all files in
cvs working directories on Samba shares as modified (because of the icon
color WinCVS users refer to
2009 Jan 24
2
Is abline misbehaving?
Hi experts,
I was graciously offered a function to enhance abline by restricting the
extent of the line to less than the plotting region. This seems a useful
idea, and it looked like the easiest way to program it was to set up a
clipping region with "clip", draw the abline and then restore the
previous clipping region. Let us call this function ablineclip. After
quite a bit of
2009 Jan 24
2
Is abline misbehaving?
Hi experts,
I was graciously offered a function to enhance abline by restricting the
extent of the line to less than the plotting region. This seems a useful
idea, and it looked like the easiest way to program it was to set up a
clipping region with "clip", draw the abline and then restore the
previous clipping region. Let us call this function ablineclip. After
quite a bit of
2007 Nov 14
1
0.9.49's libwine "fix" broke my "system wide install" kludge...
Short version: I'd like help in configuring the registry as described in Section 3.2.4 to allow for system wide installs. 0.9.49's libwine 'fix' plugged a security hole I was happily using to achieve the same effective result.
Thanks!
Eric
Long version: I'm using wine to run a copy of Quicken and want a single install of this program to be available to multiple users (i.e.
2003 Apr 24
0
Registry kludge needed
I've been using wine for several years to run the Lotus Notes client at work
and found how to get Notes to launch mozilla and openoffice. So now I can
open M$ format files (well, most of them) without having to resort to using
windows terminal server or a windows based pc. However, I'm having a problem
with acroread 5.0. I can get it to launch, but it claims it can find the file
or
2007 May 31
1
powerware plus 5xx / fiskars 9x00
Hi,
just wanted to confirm that Fiskars UPS 9000 series (aka Powerware Plus
500 series) with optional UPS Information Unit works fine with upscode2
driver. Tested on Fiskars 9200 (20kVA/400V/3ph).
Regards,
--
Sebastian Zagrodzki Dzia? Sieciowy ICM, Uniwersytet Warszawski
s.zagrodzki at net.icm.edu.pl (+48-22) 5520527, 8268009, fax. 8284195
http://www.net.icm.edu.pl/
2011 Mar 04
1
[LLVMdev] LLVMdev Digest, Vol 81, Issue 5
Renato,
On Mar 4, 2011, at 10:00 AM, llvmdev-request at cs.uiuc.edu wrote:
> That's what the packed is for.
>
> %Base = type { i32, i8 }; // size = 8
> %POSDerived = type { %Base, i8 }; // i8 offset = 8, size 12
>
> %Basep = packed type { i32, i8 }; // size = 5
> %nonPOSDerived = type { %Basep, i8 }; // i8 offset = 5, size 8
>
> cheers,
> --renato
does't
2003 Nov 07
4
Smoother bandwidth limiting
Skipped content of type multipart/signed-------------- next part --------------
--
To unsubscribe or change options: http://lists.samba.org/mailman/listinfo/rsync
Before posting, read: http://www.tuxedo.org/~esr/faqs/smart-questions.html
2007 Oct 05
3
basic_auth problem since 0.6.9
I have a site that I don''t think "returns" a basic_auth request, but is
able to use basic_auth.
In the past on 0.6.8, I could use the following code:
require ''rubygems''
# gem ''mechanize'', ''=0.6.8''
require ''mechanize''
agent = WWW::Mechanize.new
agent.basic_auth("username", "password")
2023 Mar 08
1
nth kludge
I see many are not thrilled with the concise but unintuitive way it is
suggested you use with the new R pipe function.
I am wondering if any has created one of a family of functions that might be
more intuitive if less general.
Some existing pipes simply allowed you to specify where in an argument list
to put the results from the earlier pipeline as in:
. %>% func(first, . , last)
In
2003 Sep 24
2
3.7.1p1 and PAM
...about how now with 3.7.1p1 the PAM challenge response requiring keyboard interactive on the client is "right" and no longer a kludge. I understand that.
Unfortunately I've got a bunch of users who's client (www.ssh.com's client version 3.2.3) doesn't function without a kludged server.
The package from www.ssh.com come's with a Windows GUI based client and a "DOS" command line only client.The GUI client does suport keyboard interactive and thus does work ok with PAM and 3.7.1p1 server but the "DOS" command line only client (ssh2.exe) does NOT.
Th...
2009 Aug 25
3
Timezone not recognised kludge
This is for Wine 1.1.28 compiled under a customised personal Linux based on Slackware.
When running winefile from a terminal, get a line:
"fixme:ntdll:find_reg_tz_info Can't find matching timezone information in the registry for bias -720, std (d/m/y): 5/04/2009, dlt (d/m/y): 27/09/2009"
Wine source: ../dlls/ntdll/time.c holds the function "find_reg_tz_info".
Running: #
2005 Feb 03
1
filling a string buffer in a C routine
I am trying to write a C function that reads lines from a file and
passes them back to R.
Here is a simplified version:
--- C code ---
#include <R.h>
void read_file(char **filename, char **buf, char **buflen) {
FILE *infile;
infile = fopen(*filename, "r");
fgets(*buf, *buflen, infile);
fclose(infile);
}
--- R code ---
buffer = "xxxxxxxxxx" #
2000 Aug 10
3
Control-c not work under openssh?
>This issue has actually cropped up again recently in my testing. When I
>do use Solaris login (UseLogin yes), a ton of the important environment
>variables (like TERM, etc) don't get passed. Is that normal behavior?
Looking at the source os session.c it is obvious that when you use login
the environment is not passed:
execl(LOGIN_PROGRAM, "login",
2008 Oct 20
3
The evaluation of optional function arguments
Dear R-helpers,
I've got two functions; callTimes() calls times(), passing it an
optional argument (bar) by name (bar=harry). times() then believes it
has been passed a name, rather than a value ? but I want the value,
not the name.
Worse, if I evaluate the name, it is evaluated in the environment
times() was defined, not where it is called.
How can I call times(), defining its optional
2014 Feb 05
1
Read only nfsroot and diskless booting CentOS 6?
Does anyone have any good how-to's or documentation on setting up read only root NFS for pxe booting diskless computers? A few months ago I stumbled upon an official Redhat doc through a google search(not hosted by redhat and I cannot find it anywhere on the Redhat site) written by Dave Kline named "Configuring diskless clients with Red Hat Enterprise Linux" from 2011. It seemed to
2006 May 02
6
Stopping the Ajax.PeriodicalUpdater -- My Kludge?
Well, I''ve been burning the midnight oil trying to figure out how to
issue the stop() command to a PeriodicUpdater. I''ve come up with a
solution that uses setTimeouts to call the stop function. I think my
solution is very kludgey... especially since I''m new to Javascript +
Prototype.
Can anyone let me know if the below code is at all proper? :)
---------
Summary: A
2005 Nov 03
8
Wintertime/summertime difference - Samba servers show wrong time ?
When the Central European Time was last switched back to standard,
at 03:00 last Sunday, the October 30th, a process died on one of my
Windows clients with a mysterious "unknown error". When it was
restarted it just went merrily on with its task. Luckily it wasn't
part of a life support system.
I found out that the immediate cause was how file timestamps were
interpreted/presented
2010 Dec 01
1
OggFLAC streaming is systemically broken.
Not that many people are streaming FLAC, and if they are, they are, in
my mind, undoubtedly experiencing problems. Probably the most prized
kind of software problem of all, the intermittent kind.
I am streaming FLAC. 24bit no less, and its fantastic. The future I
would like to live in, is one where lossless music is streamed and
heard by people other than myself.
It is generally not possible to
2011 Oct 04
0
[LLVMdev] LLVM IR is a compiler IR
On Tue, Oct 4, 2011 at 6:36 PM, Renato Golin <rengolin at systemcall.org> wrote:
> Hi Talin,
>
> I too agree 100% with Dan's words, and this could be a good pointer
> for Jin-Gu Kang to continue on his pursuit for a better
> target-independent bitcode.
>
> Also, add your backwards compatibility issue to debug metadata in IR,
> in which fields appear or disappear