search for: sidetrack

Displaying 20 results from an estimated 111 matches for "sidetrack".

2003 Oct 22
2
modprobe ztdummy failed
...* and linux user group archives for a solution to this particular problem, but I am just plan stuck. I got the latest zaptel sources from cvs, uncommented ztdummy.o in Makefile, ran make; make install then, did depmod -a. All is well up until now. When i do modprobe ztdummy, i get this error: dv@sidetrack:/usr/local/src/zaptel# depmod -a dv@sidetrack:/usr/local/src/zaptel# modprobe ztdummy /lib/modules/2.4.20/kernel/drivers/usb/usb-uhci.o.gz: init_module: No such device /lib/modules/2.4.20/kernel/drivers/usb/usb-uhci.o.gz: Hint: insmod errors can be caused by incorrect module parameters, including i...
2011 Jul 09
5
Storing and managing custom R functions for re-use
Dear all, sorry if this is a bit on the sidetrack for R-help. As a regular R user I have developed quite a lot of custom R functions, to the point of not always remembering what I have already programmed, where the file is and so on. I was wondering what other people do in this regards. A basic file with all your functions, or a custom R packa...
2014 Apr 16
2
A naive question respecting x.509 logins
I have been looking at replacing our current login systems with a single login solution. In the process I managed to get sidetracked into investigating pam_pkcs11. My question, which no doubt reveals the depth of my ignorance, is: Can a simple USB flash memory stick be configured to work with this or some similar module of which I as yet know nothing? Everything I have managed to find about this method of loging on to CentOS...
2006 Apr 21
4
WebDAV library for fastcgi/webbrick
Hello, I am trying to find a WebDAV library for Ruby that works with fastcgi (production) and Webbrick (development). I''ve found this link which mentions a Webbrick WebDAV library: http://redhanded.hobix.com/inspect/ webrickWebdavHandlerSafelyExtractedFromTheWild.html Unfortunately it sounds limited to Webbrick which will not suit the production environment. Does anyone know of a
2010 Sep 08
8
[LLVMdev] LLVM 2.8 and MMX
On Wed, Sep 8, 2010 at 12:35 AM, Nicolas Capens <nicolas.capens at gmail.com> wrote: > Hi Chris, > > It's not broken, but the performance is crippled. > > I noticed that the code still contains some MMX instructions, but several > operations get expanded (apparently swizzling and such get expanded to a > large number of byte moves). I think some changes related to
2010 Jun 10
4
[LLVMdev] Win32 COFF Support
On Wed, Jun 9, 2010 at 11:11 PM, Nathan Jeffords <blunted2night at gmail.com> wrote: > This is cool, I was looking into something like this, but hit a little bit > of a wall, and then got sidetracked on another project. I was going to use > llc to generate COFF object files asĀ opposedĀ to clang. Seems to me llc would > give better control over what was generated and would also not require clang > to be in the tree. > Is there any documentation on how to run these tests from windows...
2017 Sep 21
2
prevent users from fiddling with network?
...on. This ability to screw settings up is a pain for sysadmin if this workstation sits on common area (like library) and multiple users can access that, and even if it is workstation that is basically a single user one, but has to be managed centrally. I rest my case. Basically, all _I_ said on this sidetracked thread should be treated as enclosed into "rant" tags ;-) Valeri ++++++++++++++++++++++++++++++++++++++++ Valeri Galtsev Sr System Administrator Department of Astronomy and Astrophysics Kavli Institute for Cosmological Physics University of Chicago Phone: 773-702-4247 +++++++++++++++...
2020 Aug 05
4
TableGen trace facility
I wasn't sure how to respond to John Byrd's post, since it wasn't addressed to me. So I've responded to Nicolai's. I'm reasonably far along in the process of writing a new Programmer's Guide for TableGen. I will continue working on it and submit it for review. I expect to do some rewriting as a result. John: Would you like me to respect a copyright on your documents
2020 Oct 09
2
Manipulating DAGs in TableGen
I was wondering today whether the TableGen DAG support would be more useful if you could manipulate DAGs a little more easily. Right now, you can: * Specify a DAG with (...) * Catenate DAGs with !con(). * Construct a DAG with !dag(). * Iterate over a DAG with !foreach(). * Get and set the DAG operator with !getop() and !setop(). What if you could also get and set a DAG's operands
2005 Apr 07
1
smbldap-tools patch - careful string handling
The issue is that some of the smb.conf parameters have quotes in funny places that need to stay there (particularly the smbldap script "wrappers"). The smbldap tools will issue funny warnings that help to sidetrack finding actual problems... Patch attached. --- smbldap-tools-0.8.8/smbldap_tools.pm.org Mon Apr 4 02:03:34 2005 +++ smbldap-tools-0.8.8/smbldap_tools.pm Thu Apr 7 12:33:36 2005 @@ -100,10 +100,10 @@ ## check for a param = value if ($_=~/=/) { my ($param,$val); -...
2010 Jun 10
0
[LLVMdev] Win32 COFF Support
This is cool, I was looking into something like this, but hit a little bit of a wall, and then got sidetracked on another project. I was going to use llc to generate COFF object files as opposed to clang. Seems to me llc would give better control over what was generated and would also not require clang to be in the tree. Is there any documentation on how to run these tests from windows? - Nathan On Wed...
2020 Aug 10
2
R2spec woes
I tried R2spec to create the spec files necessary to have Rcpparmadillo. I noticed that it has some issues, one example is that it placed some files irrespectively if they were present in the tar or not. One functionality that I think it would be nice to have would to update a given spec file with the updated dependencies. What do you think of this? Regards, -- Jos? Ab?lio [[alternative
2017 Sep 19
6
KeePassX replacement
...uickly and patch propagated up to epel quickly as well ... passwd manager {non-cloud ones} , in my opinion, is a "static" concept ... unless no issues with the underlying frameworks, what's there to patch ... --------------------------------------------------------------------- OT-sidetrack: What is/are a good cloud-less password manager if I'd need it in a cross-platform scenario; Windows, CentOS, Ubuntu and Android? A cloud enabled manager would be okay I guess if I could move the password database to say my own private cloud and be able to access it from there from all plat...
2011 Jan 27
1
performance question
I got sidetracked while benchmarking ruby factorial code: http://rosettacode.org/wiki/Factorial#Ruby I put all that code into test_fact.rb and ran with: > ruby test_fact.rb > rails runner test_fact.rb #from a fresh rails app > rails runner test_fact.rb #from a mature rails app here are the respective...
2010 Sep 21
1
[LLVMdev] LLVM 2.8 and MMX
On Sep 21, 2010, at 10:23 AMPDT, Nicolas Capens wrote: > Hi all, > > Sorry for the late reply. I got sidetracked by other fun projects. ;-) > > I found that the performance regression is caused by revisions 112804, > 112805 and 112806. Those changes were made 2 days prior to the 2.8 > branching, so it may have not been the intention to include them there? > Either way they make my vector-int...
2016 Apr 07
2
Openshot 2.x (beta) on C7??
...ges > do not do well for the most part. Size is not too much of a problem in my book, as long as I don't have to spend hours on end to find out what repos have the proper dep's and doesn't mismatch with each other, in order to install the software I wanted in the first place. An OT sidetrack; has this appimage-thing been going on for some time now? Openshot is the first software I've seen that is delivered this way. -- //Sorin
2019 Jul 18
2
SAMBA AD DC - Windows explorer.exe crashes on security tab access
...uspect that this is a bug related to Windows OS. Maybe someone who has met this error (bug?) and could help? > > Ah, that thread, this is a Windows bug and if I remember correctly, they > were supposed to be looking into it. > > Jeremy, did we ever here anything about this ? I got sidetracked with other stuff, and didn't bug the Microsoft engineers with it whilst I was up in Redmond recently, sorry. Can you write up a method of reproducing and I'll see if someone at Microsoft can get the client team to take a look ? Thanks, Jeremy.
2018 Jan 04
0
LLVM IR Debugger
You can attach debug info to the Llvm module about LLVM IR, at which point one can throw the executable into any debugger and get llvm level debugging. I've started a patch to revive this feature (DebugIR pass). I've been sidetracked the past month, but I'll come back to it soon :) https://reviews.llvm.org/D40778 Cheers, Siddharth On Thu 4 Jan, 2018, 09:23 Brenda So via llvm-dev, <llvm-dev at lists.llvm.org> wrote: > Hi > > I am looking at open projects that LLVM want to implement and it seems to > be...
2010 Sep 21
0
[LLVMdev] LLVM 2.8 and MMX
On Sep 21, 2010, at 10:23 AM, Nicolas Capens wrote: > Hi all, > > Sorry for the late reply. I got sidetracked by other fun projects. ;-) > > I found that the performance regression is caused by revisions 112804, > 112805 and 112806. Those changes were made 2 days prior to the 2.8 > branching, so it may have not been the intention to include them there? > Either way they make my vector-int...
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",