Tagged Questions
The head tag has no wiki summary.
14
votes
5answers
13k views
How do I change a Git remote HEAD to point to something besides “master”
Short version: How do I set a Git remote's HEAD ref to point to something besides "master"?
My project has a policy not to use a "master" branch (all branches are to have meaningful names). ...
12
votes
2answers
6k views
What is the HEAD in git?
There seems to be a difference between the last commit, the HEAD and the state of the file I can see in my directory.
What is HEAD, what can I do with it and what mistake should I avoid?
11
votes
8answers
3k 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 authors to
put style ...
9
votes
2answers
940 views
Git: difference HEAD and MASTER
What is the difference between these?
I did a clone of a project on github and want to push my changes to the remote.
But which one?
9
votes
1answer
214 views
Best way to split several heads from a list with Erlang?
So, Erlang is a real joy to work with, but there's one problem I run into occasionally, that I'm wondering if there is a nicer way to solve. Often, I find myself needing to split several items from a ...
8
votes
2answers
2k views
create a git symbolic ref in remote repository
In my remote bare repository the HEAD is pointing to "refs/heads/master" and I want it to point to "refs/heads/other".
I am not able to go to remote repository directory and run git symbolic-ref. Is ...
6
votes
1answer
140 views
default HEAD in git when multiple branch HEADs refer to the same SHA1
in my project, I usually have a (development) branch leading to the next release version at which point the development branch will be merged into the release branch, and then a new development branch ...
5
votes
6answers
3k 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 interest.
How would I ...
4
votes
2answers
145 views
Using <noscript> within <head>: Good idea or bad idea?
I noticed Facebook does this where they have a meta refresh enclosed in a <noscript> enclosed in the <head> tag. They use this to detect if the user agent has javascript enabled or not.
...
4
votes
3answers
441 views
Make git master HEAD point to current HEAD of branch
I have to admit that I haven't played with gits advanced features but on my current project I had to.
The situation:
Someone tried to implement some features and comitted them to the master, now I ...
4
votes
1answer
45 views
What conditions can I rely on for a script that determines whether my servers are “up”?
I usually deal with at least two dozen servers on a weekly basis. I thought it would be a good idea to create a script that queries each of them and determines whether they're "up" or not.
The ...
4
votes
1answer
637 views
Best practice for handling HTTP HEAD request with Django on App Engine
I'm receiving HEAD requests in my application, and wondering on the best way to handle them. Options are:
convert them to GETs, process GET normally, then:
strip the body (though I'm not sure how - ...
4
votes
5answers
1k views
Checking if a website is up via Python
By using python, how can I check if a website is up? From what I read, I need to check the "HTTP HEAD" and see status code "200 OK", but how to do so ?
Cheers
Related
How do you send a HEAD HTTP ...
4
votes
4answers
664 views
Value of the last element of a list
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 the only way around? ...
3
votes
1answer
28 views
Which head to position on before doing a merge?
Is there a head to prefer when doing a merge?
What I mean is this: I've got, say, old rev 1000. Meanwhile I did 234 commits and I'm at rev 1234. Now I need to go back to rev 1000 to implement a ...
3
votes
2answers
35 views
What hg command displays only heads that are incoming?
I have a two repositories, I'll call them RepoA and RepoB. RepoA has many changesets that the other is lacking. There are many heads in RepoA and only a few in RepoB. I'd like a command that tells me ...
3
votes
2answers
31 views
Using output of head -1
When I write
ls | head -1
the output is
file.txt
When I write
ls | head -1 > output.txt or
echo `ls | head -1` > output.txt
the file output.txt contains
^[[H^[[2Jfile.txt
This ...
3
votes
3answers
238 views
Ping vs HTTP HEAD
I'm writing a Java app which has a feature to check whether it's connected to the internet by periodically trying to access a server. My first idea was to Ping the server - but turned out to be ...
3
votes
1answer
240 views
should Modernizr file be placed in head?
Should the reference to the Modernizr javascript file be in the head of the page? I always try and place all scripts on the bottom of the page and would like to preserve this. And if it needs to be in ...
3
votes
3answers
205 views
effective difference between html head for css tags?: @import url vs. link href
Is there a effective difference between
<style type="text/css">@import url(/css/layout.css) all;</style>
and
<link href="/css/layout.css" type="text/css" static="all" ...
3
votes
1answer
312 views
HTTP HEAD Request and System.Web.Mvc.FileResult
I'm using BITS to make requests to a ASP.NET MVC controller method named Source that returns a FileResult. I know the type FilePathResult uses HttpResponse.TransmitFile, but I don't know if ...
3
votes
2answers
2k views
how to get <head> content of the current page with jquery or Jv
how to get <head> content of the current page
3
votes
8answers
713 views
What's the opposite of head? I want all but the first N lines of a file
Given a text file of unknown length, how can I read, for example all but the first 2 lines of the file? I know tail will give me the last N lines, but I don't know what N is ahead of time.
So for a ...
3
votes
2answers
1k views
IBM Mq Message Header
I am sending messages to a remote queue, to which I have no control.
I send a xml file as message but when the application reads the message it gets a message header like
...
3
votes
2answers
849 views
HEAD request receives “403 forbidden” while GET “200 ok”?
after several months having the site disappear from search results in every major search engine, I finally found out a possible reason.
I used WebBug to investigate server header. See the difference ...
3
votes
1answer
245 views
HEAD with WebClient?
I am going to assume the answer is no but....
Is there a way to use WebClient to send the HEAD method and return the headers as a string or something similar?
3
votes
2answers
2k views
Cannot use Response.Write in <head> section of aspx page?
I'm trying to use the Response.Write() method to dynamically insert content in the < head > section of an aspx page. I need to inject a string value from a property on a code-behind object which is ...
3
votes
3answers
383 views
How to replace entire CSS of a page after an ajax request with jQuery?
I have a document with one CSS linked in. How can I replace the current CSS with one coming from a document that I just fetched with AJAX request using jQuery?
Here's the code I am trying right now, ...
3
votes
2answers
703 views
getting the HEAD element from overlay.js firefox plugin
I have a lightwiehgt plugin to firefox which needs to inject a script into the HTML.
The code looks like this:
var head = document.getElementsByTagName("head")[0];
var newscrpt;
newscrpt = ...
3
votes
2answers
220 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 here. Any suggestions?
3
votes
3answers
231 views
How to pipe a command result to a -<character><argument> option? (Without spaces)
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 want to get the previous ...
3
votes
4answers
3k 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/head, or some other ...
2
votes
1answer
62 views
Proper method for Django template inheritance of <head> content
I have a base.html template with sitewide tags for charset, google-site-verification, stylesheets, js.... I also need to set up blocks for page specific title tags and meta descriptions.
I am ...
2
votes
6answers
80 views
Move code from .aspx file to .cs file without any difference
I have some code in <head> in .apsx I would like to move to my .cs file. So I just move it to my Page_Load(), and it everything would result in the same? Thanks.
<html ...
2
votes
4answers
92 views
Asp.net delimiter <% replaced with <% in head tag?
Maybe its a stupid question, but i'm having this issue in Visual Studio 2010:
in my Master page i've this code:
<head runat="server">
<title>App Title</title>
...
2
votes
2answers
38 views
if sending charset within content-type header, still advisable to send within head tag via meta tag?
i do not have the link anymore as it was a few months back, but there was a great and detailed aritcle about setting the charset of the body being sent to the useragent.
the just of the article was ...
2
votes
1answer
59 views
Dealing With Multiple Git Heads locally and on the server
I'm using Linonde to host my git repos and also the actual site files.
git branch -r looks like this:
company/master
company/stage
origin/HEAD -> origin/master
origin/master
prod/master
git ...
2
votes
6answers
90 views
Where does internal CSS go?
I know that internal CSS should be in the <head></head> section of a (X)HTML document, but does it need to be before/after certain <meta> or <title> elements or can it be any ...
2
votes
4answers
75 views
Heading to another page in PHP
I was curious to know if there was another way than using javascript to make php go to another page ?
Because head only works when it is the first function to be called, so I resorted to javascript ...
2
votes
1answer
420 views
LabJs or HeadJS?
Looking for any advice on experiences between these two javascript loaders ?
head.js('some-script-here.js');
Or
$LAB.script("framework.js").wait();
Can anyone provide any guidance on these and ...
2
votes
2answers
132 views
Checking a lot of URLs to see if they return 200. What's the cleverest way?
I need to check a lot (~10 million) of URLs to see if they exist (return 200). I've written the following code to do this per-URL, but to do all of the URLs will take approximately forever.
def ...
2
votes
3answers
85 views
JavaScript defering
Is placing <script> tags in just before closing the <body> tag the same sa placing them in the <head> section and specifying a defer="defer" attribute?
Thank you.
2
votes
4answers
413 views
Should I put Google Analytics at the head or bottom of an HTML page?
Google advises putting the google analytics script right before closing the </head>.
However, I would prefer to combine it with the rest my javascript that are now all together in a cached, ...
2
votes
2answers
358 views
How to auto-merge 2 heads with mercurial
We just changed over to mercurial from subversion and there is one thing that is taking up more time than expected; merging heads.
We love the fact that it keeps merges independent from the 2 commits ...
2
votes
1answer
340 views
jquery and creating styles, how to check if the style already exists
Hi people i have looked around but cant seem to find the answer i'm looking for.
i have a search page which makes ajax calls, returns json data then creates a style based on the returned data and ...
2
votes
4answers
670 views
Head node in linked lists
I have problems with understanding what is the nature of the first node, or the so called head, in a linked list data structure. A linked list consists of nodes, and each node contains some data and a ...
2
votes
5answers
4k views
How do I send a HEAD request manually using Firefox?
I'm debugging my webserver, and I'd like to manually send HEAD requests to some web pages. Is there a way to do this in Firefox? Some extension perhaps.
I want to use firefox so that it can be part ...
1
vote
1answer
87 views
Correct response to HTTP HEAD Request on HTTPS only site
We have an ASP.Net MVC3 site only accessible over HTTPS, by using the RequireHTTPS attribute on the controller.
We are receiving numerous HTTP HEAD method requests, mainly from what appear to be ...
1
vote
2answers
53 views
Web Apple Icons
Well, There a lot of articles out there on Apple Icons but none really give you a clear cut answer on how to make your icons with a border.
Here is the way I am defining in my html:
<link ...
1
vote
1answer
47 views
Git merge locally messed up. Gemfile disappeared and rails server does not start
Did a Merge Branch locally in working-copy with master. After merging, switching back to master displays HEAD, instead of master as it was before. Also errors pops up when start rails server with ...