similar to: Auto-boot single Windows App

Displaying 20 results from an estimated 7000 matches similar to: "Auto-boot single Windows App"

2009 May 23
0
SeaClear II / Wine use 100% of the CPU
Hi! I'm having problems with SeaClear II v1.0.0.196. After setting up the symlinks in ~/.wine/dosdevices pointing to my gps-device (GlobalSat BU-353 USB) everything works as expected, but for some reason Wine/SeaClear steals all available CPU-time. 100% all the time. This problem does not exist if I start SeaClear with the GPS disconnected, making me belive there is a problem with
2010 Sep 09
5
Rfcomm0 to com1 (SeaClear2)
I'm trying to configure SeaClear2 to run on an Asus eeepc 900 using a BT GPS but cannot redirect input from rfcomm0 to com1 (the serial port which SeaClear is looking for. Data flows through to rfcomm0 but I cannot redirect it to com1. I have set up symbolic links in the .wine/ folder and its sub-folder .wine/dosdevices/ but nothing happens and I have also set the SeaClear.ini file to show
2012 Jun 12
0
Help needed with Elographics touchscreen
I'm trying to get an Elographics serial touchscreen working with CentOS 6.2 using the xorg-x11-drv-elographics driver. Touching the screen will wake it up if the screen has blanked, but it never moves the cursor on the screen. There is also a keyboard and mouse connected while I'm trying to get this going and they are loaded automatically and using the evdev driver. Here are the relevant
2012 Nov 15
5
[Bug 57151] New: repeatable nouveau driver crashes/hangs during resume on Dell Latitude E6510 when drm.debug=14
https://bugs.freedesktop.org/show_bug.cgi?id=57151 Priority: medium Bug ID: 57151 Assignee: nouveau at lists.freedesktop.org Summary: repeatable nouveau driver crashes/hangs during resume on Dell Latitude E6510 when drm.debug=14 QA Contact: xorg-team at lists.x.org Severity: critical Classification: Unclassified
2013 Dec 15
0
[Bug 58378] [NV86] Distorted graphics on NVIDIA GeForce 8400M G after upgrade the kernel to 3.7.0 version
https://bugs.freedesktop.org/show_bug.cgi?id=58378 --- Comment #34 from Andreas Loew <awl1 at gmx.net> --- Bad news once again... I applied the following single-line patch to a stock 3.12.4 kernel in order to switch to the NV50 fence: diff -Nrpu linux-3.12.4.orig/drivers/gpu/drm/nouveau/nouveau_drm.c linux-3.12.4/drivers/gpu/drm/nouveau/nouveau_drm.c ---
2008 Jul 24
5
Wine config: dosdevice and fonts
I am having some trouble that I have so far not found a solution to yet: USB touchscreen that is not working in wine application looking for "tahoma" font More details: First off, I am not a complete nOOb with linux, though I freely admit that I only learn what I must to achieve each new goal... been using linux for just about everything for around 7 years at this point, so I have
2023 Nov 03
2
I need to create new variables based on two numeric variables and one dichotomize conditional category variables.
Just a minor point in the suggested solution: df$LAP <- with(df, ifelse(G=='male', (WC-65)*TG, (WC-58)*TG)) since WC and TG are not conditional, would this be a slight improvement? df$LAP <- with(df, TG*(WC - ifelse(G=='male', 65, 58))) -----Original Message----- From: R-help <r-help-bounces at r-project.org> On Behalf Of Jorgen Harmse via R-help Sent: Friday,
2019 May 03
2
[PATCH] gpu/drm: Remove duplicate headers
From: Jagadeesh Pagadala <jagdsh.linux at gmail.com> Remove duplicate headers which are included twice. Signed-off-by: Jagadeesh Pagadala <jagdsh.linux at gmail.com> --- drivers/gpu/drm/msm/disp/dpu1/dpu_hw_lm.c | 1 - drivers/gpu/drm/nouveau/nvkm/subdev/bus/nv04.c | 2 -- drivers/gpu/drm/panel/panel-raspberrypi-touchscreen.c | 1 - 3 files changed, 4 deletions(-)
2009 Jan 14
2
Any free video (or audio) softphone VOIP client under Linux with touchscreen friendly interface ?
Hi, I'm curious if anyone knows of any possibility to use video VOIP client (like Ekiga or Linphone or...) under Linux that could be operated by touchscreen friendly GUI (bigger buttons, large keypad, etc...) ? I like Ekiga, but GUI is small and cannot be operated via touchscreen... But maybe there are some skins for existing clients that are more touchscreen friendly ? Thanks in
2023 Nov 03
1
I need to create new variables based on two numeric variables and one dichotomize conditional category variables.
Well, something like: LAP <- ifelse(gender =='male', (WC-65)*TG, (WC-58)*TG) The exact code depends on whether your variables are in a data frame or list or whatever, which you failed to specify. If so, ?with may be useful. Cheers, Bert On Fri, Nov 3, 2023 at 3:43?AM Md. Kamruzzaman <mkzaman.m at gmail.com> wrote: > Hello Everyone, > I have three variables: Waist
2019 May 06
0
[PATCH] gpu/drm: Remove duplicate headers
On Fri, May 03, 2019 at 11:28:13PM +0530, jagdsh.linux at gmail.com wrote: > From: Jagadeesh Pagadala <jagdsh.linux at gmail.com> > > Remove duplicate headers which are included twice. > > Signed-off-by: Jagadeesh Pagadala <jagdsh.linux at gmail.com> I collected some acks for the msm and nouveau parts and pushed this. For next time around would be great if you split
2019 May 07
1
[PATCH] gpu/drm: Remove duplicate headers
On Mon, May 06, 2019 at 04:43:34PM +0200, Daniel Vetter wrote: > On Fri, May 03, 2019 at 11:28:13PM +0530, jagdsh.linux at gmail.com wrote: > > From: Jagadeesh Pagadala <jagdsh.linux at gmail.com> > > > > Remove duplicate headers which are included twice. > > > > Signed-off-by: Jagadeesh Pagadala <jagdsh.linux at gmail.com> > > I collected some
2023 Nov 03
1
I need to create new variables based on two numeric variables and one dichotomize conditional category variables.
df$LAP <- with(df, ifelse(G=='male', (WC-65)*TG, (WC-58)*TG)) That will do both calculations and merge the two vectors appropriately. It will use extra memory, but it should be much faster than a 'for' loop. Regards, Jorgen Harmse. ------------------------------ Message: 8 Date: Fri, 3 Nov 2023 11:10:49 +1030 From: "Md. Kamruzzaman" <mkzaman.m at gmail.com>
2023 Nov 03
1
I need to create new variables based on two numeric variables and one dichotomize conditional category variables.
Hello Everyone, I have three variables: Waist circumference (WC), serum triglyceride (TG) level and gender. Waist circumference and serum triglyceride is numeric and gender (male and female) is categorical. From these three variables, I want to calculate the "Lipid Accumulation Product (LAP) Index". The equation to calculate LAP is different for male and females. I am giving both
2023 Nov 04
2
I need to create new variables based on two numeric variables and one dichotomize conditional category variables.
I might have factored the gender. I'm not sure it would in any way be quicker. But might be to some extent easier to develop variations of. And is sort of what factors should be doing... # make dummy data gender <- c("Male", "Female", "Male", "Female") WC <- c(70,60,75,65) TG <- c(0.9, 1.1, 1.2, 1.0) myDf <- data.frame( gender, WC, TG ) #
2023 Nov 05
1
I need to create new variables based on two numeric variables and one dichotomize conditional category variables.
There are many techniques Callum and yours is an interesting twist I had not considered. Yes, you can specify what integer a factor uses to represent things but not what I meant. Of course your trick does not work for some other forms of data like real numbers in double format. There is a cost to converting a column to a factor that is recouped best if it speeds things up multiple times. The
2023 Nov 03
1
[EXTERNAL] RE: I need to create new variables based on two numeric variables and one dichotomize conditional category variables.
Yes, that will halve the number of multiplications. If you?re looking for such optimisations then you can also consider ifelse(G=='male', 65L, 58L). That will definitely use less time & memory if WC is integer, but the trade-offs are more complicated if WC is floating point. Regards, Jorgen Harmse. From: avi.e.gross at gmail.com <avi.e.gross at gmail.com> Date: Friday,
2013 Dec 18
0
[Bug 58378] [NV86] Distorted graphics on NVIDIA GeForce 8400M G after upgrade the kernel to 3.7.0 version
https://bugs.freedesktop.org/show_bug.cgi?id=58378 --- Comment #55 from Andreas Loew <awl1 at gmx.net> --- > > [aloew at aloew-lap envytools-master]$ ./nva/nvapoke 10200c 10 > > WARN: Can't probe 0000:01:00.0 > > PCI init failure! > You need to run these as root. Ouch - sorry - could have indeed had this idea myself... :-( Here are the results as root: [aloew at
2013 Dec 18
0
[Bug 58378] [NV86] Distorted graphics on NVIDIA GeForce 8400M G after upgrade the kernel to 3.7.0 version
https://bugs.freedesktop.org/show_bug.cgi?id=58378 --- Comment #57 from Ilia Mirkin <imirkin at alum.mit.edu> --- (In reply to comment #55) > > > [aloew at aloew-lap envytools-master]$ ./nva/nvapoke 10200c 10 > > > WARN: Can't probe 0000:01:00.0 > > > PCI init failure! > > > You need to run these as root. > > Ouch - sorry - could have indeed
2008 May 05
2
Character entry mismatch in the console window
Dear R users, I have just de-installed my old R 2.4.1 and installed R 2.7.0. I downloaded this version from the South African mirror, as I am currently working in South Africa. When trying to paste any of my old analyses into the console (I keep them in word-documents), I get an error when I first try to load the data with the following line (example): lap.long.dist <-