Top "Header" questions

This tag is deprecated because it lacks discriminating power.

How can I read the header but also skip lines - read.table()?

Data.txt: Index;Time; 1;2345; 2;1423; 3;5123; The code: dat <- read.table('data.txt', skip = 1, nrows = 2, header =TRUE, sep =';') …

r header skip read.table read.csv
How can I have a Makefile automatically rebuild source files that include a modified header file? (In C/C++)

I have the following makefile that I use to build a program (a kernel, actually) that I'm working on. Its …

gcc makefile dependencies header
PHP get pdf file from base64 encoded data string

I have a base64-encoded string containing a pdf. How to create a .pdf file from this encoded string using …

php pdf header base64 encode
PHP generate file for download then redirect

I have a PHP app that creates a CSV file which is forced to download using headers. Here's the relevant …

php redirect header
Add a simple UIView as header of UICollectionView

I have a UICollectionView. I would like to add a header. My header would only be a UILabel. I've : 1) selected "…

ios header uicollectionview uicollectionreusableview
What is the difference between HTTP_CLIENT_IP and HTTP_X_FORWARDED_FOR?

I understand that a header HTTP_X_FORWARDED_FOR is set by proxy servers to identify the ip-address of the …

http proxy header ip-address
C++ #include guards

SOLVED What really helped me was that I could #include headers in the .cpp file with out causing the redefined …

c++ header include include-guards
How do I send a custom header with urllib2 in a HTTP Request?

I want to send a custom "Accept" header in my request when using urllib2.urlopen(..). How do I do that?

python header urllib2
PHP "header (location)" inside IFRAME, to load in _top location?

I have a simple form which is inside IFRAME. When user click on SUBMIT, it redirects to a specific page …

php iframe header location
WebClient set headers

How I can set a header in the webClient class? I tried: client.Headers["Content-Type"] = "image/jpeg"; that throws a …

c# .net header webclient