The lines tag has no wiki summary.
28
votes
12answers
25k views
count (non-blank) lines-of-code in bash
In Bash, how do I count the number of non-blank lines of code in a project?
23
votes
5answers
22k views
How do I draw lines using XNA?
I've read a bunch of tutorials involving XNA (and it's various versions) and I still am a little confused on drawing primitives. Everything seems to be really convoluted.
Can someone show me, using ...
22
votes
7answers
2k views
Why is this C code faster than this C++ code ? getting biggest line in file
I have two versions of a program that does basically the same thing, getting the biggest length of a line in a file, I have a file with about 8 thousand lines, my code in C is a little bit more ...
8
votes
6answers
536 views
Python how to read N number of lines at a time
I am writing a code to take an enormous textfile (several GB) N lines at a time, process that batch, and move onto the next N lines until I have completed the entire file. (I don't care if the last ...
8
votes
2answers
1k views
Does Eclipse have a way to alphabetically sort lines within a selection of text?
Similar to emacs' M-x sort-lines
7
votes
7answers
173 views
How to calculate the nearest point of a line and curve? .. or curve and curve?
Given the points of a line and a quadratic bezier curve, how do you calculate their nearest point?
7
votes
10answers
6k views
Efficient maths algorithm to calculate intersections
For a game I am developing I need an algorithm that can calculate intersections. I have solved the problem, but the way I have done it is really nasty and I am hoping someone here might have a more ...
6
votes
6answers
184 views
Is a line in a Java program the same thing as a statement?
I'm a Java noob. I've only used it for a few days and I'm still trying to figure it all out. In a program, is a line the same thing as a statement?
6
votes
3answers
3k views
Word wrap in Eclipse Java?
I already have word wrap for Eclipse PHP (How can I get word wrap to work in Eclipse PDT for PHP files?). What about Eclipse Java? Is there a similar tool to wrap Java code lines?
6
votes
4answers
524 views
Is there any super fast algorithm for finding LINES on picture?
So I have Image like this
I want to get something like this (I hevent drawn all lines I want but I hope you can get my idea)
I need some super fast algorithm for finding all straight lines on ...
6
votes
2answers
523 views
How do you indent *every* line of a <span> element?
I have the following HTML chunk:
<span class='instruction_text'>
Line 1<br>
Line 2
</span>
And the CSS declaration of instruction_text is:
.instruction_text {
margin-left: ...
6
votes
3answers
5k views
Finding points on a line with a given distance
I have a question i know a line i just know its slope(m) and a point on it A(x,y) How can i calculate the points(actually two of them) on this line with a distance(d) from point A ???
I m asking this ...
6
votes
4answers
2k views
PHP: Delete first four lines from the top in content stored in a variable
I have a variable that needs the first four lines stripped out before being displayed:
Error Report Submission
From: First Last, email@example.com, 12345
Date: 2009-04-16 04:33:31 pm Eastern
The ...
5
votes
1answer
189 views
How to find N longest lines in a text file and print them to stdout?
The first line contains the value of the number 'N' followed by multiple lines.
I could solve it in order of n^2 algorithm. Can someone suggest a better one?
5
votes
4answers
457 views
Fastest way to skip lines while parsing files in Ruby?
I tried searching for this, but couldn't find much. It seems like something that's probably been asked before (many times?), so I apologize if that's the case.
I was wondering what the fastest way to ...
5
votes
5answers
185 views
How do I remove lines from a big file in Python, within limited environment
Say I have a 10GB HDD Ubuntu VPS in the USA (and I live in some where else), and I have a 9GB text file on the hard drive. I have 512MB of RAM, and about the same amount of swap.
Given the fact that ...
5
votes
3answers
1k views
How to use Haar wavelet to detect LINES on an image?
So I have Image like this
I want to get something like this (I hevent drawn all lines I want but I hope you can get my idea)
I want to use SURF ( (Speeded Up Robust Features) is a robust image ...
5
votes
1answer
460 views
OpenGL: GL_LINE_SMOOTH not supported on all cards; wont even draw the lines, unless
First of all, whats the purpose of this code?
glHint(GL_LINE_SMOOTH_HINT, GL_NICEST);
I could put there GL_DONT_CARE but it doesnt make my lines drawn, unless i use glDisable(GL_LINE_SMOOTH)
So ...
4
votes
6answers
101 views
sorting lines of an enormous file.txt in java
I'm working with a very big text file (755Mb).
I need to sort the lines (about 1890000) and then write them back in another file.
I already noticed that discussion that has a starting file really ...
4
votes
4answers
366 views
Bash continuation lines
How do you use bash continuation lines?
I realize that you can do this:
echo "continuation \
lines"
>continuation lines
However, if you have indented code, it doesn't work out so well...
...
4
votes
6answers
165 views
How to break a string in lines
I'm confused with what is the correct way to break lines.
I read somewhere that windows use \r\n to break lines, but this two codes produce the same
regex.split(sometext, "\r\n");
...
4
votes
3answers
253 views
Sorting algorithm: Big text file with variable-length lines (comma-separated values)
What's a good algorithm for sorting text files that are larger than available memory (many 10s of gigabytes) and contain variable-length records? All the algorithms I've seen assume 1) data fits in ...
4
votes
7answers
2k views
Inner angle between two lines
I have two lines: Line1 and Line2. Each line is defined by two points (P1L1(x1, y1), P2L1(x2, y2) and P1L1(x1, y1), P2L3(x2, y3)). I want to know the inner angle defined by these two lines.
For do it ...
4
votes
1answer
3k views
How to draw connecting lines between two controls on a grid WPF
I am creating controls (say button) on a grid. I want to create a connecting line between controls.
Say you you do mousedown on one button and release mouse over another button. This should draw a ...
4
votes
2answers
6k views
How to limit JTextArea max Rows and Coloums?
I am using JTextArea in JScrollPane
I want to limit the maximum number of lines possible and the maximum chars in each line.
I need that the string will be exactly like on the screen, each line will ...
3
votes
3answers
82 views
How to select lines that are drawn on a HTML5 Canvas?
I am using using HTML5 Canvas to plot lines. A single line is formed by calling drawLine() on multiple intermediate points. For example:
(0,0) -> (10, 10) -> (10, 5) -> (20, 12)
would show up as one ...
3
votes
4answers
140 views
Draw Lines perodically
i am in situation where i want to draw lines one by one with some time period. I tried to do it by using thread.but it didnt work for me.
The objective is i've 5 lines. the lines should be drawn one ...
3
votes
3answers
143 views
How to add lines between points without “touching” the points, like in “type='b'”?
I would like to add lines between points in a plot in R.
But not between all of them.
So I use "lines".
But I would like to keep the "type='b'" style, with the line stopping just before the point.
3
votes
2answers
451 views
3
votes
2answers
73 views
Writing only part of a line to a file
I want to clean up my output and only write part of the line that I need to a new file and not the whole entire line. This is the relevent coding section:
counter = 1
for line in completedataset:
...
3
votes
3answers
2k views
FLOT: How to make different colored points in same data series, connected by a line?
I think I may have stumbled onto a limitation of Flot, but I'm not sure. I'm trying to represent a single data series over time. The items' "State" is represented on the Y-Axis (there are 5 of them), ...
3
votes
5answers
23k views
Batch / Find And Edit Lines in TXT file
I want to create a batch while which finds specific lines in a batch file and are able to edit these lines.
Example:
//TXT FILE//
ex1
ex2
ex3
ex4
i want to let the batch file find 'ex3' and edit ...
3
votes
11answers
4k views
How can I delete the last N lines of a file?
Can someone give some hints of how to delete the last n lines from a file in Perl? I have a very large file of around 400 MB, and I want to delete some 125,000 last lines from it.
2
votes
1answer
48 views
+50
Easiest way to “draw” simple lines over an image with jQuery and save to Rails DB?
I'd like to draw lines on an image. Basically allow the user to draw a path for mountain trails they like.
1) Does anyone know a good simple library for drawing basic lines?
2) After a user draws a ...
2
votes
4answers
64 views
Keep 60 lines in log file
I've got log file, which I would like to have 60 lines in.
When there will appear 61 line, script should cut line from beginning and paste it at end of my backup log file.
But I have not any idea how ...
2
votes
2answers
99 views
Notepad++ select range of lines
Is there a way to select range of lines in Notepad++? I would like to write two numbers - form and to, say: form 10000 to 25000.
I 've got this large mysql dump file and I can select it only by ...
2
votes
1answer
40 views
How do you calculate if 2 lines are facing toward or away?
Given the 4 points describing 2 lines, how do you quickly calculate if line A is facing towards or away from line B?
Similarly, how to check if line A is towards or away from quadratic bezier ...
2
votes
3answers
53 views
How to get covered areas in image, any algorithm?
I have an image like in the left side. I want to get covered areas or the arc points of polygons for getting image like in the right side. I have got end point-values of all lines.
How can I do ...
2
votes
2answers
130 views
c# draw (connection) lines without crossing any other line
I got a small problem with making a connection display. It has to be dynamic so i can't use paint :P.
Lets say i have some connectors at the left side and some other at the right side, how can i draw ...
2
votes
1answer
92 views
Plot arrowhead on the line between two geospatial points on Matlab
I am trying to plot arrowheads on the lines between two geospatial points (latitude, longitude pairs) on Matlab without success. To plot just the lines without the arrowheads, I am using the ...
2
votes
4answers
378 views
Comparing Two Text Files, Removing the duplicate lines, and Writing results to a new text file
I have two text files (that are not equal in number of lines/size). I would like to compare each line of the shorter text file with every line of the longer text file. As it compares, if there are any ...
2
votes
1answer
47 views
Counting file lines in shell and in a script gives different results
For a bunch of files in a directory I want to get the number of lines for each one, store it
in a variable and do additional stuff. Via shell I can do it without problems if I do
read NLINES ...
2
votes
3answers
37 views
Is there a way with Javascript to determine where a line break is placed in HTML?
I have this html:
<div id="tagsCloud" class="feedBarSegment">
<div id="tagsCloudHeader" class="segmentHeader">Tags</div><span class="tag">Psalm 33</span><span ...
2
votes
2answers
112 views
Compress EACH LINE of a file individually and independently of one another? (or preserve newlines)
I have a very large file (~10 GB) that can be compressed to < 1 GB using gzip. I'm interested in using sort FILE | uniq -c | sort to see how often a single line is repeated, however the 10 GB file ...
2
votes
1answer
121 views
How to Determine if MousePos touches the Line?
Im not sure if this clear enough to describe the problem...
I have 2 different points, Start -> End then it forms a Line.
I would like to make an event on MouseMove if the MousePos touches the ...
2
votes
3answers
380 views
Collision detection of 2 lines in java (Android)
Very simple question.
How do you achieve collision detection with lines drawn in Java? Just lines. No rectangles, circles or images, bitmaps.. just lines.
By the way these lines are not straight. ...
2
votes
5answers
767 views
Remove Duplicate Lines from Text using Java
I was wondering if anyone has logic in java that removes duplicate lines while maintaining the lines order.
I would prefer no regex solution.
2
votes
3answers
257 views
bash - remove multiple different lines of text from a text file
I'm working with lots of log files, and most log files have lots of repeating strings that are logged multiple times.
To make the logs easily viewable for others who don't have much to do with such ...
2
votes
1answer
428 views
Silverlight - how to draw a line with an arc?
I am developing a small silverlight application (using siverlight 4 and c#). In my application I need to draw coordinates based on their X,Y. Then, I need to draw lines between some of the points, ...
2
votes
2answers
2k views
JFreeChart Scatter Plot Lines
I'm trying to create a graph with JFreeChart, however it doesn't get the lines right. Instead of connecting the points in the order I put them, it connects the points from in order of their x-values. ...