How Do My Website Urls have "Likes" when I haven't added a Like button to my Website? [closed] - facebook-like

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
In other words, what action from other people has triggered the URL of my website to get a "Like" without a Like button? How can someone Like a url in Facebook without the button?

As I said in my comment, I really don't think this question belongs here at SOF. That being said, here are my two cents.
You can "Like" any URL. Button on it or not.
There is even a chrome extension here that allows you to like any page from within the browser.
You can like a page simply by going to this URL even: http://www.facebook.com/plugins/like.php?href=[encoded url here]
I think the real question is why you care if your website is being liked anyways? Why does it matter?

Related

How do I implement text forms(?) using django or HTML [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
First sorry for my bad english and my unclear question.
I am trying to make my own blog that can post articles.
Using django basic form is convenient, but its form is just plain.
I want to be able to underline, change colors, and use images.
So basically I want to the feature the image below
the picture
I want to implement the thing in the black oval (I don't know its specific name... T.T).
So is there any APIs or feature implemented in django itself? Or can you tell me what it is called? I don't know what it is called in english so I can't search for it at all..
Thank you for reading my question.
You can do it bytinyMCE, quilljs.
But you should have basic understanding how django form works.

How to avoid being crawled/penalized by Google [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
OVERVIEW
I'd like to test some Django websites using random data on a production server using real domain names, but these websites will be simple tests with possible duplicated data (quite probable not following Google rules). I know usually for this you use a development/staging/virtual box for such a task, but I do want to use directly the production box with the real DNS.
Now, I'm kind of new on website development and SEO, and I wouldn't like to mess with SEO and Google.
What'd be the right way to proceed here? Should I try to avoid being indexed/crawled by Google somehow? Any other advices?
You can disallow the complete indexing of your page and then later (when you're done with coding) activate it again.
Thats probably the best way because google is not going to crawl "bad pages" (for example when your website still is in development) and thus you will not get a Ranking so far (called Page Ranking if you want to look it up).

Scrapy crawling issue [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
I am trying to crawl from wikipedia but the result is not returning anything.
I tried running simple query in IPython console with one value to check but still it is not returning any value.
I have tried this:
sel.xpath('//div[#id="mw-content-text"]/table/tbody/tr[1]/td[1]/text()').extract()
This is going to be a guess, but an educated one. tbody is something inserted by a browser and something you see in the Browser Developer Tools. But, Scrapy is not a browser - remove tbody from the xpath expression:
sel.xpath('//div[#id="mw-content-text"]/table/tr[1]/td[1]/text()').extract()

Web Development on different browsers [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I am new to development of websites
I have query why does a website work on some browsers while not for others
I have designed a website which works on one browser IE and then it does not for other computers IE
it does not goes through hit .
What precautions should I TAKE SO THAT MY WEBSITE WORKS ON EVERY BROWSER
The warning which I got was as below
The code on this page disabled back and forward caching. For more information, see: go.microsoft.com/fwlink/?LinkID=291337
but I did not understood Kindly explain and give some tips
Ok I think I got something wrong with my code or internet speed
I kept the code in Developers option and let it wait then the hit went through all the 4 states and I got a response
Am I missing something ... In normal mode the hit does not go through all the states
Set your mode as synchronous to true

How can I "do stuff" on a webpage through C++(or suggest another language) [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
What I exactly want to do is this:
I want my program to take this link
http://answers.yahoo.com/dir/index;_ylt=Aj_zP9qxkgoIzbqd5GR_zkH05nNG;_ylv=3?sid=396546041
and retrieve a list of all the questions in a page or any selected page. That part is easy through simply going through the page, but I want to be able to "do" things such as typing an answer in the console or window and post it in the question in that forum. Or be able to upvote/downvote and do most of the operations that require a button click. Save questions for later view and other things like that.
My approach for retrieving info is using C++ to parse the info from the page by going through it line by line. But I have absolutely no clue how to send information such as button pressing and other stuff. I even don't know how to search for it because I'm not sure what it's called.
Use sockets api (windows sockets or posix on linux);
Connect on 80 (or any http) port to your server;
Send a http-header and get/post parameters (should be urlencoded);
Receive response.
Keywords: http-protocol, berkeley sockets, c++, good luck!