Tagged Questions

3
votes
4answers
119 views

Read first N lines of a file in python

We have a large raw data file that we would like to trim to a specified size. I am experienced in .net c#, however would like to do this in python to simplify things and out of int …
0
votes
1answer
15 views

2 valid requests and then timeout

Here is my code. It iterates all files from database and try to get the length of the web file. It works only 2 times. After that it gives timeout. If i restart the application it …
2
votes
2answers
66 views

How to output lines 800-900 of a file with a unix command?

I want to output all lines between a and b in a file. This works but seems like overkill: head -n 900 file.txt | tail -n 100 My lack of unix knowledge seems to be the limit her …
0
votes
4answers
167 views

Why does Amazon put their CSS in the Head tag?

Okay, what is Amazon doing? They put all their CSS definitions in the <head> tag? I can see the purpose of saving requests, but it doesn't seem very dynamic to me. Any ideas …
0
votes
2answers
295 views

How to send a HEAD HTTP request in Python to Amazon S3?

I'm trying to retrieve HTTP HEAD information from a S3 resource using Python. Unfortunately the response always returns a 403 error. I am using code that was suggested here but un …
1
vote
5answers
87 views

What is the easiest way to use the HEAD command of HTTP in PHP?

I would like to send the HEAD command of the Hypertext Transfer Protocol to a server in PHP to retrieve the header, but not the content or a URL. How do I do this in an efficient w …
0
votes
3answers
110 views

Is there a way, using jQuery, to change the document.title after the page has loaded?

I have coded myself into a corner. Does anyone know the answer? Thanks!
0
votes
3answers
45 views

line of bash code from .configure file

I need to understand the following line of code: BIN_DIR=`grep BIN_DIR= $SMLCM | head -1` where $SMLCH contains a path This is what I understood so far: grep will produce som …
0
votes
4answers
148 views

Is header(’Content-Type:text/plain’); necessary at all?

I didn't see any difference with or without this head information yet.
1
vote
2answers
105 views

Understanding a sentence about starting up jQuery

What is the definition of entire page in the following line? When the entire page is included via PHP include() or require() function, make sure to put that script code ins …
2
votes
7answers
193 views

Does <STYLE> have to be in the <HEAD> of an HTML document?

Strictly speaking, do style tags need to be inside the head of an HTML document? The 4.01 standard implies that, but it's not explicitly stated: The STYLE element allows author …
1
vote
3answers
141 views

Value of the last element of a list

Hi, how to get the value of the last element of a List? I've noted that List.hd (or .Head) return an item, while List.tl (or .Tail) returns a List. Is rev the List and get the hd …
0
votes
5answers
624 views

Applying Unix’s Head on AWK Through Find Command

I want to output top 10 lines of AWK command in the list of files given by find, using this snippet: $ find . -name "*.txt" -print -exec awk '$9 != ""' \| head -n10 {} \; Note …
3
votes
3answers
138 views

How to pipe a command result to a -<character><argument> option? (Without spaces)

Hello! I have this set of piped commands: grep -n '*' file.txt | head -n1 | awk -F\: '{print $1-1;}' It tells me the previous line to that where it first find asterisks. Now I w …
2
votes
4answers
751 views

Unix shell: how to get the last lines of a file except the first 20?

Say I have a file with any number of lines, say, 125. I want to get all the lines except the first n, say, 20. So, I want lines 21-125. Is there a way to do this with with tail/he …