122
votes
96answers
8k views
What are some good free programming books?
I know of a couple, but I would like to build a list up for some nice holiday reading.
(If there is a book on here you read for free, and really liked, make sure to support the au …
15
votes
15answers
1k views
Determining “Owner” of Text Edited by Multiple Users
You may have noticed that we now show an edit summary on Community Wiki posts:
community wiki
220 revisions, 48 users
I'd like to also show the user who "most owns" the fin …
13
votes
15answers
4k views
Get last 10 lines of very large text file > 10GB c#
What is the most efficient way to display the last 10 lines of a very large text file (this particular file is over 10GB). I was thinking of just writing a simple c# app but I'm no …
13
votes
28answers
4k views
Notepad replacement for viewing very large text files
I have a program that creates daily log files that are 30-60MBs in size. I often need to open these files and search for various events. Notepad.exe takes a very long time to open …
13
votes
15answers
2k views
How do I duplicate a whole line in Emacs?
I saw this same question for VIM and it has been something that I myself wanted to know how to do for Emacs. In ReSharper I use CTRL-D for this action. What is the least number of …
13
votes
5answers
1k views
In HTML, how to word-break on a dash?
give a relatively simple css:
<div style="width:150px;">
12333-2333-233-23339392-332332323
</div>
How do I make it so that the string stays constrained to the widt …
11
votes
9answers
207 views
Is there a way to convert from a string to pure code in C++?
I know that its possible to read from a .txt file and then convert various parts of that into string, char, and int values, but is it possible to take a string and use it as real c …
10
votes
8answers
968 views
Determining Word Frequency of Specific Terms
Hi,
I'm a non-computer science student doing a history thesis that involves determining the frequency of specific terms in a number of texts and then plotting these frequencies ov …
9
votes
4answers
825 views
Parsing Performance (If, TryParse, Try-Catch)
I know plenty about the different ways of handling parsing text for information. For parsing integers for example, what kind of performance can be expected. I am wondering if anyon …
9
votes
7answers
3k views
Best way to convert text files between character sets?
What is the fastest, easiest tool or method to convert text files between character sets?
Specifically, I need to convert from UTF-8 to ISO-8859-15 and vice versa.
Everything goe …
9
votes
5answers
2k views
Most elegant way to force a TEXTAREA element to line-wrap, *regardless* of whitespace
Html Textarea elements only wrap when they reach a space or tab character. This is fine, until the user types a looooooooooooooooooooooong enough word. I'm looking for a way to str …
8
votes
7answers
418 views
Are there any tricks for counting the number of lines in a text file?
Say you have a text file - what's the fastest and/or most memory efficient way to determine the number of lines of text in that file?
Is it simply a matter of scanning through it …
8
votes
4answers
1k views
Truncating long strings with CSS: feasible yet?
Is there any good way of truncating text with plain HTML and CSS, so that dynamic content can fit in a fixed-width-and-height layout?
I've been truncating server-side by logical w …
7
votes
6answers
371 views
Algorithm for multiple word matching in text
I have a large set of words (about 10,000) and I need to find if any of those words appear in a given block of text.
Is there a faster algorithm than doing a simple text search fo …
7
votes
6answers
1k views
Shell: insert a blank/new line two lines above pattern
I have a text file and it requires some formatting.
I know that if you want to add a blank line above every line that matches your regexp, you can use:
sed '/regexp/{x;p;x;}'
Bu …
