search for: kludg

Displaying 20 results from an estimated 699 matches for "kludg".

Did you mean: kludgy
2005 Feb 08
0
Samba patch kludge-gmt fixes red files in WinCvs
...to modified files as "red"). We found this rather astonishing: CVS records time stamps in GMT/UTC just like Linux, so there shouldn't be any time zone related differences. Closer examiniation revealed that Samba doesn't send the original time stamps but converts them to so called kludge-GMT which 1. may differ by 1 hour to GMT for some files, 2. changes by 1 hour on every swap to and from daylight savings. Samba does that in order to be compatible with some combination of MS file and operating systems (for instance W2K with FAT as file server). Since we use mainly W2K with...
2009 Jan 24
2
Is abline misbehaving?
...sive calls to ablineclip respect the clipping region, even if it changes. I can reproduce the behavior like this: plot(-3:3,-3:3) clip(-2,2,-2,2) abline(v=0) clip(-2,2,-2,2) abline(h=0) The first abline ignores the clip, the second respects it. I have programmed around this, with the pathetic kludge of calling "abline" with a line outside the plotting area, calling "clip" a second time, and then calling "abline" with the line that was requested. While this works, my place in programming history will be ineradicably compromised if the Programmers' Hall of...
2009 Jan 24
2
Is abline misbehaving?
...sive calls to ablineclip respect the clipping region, even if it changes. I can reproduce the behavior like this: plot(-3:3,-3:3) clip(-2,2,-2,2) abline(v=0) clip(-2,2,-2,2) abline(h=0) The first abline ignores the clip, the second respects it. I have programmed around this, with the pathetic kludge of calling "abline" with a line outside the plotting area, calling "clip" a second time, and then calling "abline" with the line that was requested. While this works, my place in programming history will be ineradicably compromised if the Programmers' Hall of...
2007 Nov 14
1
0.9.49's libwine "fix" broke my "system wide install" kludge...
...ective 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. via my wife's and my account). I don't want two full installs of everything using up our disk space, so I figured out a kludge to do a system level install. With some creative use of permissions and groups either account can run quicken and access the same data file. This kludge depending on installing quicken in one user account and then running quicken from that user's directory. (I actually set up a 3rd accoun...
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
...a way to force Mechanize to just try using basic auth if I use the basic auth method to set username password, regardless of what the server says it supports. I just checkout out the source and will try to just hack something, but I''m such a new programmer, it''ll likely be a kludge. Anyhow, thought I''d report it. Here is a 0.6.10 -r 445 logger log: irb(main):011:0> site_request = agent.get("https://link.to.site") I, [2007-10-05T12:46:44.841861 #4958] INFO -- : Net::HTTP::Get: / D, [2007-10-05T12:46:45.213989 #4958] DEBUG -- : request-header: accep...
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
Hi, I've spent a lot of time digging the last couple days and seen some talk 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 GU...
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
...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" # kludge! read.file <- function(filename) .C("read_climate", as.character(filename), buf=buffer, buflen=as.integer(10))$buf --- end code --- This works okay, but the only way I could find to allocate a string buffer of the size I want is to use a string literal as in the l...
2000 Aug 10
3
Control-c not work under openssh?
...e, NULL); But when the shell is exec'd directly it is: execve(shell, argv, env); Login can accept a list of environment variables in the format VARIABLE=VALUE, but it refuses to accept PATH being passed (a good thing) although this just gives a warning and the logon continues. I did kludge an earlier version to pass the env list in place of the NULL when using login but lost it during a disk cleanup :-( . BTW login ignores any env passed by calling it with an execle. -------------------------------------------------------- Doug Manton, AT&T EMEA Firewall and Security Solution...
2008 Oct 20
3
The evaluation of optional function arguments
...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 argument as a variable, and have times() know the variable's value (at the moment of calling)? Below some code: (1) The basic case (2) A working kludge-around (but I'm still looking for the Right Way.) (3) A bunch of variants, so that you may get an idea of the behaviour involved. (3 starts from the simplest case and builds up from there. Think of it as background reading.) Actually, I'll put (1) up here: ######################## ## (1...
2014 Feb 05
1
Read only nfsroot and diskless booting CentOS 6?
...in progress but the steps in it did work for doing nfsroot for one diskless client only. It did not have any explanation for doing read only nfsroot or how to deal with /var for multiple systems. I know there is a file in /etc/sysconfig/readonly-root but I could not get it working correctly. I did kludge together something for /var where during the init process I created a tmpfs for /var and rsync'd a copy of /var from an nfs mount. This worked, but again I felt it was a kludge to a proper solution. Although I got this working for booting an old bios based Dell and a VM via PXE boot, I don...
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 PeriodicUpdater calls a server script which returns the percent finished of a process as a JSON encoded string in a x-json header. When the perce...
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.
...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 stream flac correctly with the current libflac 1.2.1, unless your into epic kludges. There is at-least one issue in libflac, and issues in decoding clients such as VLC, mplayer and totem. The good news is that one can hackfix libflac on the server side and produce a valid stream that VLC and mplayer can take in without issue. Totem seems to have other issues I have not investig...
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