similar to: Running scripts and the console

Displaying 20 results from an estimated 4000 matches similar to: "Running scripts and the console"

2011 Feb 21
3
Set riched20.dll specifically for powerpoint 2007
Hi there, I have installed MS Office 2007 in wine 1.2.2 running in LinuxMint KDE 9, together with other softwares (including GraphPad Prism 4). After install, I set riched20.dll as native (windows), as stipulated here: http://appdb.winehq.org/objectManager.php?sClass=version&iId=4992 > Post Installation Instructions? > > Once installed, one override is necessary. Without it,
2014 Feb 03
6
[LLVMdev] ADT/Hashing.h on 32-bit platforms
On 02.02.14 00:48, Chandler Carruth wrote: > On Sat, Feb 1, 2014 at 8:35 AM, Stephan Tolksdorf <st at quanttec.com > <mailto:st at quanttec.com>> wrote: > > Hi, > > Currently the hashing implementation in ADT/Hashing.h produces hash > values on 32-bit platforms that differ from the lower 32-bits of the > hash values produced on 64-bit platforms.
2008 Apr 30
1
help text key F10 in pxelinux > 3.61
Hi, i have a strange problem since pxelinux 3.62 with the F10 help key. I configured this: DISPLAY pxelinux.cfg/schlunix_new.txt F1 pxelinux.cfg/helps/schlunix F2 pxelinux.cfg/helps/schlunix64 F3 pxelinux.cfg/helps/rescue F4 pxelinux.cfg/helps/rescue64 F5 pxelinux.cfg/helps/stress F6 pxelinux.cfg/helps/stress64 F7 pxelinux.cfg/helps/dosimages F8 pxelinux.cfg/helps/mailsystem F9
2013 Oct 24
2
[LLVMdev] Exploiting 'unreachable' for optimization purposes
Hi, When clang/llvm compiles the following sample (with -O2) it optimizes away the second comparison in test1 but not in test2. Is this handling of 'unreachable' by purpose, or is this just a shortcoming of the current optimization passes? GCC and MSVC (with the equivalent code using the __assume intrinsic) both optimize away the comparison in test2. void f1(); void f2(); void
2010 Oct 14
2
Stumped by extlinux After OS Upgrade
Hello fellow syslinux/extlinux users! Please forgive the long post, but I believe my problem warrants the background info to understand the issue. I've developed a specialized spin of Fedora that runs off CompactFlash. The spin is actually produced by the livecd-tools package and is then transferred to the CF card -- which has been formatted with ext3 -- using livecd-tools'
2020 Jun 11
2
[RFC] Small Bitfield utilities
TL;DR: Have support in ADT for typed values packing into opaque scalar types - Code & design choices: https://reviews.llvm.org/D81580 - Usage: https://reviews.llvm.org/differential/changeset/?ref=2005337&whitespace=ignore-most - Example of rewrite: https://reviews.llvm.org/D81662 *CONTEXT* There are places in LLVM where we need to pack typed fields into opaque values. For instance,
2014 May 11
2
[LLVMdev] [cfe-dev] Code generation for noexcept functions
On Sun, May 11, 2014 at 8:19 AM, Stephan Tolksdorf <st at quanttec.com> wrote: > Hi, > > When clang/LLVM can't prove that a noexcept function only contains > non-throwing code, it seems to insert an explicit exception handler that > calls std::terminate. Why doesn't clang leave it to the eh personality > function to call std::terminate when an exception is thrown
2009 May 11
9
vmx_update_guest_cr() losing EXCEPTION_BITMAP setting
Running a heavily modified xen-unstable changset 19590:f80cf52a4fb6 with debugger_attached set, I was seeing the debug traps getting lost from the EXCEPTION_BITMAP in vmx_update_guest_cr() when transitioning from real to protected mode. In my codebase, I could fix this trivially by clearing the debug_state_latch and letting vmx_do_resume() reapply the setting. However, while it looks like a valid
2012 Sep 17
1
How to filter information from a big .csv table into a new table
Hi, I have big .csv file. I would like to filter that file into a new table. For example, I have .csv file as below: f1 f2 f3 f4 f5 f6 f7 f9 f10 f11 t1 1 0 1 0 1 0 0 0 0 1 t2 1 0 0 0 0 1 1 1 1 1 t3 0 0 0 0 0 0 0 0 0 0 t4 1 0 0 0 1 0 0 0 0 0 t5 0 0 0 0 0 0 0 0 0 0 t6 0 0 0 0 0 0 0 0 0 0
2014 Feb 01
2
[LLVMdev] ADT/Hashing.h on 32-bit platforms
Hi, Currently the hashing implementation in ADT/Hashing.h produces hash values on 32-bit platforms that differ from the lower 32-bits of the hash values produced on 64-bit platforms. It seems the only reason for this difference is that the uint64_t integer seed is truncated to size_t. Since the usage of uint64_t and size_t as types for seed values in the implementation is somewhat
2009 Apr 05
5
Headless operations
Hi Folks, I'm interested in "headless" installation. If I use GRUB, then I provide arguments to the kernel of things like "headless vnc vncpassword=whoopie ip=dhcp" GRUB passes this on to ISOLinux, which manages the CD and subsequently the installation. Shouldn't I be able to do exactly the same thing with EXTLinux? I ask, because, as you might suspect, I
2008 Apr 19
2
problem in caluclaring the multiple regression
I am trying to calculate the regression for the follwing input data stored in 'data.txt' file.I am reading this and storing it in the variable i .then i am trying to get the predicted value using f1 as dependent and others f2....f10 as independent variables.It is giving the following error. Also i want that i shoul get one predicted value for each row(y). What should i do. Please help me
2013 Oct 24
1
[LLVMdev] Exploiting 'unreachable' for optimization purposes
Hi Mark, I just dug out a bug from 2006 which since 2009 seems to also have covered efforts to make better use of unreachable for optimization purposes: http://llvm.org/bugs/show_bug.cgi?id=810 I've added a comment and assigned it to you as requested. Thanks, Stephan On 24.10.13 19:05, Mark Lacey wrote: > > On Oct 24, 2013, at 5:22 AM, Stephan Tolksdorf <st at
2008 Jul 03
2
[LLVMdev] Random extra stuff after compiled functions
Hi all, When I've been disassembling JIT-compiled functions I've noticed they all have the same three random instructions after them: bns- cr5,0xd04bbfe8 stfs f10,-16404(r3) stfs f10,-16404(r3) Is this meant to be there? Cheers, Gary -- http://gbenson.net/
2005 Jan 07
4
Any plans for commenting out region via something like " /* */ "?
Greetings from Switzerland! Are there any plans/initiatives/considerations in future versions of R for commenting out regions via something like " /* */ "? (I've got an application for which something like that would be useful; if not, there are less simple solutions). best, -tony "Commit early,commit often, and commit in a repository from which we can easily roll-back
2013 Oct 24
0
[LLVMdev] Exploiting 'unreachable' for optimization purposes
On Oct 24, 2013, at 5:22 AM, Stephan Tolksdorf <st at quanttec.com> wrote: > Hi, > > When clang/llvm compiles the following sample (with -O2) it optimizes away the second comparison in test1 but not in test2. Is this handling of 'unreachable' by purpose, or is this just a shortcoming of the current optimization passes? GCC and MSVC (with the equivalent code using the
2009 Mar 25
3
freeradius version
Hi All, The freeradius version in CentOS 5 is ancient, so I've been considering rebuilding the Fedora 10 rpm for freeradius-2.1.3 on CentOS. That means I'll have to maintain the package, and I'm not an uber packager. Normally I wouldn't care, but in this case I do because the freeradius server is going to be critical. So, should I rebuild the F10 rpm, or should I just stick with
2009 May 22
4
Prog running in Wine OK but needs Alt+F10 to maximise.
Hi I've got 'WriteOutloud' (talking wordprocessor for dyslexic children) working pretty well on an Asus Eeepc (Xandros) and on an Acer Aspire One (Kuki Linux) I'm using Wine 1.0.1 on both machines. What happens is that the prog starts up normally then immediately minimises to the taskbar. To make it run fullscreen you have to click on it and press Alt+F10 Although not a serious
2012 Sep 17
1
self defined distance matrix in NbClust
i m using a package NbClust for cluster analysis. in the following algorithm ->NbClust(m, diss="NULL", distance = "euclidean", min.nc=2, max.nc=15, method = "ward", index = "all", alphaBeale = 0.1) i want to define my own dissimilarity matrix of dimension 38*38. my original data "m" is a matrix of 365*38. whenever i define my own dissimilarity
2006 Jul 05
2
Editors which have strong/solid support for SWeave?
Greetings! I have a few colleagues who like the idea of Sweave, but have failed to become enlightened monks of the One True Editor (http://www.dina.dk/~abraham/religion/) Are there any other Microsoft-centric editors or IDEs which have solid support for writing SWeave documents (dual R / LaTeX enhancements similar to ESS's support)? Has anyone tried the folding editors which support Noweb?