Tagged Questions
The portion of a data block, cell, frame, or packet that precedes the text field or payload and provides information such as the source address and destination address. The header often includes synchronization bits that serve to synchronize the operations of the transmit and receive devices across the link.
48
votes
5answers
19k views
HTML Print Header & Footer
Is it possible to print HTML pages with custom headers & footers on each printed page?
I'd like to add the word "UNCLASSIFIED" in red, Arial, size 16pt to the top and bottom of every printed ...
44
votes
19answers
8k views
How should I detect unnecessary #include files in a large C++ project?
I am working on a large C++ project in Visual Studio 2008, and there are a lot of files with unnecessary #include's. Sometimes the #include's are just artifacts and everything will compile fine with ...
40
votes
1answer
1k views
Capybara does not pass header after form submit
I am building a Rails 3 app which renders different views for mobile devices (using jQuery Mobile) and regular desktop browsers. I am testing with Cucumber/Capybara, and have separate test suites for ...
36
votes
7answers
2k views
Header message just like at Stack Overflow
This is the first time I visited stack overflow and I saw a beautiful header message which displays a text and a close button.
The header bar is fixed one and is great to get the attention of the ...
30
votes
11answers
3k views
Your preferred C/C++ header policy for big projects?
When working on a big C/C++ project, do you have some specific rules regarding the #include within source or header files?
For instance, we can imagine to follow one of these two excessive rules:
...
29
votes
3answers
19k views
Javascript Include Tag Best Practice in a Rails Application
Say I need to call a javascript file in the <head> of an ERb template.
My instinct is to do the usual:
<head>
<%= javascript_include_tag :defaults %> <!-- For example -->
...
27
votes
8answers
736 views
C++ standard library - when should I use it and when shouldn't I?
I was wondering how often people actually use much of the standard c++ library, particularly the stuff in the <algorithm> and <numeric> headers. The text books seem to recommend them, but ...
26
votes
11answers
4k views
Tool to track #include dependencies
Any good suggestions? Input will be the name of a header file and output should be a list (preferably a tree) of all files including it directly or indirectly.
22
votes
8answers
4k views
Tool for adding license headers to source files?
I'm looking for a tool that will, in bulk, add a license header to some source files, some of which already have the header. Is there a tool out there that will insert a header, if it is not already ...
21
votes
7answers
5k views
Should Jquery code go in header or footer?
Where is the best place to put Jquery code (or separate Jquery file)? Will pages load faster if I put it in the footer?
20
votes
6answers
713 views
C++: Platform dependent types - best pattern
I'm looking for a pattern to organize header files for multiple platforms in C++.
I have a wrapper .h file that should compile under both Linux and Win32.
Is this the best I can do?
// defs.h
#if ...
19
votes
8answers
18k views
Sending a 404 error in PHP
if (strstr($_SERVER['REQUEST_URI'],'index.php')){
header('HTTP/1.0 404 Not Found');
}
Why wont this work? I get a blank page.
18
votes
4answers
6k views
Where does gcc look for C and C++ header files?
On a Unix system, where does gcc look for header files?
I spent a little time this morning looking for some system header files, so I thought this would be good information to have here.
17
votes
5answers
16k views
Android: Adding static header to the top of a ListActivity
Currently I have a class that is extending the ListActivity class. I need to be able to add a few static buttons above the list that are always visible. I've attempted to grab the ListView using ...
17
votes
10answers
2k views
Clean up your #include statements?
How do you maintain the #include statements in your C or C++ project? It seems almost inevitable that eventually the set of include statements in a file is either insufficient (but happens to work ...
17
votes
8answers
37k views
GridView - Show headers on empty data source
In C# how do I still show the headers of a gridview, even with the data source is empty.
I am not auto generating the columns as they are all predefined.
Currently what I am doing is the ...
17
votes
3answers
40k views
How to declare a structure in a header that is to be used by multiple files in c?
If I have a source.c file and it uses a structure like
struct a
{
int i;
struct b
{
int j;
}
};
if this structure is to be used by some other file func.c how to do it?
...
16
votes
3answers
581 views
Why is my 301 Redirect taking so long?
In a long tiredsome quest to speed up my site, I have figured out something is wrong with the redirection: currently my index.php handles all the homepage redirections via PHP header location 301 ...
16
votes
6answers
5k views
Remove Server Response Header IIS7
Is there any way to remove "Server" response header from IIS7? There are some articles showing that using HttpModules we can achieve the same thing. This will be helpful if we don't have admin right ...
16
votes
9answers
2k views
Organization of C files
I'm used to doing all my coding in one C file. However, I'm working on a project large enough that it becomes impractical to do so. I've been #including them together but I've run into cases where I'm ...
15
votes
3answers
8k views
Python: What is the common header format?
I came across the following header format for Python source files in a document about Python coding guidelines:
#!/usr/bin/env python
"""Foobar.py: Description of what foobar does."""
__author__ ...
15
votes
6answers
10k views
C++ class header files organization
What are the C++ coding and file organization guidelines you suggest for people who have to deal with lots of interdependent classes spread over several source and header files?
I have this situation ...
14
votes
6answers
459 views
How to reconcile the C++ idiom of separating header/source with templates?
I'm wondering a bit about this templating business.
In C and C++ it is very common to put declarations in header files and definitions in source files, and keep the two completely separate. However, ...
14
votes
6answers
88k views
Why it's failed to load main-class manifest attribute from jar-file?
I have created a jar file in this way jar cf jar-file input-files. Now I try to run it. This does not work: jre -cp app.jar MainClass (jre command is not found). This java -jar main.jar also does not ...
14
votes
4answers
826 views
Is it possible to tell Safari to repeat a table header on printed pages?
Is it possible to repeat table headers in Safari on every printed page?
This code works in Firefox but not in Safari:
<table>
<thead>
<tr>
<td>Header1</td>
...
13
votes
4answers
4k views
Is there a way to get a web page header/footer printed on every page?
Based on my research, it seems that what I want to do is not possible, but in case something has changed, I wanted to check to see if anyone had come up with a way to do this.
I have a web app that ...
13
votes
6answers
16k views
jQuery and AJAX response header
So I've got this jQuery AJAX call, and the response comes from the server in the form of a 302 redirect. I'd like to take this redirect and load it in an iframe, but when I try to view the header info ...
13
votes
12answers
3k views
#include header guard format?
I know it makes little difference to a project but, assuming you use #defined header guards for your C++ code, what format do you use? e.g. assuming a header called foo.hpp:
#ifndef __FOO_HPP__
...
...
12
votes
1answer
308 views
“Deep” header dependency analysis
I work on a mid-sized C/C++ project to which I've already applied Doxygen+Graphviz. Its header graphs are useful, but they only show relationships based on #include. I'm interested in finding a ...
12
votes
12answers
18k views
C++ Redefinition Header Files
How do I prevent from including header files twice? The problem is I'm including the in MyClass.h and then I'm including MyClass.h in many files, so it includes multiple times and redefinition error ...
12
votes
3answers
7k views
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 part of the code:
header('Content-Type: application/csv');
header("Content-length: " . ...
12
votes
5answers
26k views
stdafx.h: When do I need it?
I see so much code including stdafx.h. Say, I do not want pre-compiled headers. And I will include all the required system headers myself manually. In that case is there any other good reason I should ...
12
votes
7answers
7k views
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 from scratch and I'm learning about the process, so its not perfect, but I think its powerful ...
11
votes
1answer
128 views
Including standard header files. string.h or cstring? or both? [closed]
Possible Duplicate:
Difference between string.h and cstring?
What is better programming practice in C++ when including the standard header files with respect to
including cmath in place of ...
11
votes
4answers
219 views
What use is the 'encoding' in the XML header?
Looking at the XML header
<?xml version="1.0" encoding="UTF-16" standalone="no"?>
Am I right to state that the encoding attribute is
coming too late (you can't read it properly unless you ...
11
votes
6answers
354 views
Where should I put documentation comments in C++?
In the header file containing the forward declarations, or in the .cpp file containing the implementations, like this?
//header.h
/* About foo() */
void foo();
/* About bar() */
int bar();
/* About A ...
11
votes
9answers
417 views
Macro definitions for headers, where to put them?
When defining macros that headers rely on, such as _FILE_OFFSET_BITS, FUSE_USE_VERSION, _GNU_SOURCE among others, where is the best place to put them?
Some possibilities I've considered include
At ...
11
votes
1answer
5k views
Set Headers with jQuery.ajax and JSONP?
I am trying to access google docs with jQuery. Here's what I have so far:
var token = "my-auth-token";
$.ajax({
url: ...
11
votes
21answers
3k views
Coding C++ without headers, best practices?
When i first learned c++, I had already coded in many other languages prior to it, which made the prospect of headers really depressing. So far, my solution to coding without header files in c++ has ...
11
votes
11answers
3k views
C++ Header order
What order should headers be declared in a header / cpp file? Obviously those that are required by subsequent headers should be earlier and class specific headers should be in cpp scope not header ...
11
votes
5answers
42k views
In LaTeX, how can one add a header/footer in the document class Letter?
In LaTeX, how can one create a document using the Letter documentclass, but with customized headers and footers?
Typically I would use:
\usepackage{fancyhdr}
\pagestyle{fancy}
\lhead{\footnotesize ...
11
votes
3answers
23k views
How do you declare arrays in a c++ header?
This is related to some other questions, such as: this, and some of my other questions.
In this question, and others, we see we can declare and initialise string arrays in one nice step, for example:
...
10
votes
2answers
270 views
Effective C++ “35. Minimize compilation dependencies between files”. Is it still valid today?
In this chapter Scott Meyer mentioned a few technique to avoid header files dependency. The main goal is to avoid recompiling a cpp file if changes are limited to other included header files.
My ...
10
votes
6answers
1k views
Why I have to call 'exit' after redirection through header('Location..') in PHP?
You know that if you want to redirect an user in PHP you can use the header function:
header('Location: http://smowhere.com');
It is also well known that it is a good practice to put also an exit; ...
10
votes
3answers
10k views
Header only retreival in php via curl
Actually I have two questions.
(1) Is there any reduction in processing power or bandwidth used on remote server if I retrieve only headers as opposed to full page retrieval using php and curl?
(2) ...
10
votes
5answers
6k views
C++ Header Files, Code Separation
I am new to C++ and I had a few general questions about code separation. I have currently built a small application, all in one file. What I want to do now is covert this into separate files such ...
9
votes
4answers
313 views
PHP sanitize user data for use in header() function
Are there any escape routines that need to be done to user data for it to be used inside PHP's header() function?
Eg for MySQL I run mysql_real_escape_string() over user data before sending it to the ...
9
votes
4answers
6k views
HTML5 best practices; section/header/aside/article tags
There is enough information about HTML5 on the web(also on stackoverflow), but now I'm curious about the "best practice". Tags like section / headers / article are new, and everyone has different ...
9
votes
9answers
1k views
Where to put include statements, header or source?
Should I put the includes in the header file or the source file? If the header file contains the include statements, then if I include that header file in my source, then will my source file have all ...
9
votes
4answers
7k views
Adding system header search path to Xcode
(Posting this question for reference purpose, I'll answer immediately)
How to add header search paths to Xcode?
Especially using include it this syntax:
include <myheader.h>
Adding path ...