The hash-bang "#!" is used in Unix shell scripts to identify the script's parser and as an URL convention for AJAX-based web applications with web crawler support.

learn more… | top users | synonyms

0
votes
0answers
14 views

Why does Facebook not use _escaped_fragment_ instead of #! in some cases?

I have code in my page that is activated by this (I can output its value in a comment in the header): isset($_GET['_escaped_fragment_']) and I'm looking at the source of 'what scraper sees' using ...
0
votes
1answer
20 views

Facebook canonical URL differing from fetched URL

I'm testing my site (which uses AJAX and !#) using the facebook object debugger: ...
0
votes
3answers
95 views

The difference between “#! /usr/bin/env bash” and “#! /usr/bin/bash”? [closed]

In the header of a bash script, what's the difference between those two statements ? #!/usr/bin/env bash #!/usr/bin/bash When I tried to see the env man page, I'm just get this definition: env ...
0
votes
0answers
20 views

How to put Hashbang / Shebang to all my link

I just want to know how to use #! or what they called Hash Bang / She Bang. Like in Twitter. What I want is when I click a link on my page ( #!/example.php ) and it will load to my DIV Content, but ...
1
vote
1answer
87 views

Cannot get google to crawl AJAX Hashbang site

I have been working on a project for a little over a month now and have spent a long time trying to really understand the ins and out of crawling ajax. I have built a site which uses .load() and '#!' ...
0
votes
1answer
138 views

How do I use #! instead of just # in Durandal URLs?

By default, URLs created using Durandal's router is formatted as such: http://example.com/#/whiskey-tango-foxtrot However, I'd like to use #! for SEO purposes, so that the URL looks like this: ...
1
vote
3answers
49 views

Alternate Interpreters for Script

I have a script that I'm running on two computers. The first line of the code looks like this: #!/usr/bin/gnuplot -p On the second computer, I want to use a version of GNUplot stored at ...
1
vote
1answer
495 views

AngularJS $routeProvider and relative URLs in ASP.NET MVC

I'm totally new to AngularJS. Just wanted to try out relative URLs with $routeProvider. Here is the scenario: I have a "Edit" page, the ASP.NET MVC link to the page would be: ...
2
votes
2answers
368 views

Hashbang URLs using Ember.js

I am trying to set up my Router to use "hashbang" URLs (#!). I tried this, but obviously it doesn't work: App.Router.map(function() { this.route("index", { path: "!/" }); ...
2
votes
1answer
323 views

Backbone.js PushState routes .htaccess only working as hash but nowhere else

I have a website domain.com for example. I have backbone.js with pushstate and fallback and when I goto domain.com/about it loads up the index.html page and pushstates to about. everything is ...
1
vote
2answers
205 views

Are hashbangs a bad idea even if they are used as a fallback for facebook share

in backbone the hashbang was removed from the code with standard fallback to "#/path" which should be fine for crawling (see ...
3
votes
2answers
135 views

How to embed Haskell in a batch file (hash-bang runhaskell for Windows)?

On a UNIX-like system with GHC installed, I can create an file with the following contents #!/usr/bin/env runhaskell main = putStrLn "Hello, I am a UNIX script file." Make the file executable, and ...
4
votes
1answer
68 views

Hashbang won't support parameters with arguments [duplicate]

Possible Duplicate: how to use multiple arguments with a shebang (i.e. #!)? How can I make a #! statement accept a param with arguments? It seems to be lumping them all together as one ...
5
votes
3answers
201 views

history.js + Google [closed]

Let's talk about AJAX-crawling by google: Since history.js is a nice alternative to ugly hashbang urls I was wondering about one certain issue: For HTML5 browsers, nice urls are created if ...
0
votes
0answers
64 views

How is twitter handling urls now after getting rid of hasbangs?

We all know twitter has moved away from hashbangs. However now when I load a user page say https://twitter.com/twitter, click on any username (say @TwitterStories) from any of the tweets which opens ...
1
vote
1answer
110 views

Can I add custom titles to ajax powered website with hashbang (#!) URLs?

I'm using ajax powered WordPress theme which has hashbang URLs like www.example.com/#!/page. I'm wondering can I add custom titles and descriptions for each page because of SEO? The site isn't indexed ...
0
votes
0answers
222 views

Facebook sharer gets title from content of HTML element

I am working on a single page website with multiple Facebook 'Share this' buttons. The main URL is ie.: http://wishdesign.nl/fora/fb.sharer.htm (working demo URL) The Facebook sharer URL would then ...
1
vote
1answer
97 views

tcsh on Windows: hashbang file support

I'm using pre-build binary exe of tcsh on Windows. I'm trying to write some clojure script. like this: #!/usr/bin/env java clojure.main (prn "Hello World!\n") first I try to direct run it in ...
1
vote
1answer
127 views

Safe to have space in hashbang or URL fragment?

I'm writing a Javascript driven one-page application where the URL contains a # param eg. (example.com/#foo/bar) to represent application state (I've considered using various JS frameworks but cannot, ...
2
votes
0answers
68 views

Use of hashbang (#!) in urls [duplicate]

Possible Duplicate: What's the shebang/hashbang (#!) in Facebook and new Twitter URLs for? What are hashbang and what are the uses of hashbang in hyperlinks?
0
votes
0answers
60 views

Postfix segment in route for all URL's

I have a legacy project. In current system all urls look likes new-york.example.com After loading, my webapp using js framework to load all content. it use #! to route all url's on client side, and ...
0
votes
1answer
166 views

Trigger audio stop in iframe when parent window navigates away (hashbang)

I have a web app in an iframe (Facebook Tab App) on a web page (Facebook). The web app plays audio and when the user navigates away, usually by clicking on another Facebook link, the page loads ...
5
votes
1answer
279 views

Uri.IsWellFormedUriString for relative Hashbang urls compatibility

In the following tests, why does (only) the last one fail? [Fact] public void IsWellFormedUriString_AbsolutNonHashTagUri_ReturnsTrue() { ...
0
votes
2answers
140 views

Inline navigation with hashbang pages

In the past, I used to rely on hash for inline navigation, for example: http://url?Category=a&item=3#Paragrah1 (Pointing to Paragraph1 within the http://url?Category=a&item=3 page) With ...
2
votes
1answer
164 views

Should you use a hashbang on AJAX content sites, or just use normal URLs?

So I am creating just a fairly normal content based website that is going to load new pages/content in via AJAX for a smoother user experience and some simple transitions. I see a ton of people using ...
3
votes
1answer
801 views

Hashbang URLs make the website difficult to crawl by Google?

Our agency built a dynamic website that uses a lot of AJAX interactions and #! (hashbang) URLs: http://www.gunlawsbystate.com/ It's a long book which you can scroll through and the URL in the address ...
0
votes
1answer
338 views

How to use in-page HTML anchors with hashbang URLs (in GWT)?

I have a little problem with implementing in-page HTML anchors while also having bookmarkable URLs via hashbang. The description is easy: I visit some URL of my application: ...
0
votes
2answers
661 views

Adding your own hash in the URL breaks jQuery Mobile?

I would like to use my own hash parameters in the URL, but when I do the jQuery Mobile site does not work any more. Just a blank white screen with an endless spinner. Is it true the hash is off limits ...
0
votes
1answer
354 views

How should implement Hashbang (AJAX) in content page tabs?

As some of you may know, Google is now crawling AJAX. The implementation is by far something elegant, but at least it still applies to Yahoo and Bing AFAIK. Context: My site is driven by Wordpress ...
0
votes
2answers
451 views

Can Google track nested hashbang URLs?

I've created a onepager website where google is able to track the ajax loaded content of the main site by loading each content via the !#my-url <-> _escaped_fragment_ "translation" In one of those ...
3
votes
1answer
1k views

Crawlable Ajax content. SEO-ing without hashbang. Is my way ok?

I'm going to build my application based on ajax, and my URLs are something like: http://server.com/module/#function_name,param1,param2...etc After referencing some discussions about google's ...
1
vote
1answer
184 views

Adding hashbang to URL if not already present

Problem I've got my site up and running using #! URLs and PathJS working nicely. It works fine when someone is linked to a URL that already contains the proper URL structure that contains the ...
0
votes
1answer
215 views

Making hash crawlable with #! and surviving the change

I'm trying to make my site crawlable by changing the # to #!. The page works OK when clicking on the link, but I cannot manage to fix the script for calling the hash directly from the URL. This is ...
4
votes
2answers
2k views

Doing links like Twitter, Hash-Bang #! URL's [duplicate]

Possible Duplicate: What’s the shebang/hashbang (#!) in Facebook and new Twitter URLs for? I was wondering how Twitter works its links. If you look in the source code, you use the links ...
1
vote
1answer
81 views

For what is used and what technologies are related to /#!/ in some websites URL's [duplicate]

Possible Duplicate: What's the shebang/hashbang (#!) in Facebook and new Twitter URLs for? I'm curious about for what the expression /#!/ is used in some websites like Twitter or ...
2
votes
0answers
293 views

Understanding Googlebots AJAX crawling

I've been through Googles documentation and countless blog posts about this subject, and depending on date and source, there seems to some conflicting information. Please shine your wisdom upon this ...
7
votes
3answers
249 views

Should Python library modules start with #!/usr/bin/env python?

Should Python library modules start with #!/usr/bin/env python? Looking at first lines of *.py in /usr/share/pyshared (where Python libs are stored in Debian) reveals that there are both files that ...
3
votes
1answer
770 views

should i not use backbone.js because it uses hashbangs?

I'm new to backbone.js and like the idea of structuring javascript. However, i've read it relies on hashbangs which Twitter is trying to eradicate. So my question is should I not use backbone.js due ...
2
votes
1answer
355 views

Simple ajaxify, without hash or hashbang urls

I'm taking a course in webdesign. I and a lot of the other students are really interested in ajaxifying our work. Our teacher is only into design and HTML - so he can't help. I hope I use the right ...
0
votes
1answer
280 views

jQuery animation with escaped-fragmented URL (hash-bang, #!)

My website is setup like: when the page loads, a jQuery animation -- in the template -- is played which, on completion, further makes an Ajax call to fetch the content of the page. Now, I want to ...
4
votes
3answers
3k views

How to handle facebook sharing/like with hashbang urls?

I am building a website where from the homepage i will open some other URI on the website into a lightbox (AJAX), and i want to use HTML5 push state and hash bangs as a fallback to manage changes of ...
3
votes
3answers
1k views

Unregistered values of rel attribute in anchor tag

I used rel values in jQuery for the parametrized (#!hashbang) AJAX calls. <a id='_qualifier' rel='telephony' href='contact.php'>contact</a> and with jQuery: var hashbang = ...
1
vote
1answer
295 views

What to put in HTML snapshot for hash-bang URL for SEO?

I am using hash-bang URLs in my AJAX application and I am implementing the server-side for: handle ?_escaped_fragment_=key1=value1%26key2=value2 So when I look at Google's FAQ, it says that ...
1
vote
1answer
430 views

Internal Links with jQuery Address

I'm trying to implement the lovely Address plugin to handle internal links for prettier links and use of the back button. I managed to get it to work, however the one thing I noticed, is that when it ...
0
votes
3answers
1k views

Catch “Back” event in browser and load diffrent content

I've been working on a project using the hashbang (#!) method to skip though pages. Basically there is only 1 page, and when you click to go to a diffrent page, you stay on the page, but the URL ...
1
vote
2answers
346 views

Is there anyway to detect if the last navigation event was caused by the back or forward browser buttons?

I'm writing a single-page web application that uses HTML5 push state (Falling back to hash tags) to handle client side navigation. One of the things I've noticed is that if a user scrolls down the ...
1
vote
1answer
178 views

Superfish and hashbang

I am considering replacing querystrings with hashbangs on my public site, for better performance. Are menus like Superfish compatible with the hashbang? How can I trigger a content update when I ...
2
votes
2answers
1k views

Routing for flexible JavaScript Single-Page-App?

I'm building a single page web app (because I want flexibility and speed when moving across pages/states) but I'm struggling with routing / urls ... In the traditional paradigm I would have urls such ...
2
votes
1answer
1k views

Will google index the correct URL for hashbang/escaped_fragment content

I have recently read Google's Making AJAX Applications Crawlable as I was wondering how to correctly prepare my dynamic site, which uses hashbang navigation, for SEO. I understand now that for ...
0
votes
1answer
2k views

Effective Use of Hashbang, JavaScript, PHP and AJAX With Dynamic Content

I've been putting together a web page for a desktop application I've started developing, and I'd really like to take advantage of HTML5 technologies and dynamic content with JavaScript. Basically, if ...

1 2