similar to: ctrl + m in files

Displaying 20 results from an estimated 2000 matches similar to: "ctrl + m in files"

2000 Jan 28
2
CR/LF proposal
Hi, I'm new on this list, and just skimmed through the archives, so I appologize if this has been requested before. I read in the FAQ that you do not convert. LF to CR/LF because there is no sure way of knowing what type of file something is. I could see that this would cause problems if you converted a binary file or some other data file. But what if you assign a directory that would always
2006 Jun 17
4
Textmate Madness
Has anyone come across this problem... I created some Ruby files in Textmate on my Mac - and everything works fine. However, when I run those files on a Windows machine I get e.g. compile error ./script/../config/../app/views/station/consumption/new.rhtml:2: Invalid char `\002'' in expression ./script/../config/../app/views/station/consumption/new.rhtml:4: parse error, unexpected
2001 Mar 16
2
wine: error while loading shared libraries: wine: undefined symbol: Callout
Wine gives me the following error message myprompt >wine SETUP.EXE wine: error while loading shared libraries: wine: undefined symbol: Callout ! removed my porevious wine installation completely, every file! I installed codeweavers wine PR3 I run the setup anwering default on everything -> now it does not work. Why? what does the error message mean? -- -- )(( +O-O+ < U
2010 Oct 29
2
wilcox.test; data type conversion?
I'm working on a quick tutorial for my students, and was planning on using Mann-Whitney U as one of the tests. I have the following (fake) data grade <- c("MVG", "VG", "VG", "G", "MVG", "G", "VG", "G", "VG") sex <- c( "male", "male", "female", "male",
2010 May 11
1
has_one/belongs_to -- accessing the subordinate
With a has_one/belongs_to relationship, what''s the best way to guarantee that the belongs_to object gets created and is accessible alongside the has_one object? I *think* the after_create callback is a good choice, but I discovered an oddity while trying it. F''rinstance, if every horse has a carriage: ============ ActiveRecord::Schema.define do create_table(:horses) {|t|
2016 May 04
2
ImageMagick security alert
On Wed, 4 May 2016, Nux! wrote: > Direct links > > https://www.imagemagick.org/discourse-server/viewtopic.php?f=4&t=29588#p132726 > https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2016-3714 > > Mitigation: > > As a workaround the /etc/ImageMagick/policy.xml file can be edited to disable > processing of MVG, HTTPS, EPHEMERAL and MSL commands within image files,
2016 May 03
2
ImageMagick security alert
https://imagetragick.com/ As CentOS is often used for web servers, I thought this should be posted here. Bug in ImageMagick allows remote exploit. AFAIK no patch exists yet but defense against the exploit is detailed at the link. CVE-2016?3714
2007 Mar 08
1
reading a text file with a stray carriage return
Hi, I'm hoping someone has a suggestion for handling a simple problem. A client gave me a comma separated value file (call it x.csv) that has an id and name and address for about 25,000 people (25,000 records). I used read.table to read it, but then discovered that there are stray carriage returns on several records. This plays havoc with read.table since it starts a
2007 Jun 11
2
Textpad help
I have installed textpad and tried running R code. But it gives me the following error message. The filename, directory name, or volume label syntax is incorrect. Tool completed with exit code 1 Can you provide any help? I am not a technical person. So the help in detail will be appreciated. Thx [[alternative HTML version deleted]]
2001 Apr 11
3
anybody using R with TextPad?
I was wondering whether somebody has developed a set of Textpad macro that work with R the same way as WinEdt does. I use Textpad for almost everything (programming, creating LaTex docs, etc.), it will be nice if I can use it as my R program editor. Or maybe someone can tell me how that kind of macro works so that I can develop my own macros. Thank you! Best, Shige Song Department of Sociology,
2000 Feb 02
1
"Use a command like x <- vi() to recover"
Subject command doesn't work with rw0901 running on win95 (of course) so, after looking at the vi and emacs code, I put textpad <- function(name = NULL, file = ""){ edit(name, file, editor = "g:\\textpad\\txtpad32.exe") } Now x <- textpad() brings up the botched code in the textpad editor, as expected, but when I try to save changes I get an "Access to
2006 Nov 13
2
Embedded carriage returns in text document
Colleagues, I am using R 2.4.0 on both a Mac (10.4.8) and Linux (RedHat 9). To read data from an Excel spreadsheet, I do "save as" in Excel, then select the "Text (tab-delimited)" format. The resulting file uses a tab separator and I can usually read the file using read.delim. Sometimes, the header row contains embedded carriage returns. When I view the file,
2006 Aug 19
1
need to find (and distinguish types of) carriage returns in a file that is scanned using scan
Hope this is not too trivial I am reading a large file using scan. In one part of this file there is a chunk of text within which i need to know the positions of line breaks. But scan seems only An example of the file is: " a 0 1 0 bftt 020 cftt T 1 R a 0 1 2 1 2 b 0 1 2 2 2 c 0 10 00 " so precisely i need in the scanned file in R to know where each carriage return is in the file
2006 Jul 05
3
splitting a story with double-spaced para''s
Quick question - if i want to separate a long string of text, separated by single carriage returns, into an array of paragraphs, I can use the following code: paragraphs = article.content.split("\n") The "\n" means a carriage return, as far as I can tell. If I wanted to take text, that had been written using the more common double carriage returns, into an array of
2001 Oct 25
1
Text File Busy, Samba Locking?
I have searched google for a while and have not resolved this issue. I am using win98/TextPad 4.0 on a client modifying CGI Scripts in Perl I open up scripts and make changes then close them via Samba, but when someone requests the cgi scripts Apache responds with an Error. When I run the script from bash it replys text file busy. It turns out the there are 2 hacks: um-mount and re-mount the
2019 Sep 06
2
[PATCH 1/1] log: do not print carriage return
From: Christian Hesse <mail at eworm.de> Logging to stderr results in line endings being terminated with carriage return (\r) and new line (\n). While this is fine for terminals it may have undesired effects when running from crond and logging to syslog or similar. I run ssh from cron on an recent linux host. Viewing logs with journalctl I see: Sep 06 16:50:01 linux CROND[152575]: [96B
2012 Jun 25
1
Replacing text with a carriage return
I have a comma separated data file with no carriage returns and what I'd like to do is 1. read the data as a block text 2. search for the string that starts each record "record_start", and replace this with a carriage return. Replace will do, or just add a carriage return before it. The string is the same for each record, but it is enclosed in double quote marks in the file.
2012 Apr 04
3
Remove carriage return in writing tab-delimited file.
Having problems with the write.table function. I can write a tab delimited file just fine, but for each line in my matrix its inputs a carriage return when i dont want it to. For example my matrix might be: ID V1 V2 V3 FARY1004 1 2 3 FARY2067 2 3 1 FARY4587 2 2 2 And I want the written File to be: FARY1004 1 2 3FARY2067 2 3 1FARY4587 2 2 2 TIA -- View this
2004 Nov 04
2
help with wine and TOPO!
Hello all, The subject line is a little ambitious, although that is my ultimate goal, to be able to run the National Geographic TOPO! program to look at maps of Arizona and California on my laptop using only Linux. I don't even own a copy of Windows, nor do I desire to, so hopefully Wine will be my friend. So far it isn't though. I haven't even got as far as trying to run TOPO! I
2004 Jan 30
2
Samba for SCO Open Server
I'm lookking for Samba for SCO Open Server Best regards,Abdullah Sekman _______________________________________________ Join Excite! - http://www.excite.com The most personalized portal on the Web!