Questions tagged [hashtag]

A hashtag is an in-text label that classifies content into a specific category, first popularized by Twitter users and now common in social media.

A hashtag is a hash sign (#) followed by a string which is usually alphanumeric, without spaces, punctuation or capitalization. It is used to classify the text in which it is contained and allow searching for related content.

Because of its adoption and usage by a large user base, it has been used in the filtering, searching and sorting of tweets and posts on other supporting social media platforms.

Examples

  • #StackOverflow
  • #StackExchange
  • #1337code
834 questions
6
votes
4 answers

Simple "scroll to/down" effect using minimal markup and hash tags

I am making a one page site that has a classic navigation at the top. Right now I have links set up as hash tags in order to navigate within the page: ...
...
Obviously, this…
davecave
  • 4,698
  • 6
  • 26
  • 32
5
votes
4 answers

How to convert hashtag text into a hashtag hyperlink?

I'm using php's preg_replace() to convert any words that have a hashtag symbol in front of them into hyperlinks. So something like: #austin would become: #austin Here is my regular…
floatleft
  • 6,243
  • 12
  • 43
  • 53
5
votes
6 answers

C# Exchange Service suddenly giving error The property Hashtags is valid only for Exchange Exchange2015 or later versions

I have a Windows Service written in C# that polls an Exchange server to process mails to an unattended email box. It's been working fine, until today when it's throwing up the following error:- EXCEPTION:…
LMS
  • 642
  • 6
  • 22
5
votes
2 answers

Why we need bang mark in hash navigation URLs?

We are developing SPA with hash tag navigation. Saw on another SPA sites there is hash tag URLs like http://example.com/#!/users Our application currently implements hash tag URLS without ! (bang, exclamation mark) like http://example.com/#/users Is…
Serj.by
  • 534
  • 5
  • 17
5
votes
1 answer

Is there a way to pull trending instagram hashtags in real-time?

I'm working on an app that would automatically generate instagram hashtags for the user, allowing them to snap a photo, get auto hashtags, and post right away. Is there a way I can pull the most trending instagram hashtags in real-time and have the…
user8569587
  • 51
  • 1
  • 2
5
votes
3 answers

how to send hashtag character with my text in http request via telegram bot?

I use this format to send text messages to a special group via my Bot in Telegram , but I don't know how to send hashtag character in my text ? https://api.telegram.org/bot/sendMessage?chat_id
user7386793
  • 61
  • 1
  • 3
5
votes
2 answers

System to handle hash tags for tab content? (!#)

I have four pages on the main part of the website I am working on, with tabs to switch between them. I want the switching between the 4 tabs to be a fading transition (using jQuery). That's all fine and dandy, but I also want SEO to think of each…
Kerry Jones
  • 21,806
  • 12
  • 62
  • 89
5
votes
1 answer

Instagram API Retrieve Hash Media - next_max_id and min_id are deprecated for this endpoint; use min_tag_id and max_tag_id instead

I want to fetch instagram hashtag media like iconosquare. So I'm using Cosenary PHP Api to kickstart my instagram project. After I authenticate/access the url with the $instagram->getLoginUrl() Then the page will redirect me to my callback url with…
Mavichow
  • 1,213
  • 17
  • 41
5
votes
4 answers

ShellExecute fails for local html or file URLs

Our company is migrating our help systems over to HTML5 format under Flare. We've also added Topic based access to the help systems using Flare CSHID's on the URI command line for accessing the topic directly, such as index.html#CSHID=GettingStarted…
WebDrive
  • 1,248
  • 12
  • 19
5
votes
6 answers

Get hashtags from string with trim spaces and new lines

The javascript code: How can I find hashtags without newline or spaces or tabs just hashtags without url hashtags? function findHashtags(searchText) { var regexp = /\#\w\w+\s?/g result = searchText.match(regexp); if (result) { …
Ahmed Fathi
  • 159
  • 1
  • 2
  • 11
5
votes
2 answers

extracting hashtags out of Twitter trending topics data with Python Tweepy

I'm having a following problem: using the Twitter API and tweepy module, I want to monitor the trending topics and extract hashtags out of the data. This code: #!/usr/bin/env python # -*- coding: utf-8 -*- import tweepy, json CONSUMER_KEY =…
bcrvc
  • 315
  • 5
  • 20
5
votes
0 answers

Lost hash in url on Ipad

I encountered such a problem, I use a mailing service, which comes in the letter have an URL leading to a page of my site with the hash tag. On the desktop version, all goes well and the hash is not lost, but if you go to the post office with IPAD…
SergeevDMS
  • 801
  • 6
  • 15
5
votes
1 answer

Using simple_hashtag gem to link to hashtags in model's 'body' attribute

Sorry for the vague title I'm using rails 4 and the simple_hashtag gem (https://github.com/ralovely/simple_hashtag). I have it working great, but I want to go a little further. Right now my post model has a description attribute and if a user…
Justin
  • 4,922
  • 2
  • 27
  • 69
5
votes
1 answer

Django-haystack search for #hashtag

I really have 0 experience in Haystack, but we use django-haystack for our search. For now the search works fine, but I just added #hashtags to the site and I would like the search to work somehow different for hashtagged words. What I have right…
PepperoniPizza
  • 8,842
  • 9
  • 58
  • 100
5
votes
3 answers

Getting the facebook graph to only return results with a # symbol in it

Any one have any ideas on how to accomplish this? I have tried https://graph.facebook.com/search?q=%22%23apple%22 https://graph.facebook.com/search?q=%23apple https://graph.facebook.com/search?q#apple which does not work. To be clear the results…
jlarry
  • 430
  • 5
  • 18