similar to: open.exe Virus W32.ATRAPS

Displaying 20 results from an estimated 1000 matches similar to: "open.exe Virus W32.ATRAPS"

2004 Jan 02
2
Several people on this mailing list have the W32/Swen@MM virus
Ever since I signed up for this mailing list and sent my first question, I have been bombarded with the W32/Swen@MM and the emails aren't all from the same person. Is anyone else experiencing this? Rob
2015 Apr 02
5
OT: Recommended anti-virus for Windows
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Sorry to mention the "opposition" here, but I have a family member's laptop to protect, and I'm not allowed to upgrade it to Linux. What's the current best recommendation? Thanks, MArtin -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.22 (GNU/Linux) iQIcBAEBAgAGBQJVHbCMAAoJEAF3yXsqtyBl4I8P/AsvH+cyGcG9PDtL8I091WJc
2011 Oct 17
1
Trojan in setup file
Hello, I have the following problem: I successfully installed R (Version 2.1.3.0 for Windows) on my Notebook (Windows 7) in June. Now I used the same setup file for a PC (Windows XP) and got a message from the anti virus software (Avira), that the setup file contains the Trojan "TR/ATRAPS.Gen". The PC is never connected to the internet, this is why the anti virus software has
2005 Jan 11
2
Changing the ranges for the axis in image()
Dear all, I can not find/understand the solution to this from the help pages: Say we have the following script: x<-matrix(c(1,1,0,1,0,1,0,1,1),3,3) image(x) How can I change the ranges on the vertical and horizontal axis to a range of my own or at least place a box frame around the image if I choose to use "axes=FALSE"? Apologies for such a bsic question and thanks beforehand
2010 Mar 22
4
Playwith on Mint
Hello, I am having trouble installing the package playwith on the latest Mint "helena", running R version 2.10.1 (2009-12-14). I suspect it has to do with the GTK library but as far as I can tell there is nothing wrong with it. Any help extremely appreciated. I include the output: > install.packages("playwith") Warning in install.packages("playwith") :
2011 Jun 03
2
tkrplot Newbie
Hello, I am trying to write a tcltk based program that plots/manipulates xts/xoo time series objects. I have the code I used from ## http://bioinf.wehi.edu.au/~wettenhall/RTclTkExamples/tkrplot.html : ## require(quantmod) require(tcltk) library(tkrplot) Sys.setenv(TZ="GMT") getSymbols("^GSPC", from = "1960-01-01") Myhscale <- 2.5 # Horizontal scaling
2011 Dec 04
3
Vectorization instead of loops problem
Hello, I am having problems vectorizing the following (i/o using a for/next/while loop): I have 2 sequences such as: x, y 1, 30 2, -40 0, 50 0, 25 1, -5 2, -10 1, 5 0, 40 etc etc The first sequence (x) takes integer numbers only: 0, 1, 2 The sequence y can be anything... I want to be able to retrieve (in a list if possible) the 3 last values of the y sequence before a value of 1 is
2004 Aug 06
1
Please check the Speex email server for W32.Netsky
> I have been receiving the W32.Netsky virus from the speex email server. > Just giving you a heads up. Our mail server is running Linux, so unless Monty spent two hours to get it to run under Wine, I think you should look elsewhere for the origin ;) Jean-Marc --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe
2015 Apr 02
0
OT: Recommended anti-virus for Windows
On Thu, April 2, 2015 4:11 pm, J Martin Rushton wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > Sorry to mention the "opposition" here, but I have a family member's > laptop to protect, and I'm not allowed to upgrade it to Linux. What's > the current best recommendation? For privately owned machine I would recommend free.avg.com - one free
2012 Nov 28
2
hhmm time format, strptime and %k
Hello, I am having trouble with the conversion specifications as described in the strptime help page. > head(dat) Date Time Open High Low Close Up Down Volume 1 11/19/2012 935 137.89 138.06 137.82 138.05 3202541 3013215 0 2 11/19/2012 940 138.04 138.40 138.02 138.38 2549660 2107595 4657255 3 11/19/2012 945 138.38 138.40 138.18 138.19 1627379 1856318 3483697 4
2007 Jun 14
1
names() after library(RDCOMClient) problem(?)
Hello, Try example(names) in R 2.5.0 after library(RDCOMClient) and you get > example(names) names> # print the names attribute of the islands data set names> names(islands) Error in names(islands) : no applicable method for "names" > Is this normal? Any way round it??? Best regards, Costas ---------------------------------- Costas Vorlow
2015 Apr 02
5
OT: Recommended anti-virus for Windows
On Thu, April 2, 2015 4:27 pm, Valeri Galtsev wrote: > > On Thu, April 2, 2015 4:11 pm, J Martin Rushton wrote: >> -----BEGIN PGP SIGNED MESSAGE----- >> Hash: SHA1 >> >> Sorry to mention the "opposition" here, but I have a family member's >> laptop to protect, and I'm not allowed to upgrade it to Linux. What's >> the current best
2004 Jun 14
1
Matrix_0.8-8 and norm() function
Hello and apologies if this is a stupid question (just rejoined the list): Has anything changed with the norm() function with the latest update of the Matrix library? My old code seems not to be working properly even for very simple tests of the norm function. I get too many "No direct or inherited method for function "norm" for this call" messages. I am using windows, R
2004 Nov 18
1
Time series plot orientation
Hello, I am trying to rotate by 90 degrees a time series plot. So I need the time axis to be the vertical one. Is there an easy way? I couldn't guess anything from the help pages. Apologies for a silly question. Regards, Costas -- ================================================================= This e-mail contains information intended for the addressee only. It may be confidential and
2004 Jan 27
4
WARNING. You tried to send a potential virus or unauthorised code
The Star Internet anti-virus service, powered by MessageLabs, discovered a possible virus or unauthorised code (such as a joke program or trojan) in an email sent by you. This email has now been quarantined and was not delivered. Please read this whole email carefully. It explains what has happened to your email, which suspected virus has been caught, and what to do if you need help. To
2011 Mar 10
1
tryCatch - Continuing for/next loop after error
Dear all, I am not sure I understand fully the functionality of "tryCatch" and "try" commands and how these are used to continue a for/next loop if an error occurs within the loop. Can somebody point me to material (or share some code) with more extensive examples than the ones in the help/FAQ pages? Do explain my problem in more detail: for (i in 100:1000) { ## do
2002 Apr 11
1
Sender Virus Alert
Sender, E-mmunity has detected virus(es) in your e-mail attachment(s). Method: Mail Date: Thu, 11 Apr 2002 10:20:53 -0700 (PDT) From: rsync@samba.org To: jfparadis@mec.ca Subject: Let's be friends Virus Name: W32.Klez.E@mm File Attachment: sola a.pif Attachment Status: deleted
2004 Jan 29
1
Spam or virus found in sent message "Mail Transaction Failed"
Attention: samba@samba.org A Spam or virus was found in an Email message you sent. This Email scanner intercepted it and stopped the entire message reaching its destination. The Spam or virus was reported to be: the W32/Mydoom@MM virus !!! Please contact your I.T support personnel with any queries regarding this policy. Your message was sent with the following envelope: MAIL FROM:
2008 Apr 07
2
Virus in FLAC Windows installer
Just to let you know: The FLAC-Installer (downloadable from sourceforge) contains a W32/Backdoor2.AAKG virus, and so does the included uninstaller. Is this an error of my virus scanner, or did a virus indeed creep in? Cheers Vic
2003 Jun 04
1
Your Message Contained a Potential Virus
Text: This is an automated message. Please read it carefully. You should know that your recent email message detailed below, to Memorial Sloan-Kettering Cancer Center, was identified as potentially containing a virus. From: r-announce at lists.r-project.org To: mitran at mskcc.org If we have been able to repair your message, it has been delivered. If we have not, it has been blocked and the