Search For Fun

A blog for collecting diverse useful information


  • Home

  • Tags

  • Categories

  • Archives

  • Search

markdown internal link or reference

Posted on 2018-08-03 | In markdown

description: markdown internal page links

add anchor in the place to jump

1
<span id="search4fan">About Search4fan</span>

use the following syntax to jump to the anchor

1
[About](#search4fan)

combine together

Jump to here

1
2
3
4
5
6
I want to [jump](#jump)
.
.
.
.
<span id="jump">Jump to here</span>

output

I want to jump

get google suggested keywords in python

Posted on 2018-08-02 | In python

description: use python to get the keyword suggestion from google

codes for scraping google’s keywords

1
2
3
4
5
6
import requests, json
URL="http://suggestqueries.google.com/complete/search?client=firefox&q=google keywords"
headers = {'User-agent':'Mozilla/5.0'}
response = requests.get(URL, headers=headers)
result = json.loads(response.content.decode('utf-8'))
print(result)

result for crawling google keywords

1
['google keywords', ['google keywords', 'google keywords planner', 'google keywords free', 'google keywords analytics', 'google keywords planner tools', 'google keywords finder', 'google keywords youtube', 'google keywords api', 'google keywords search volume', 'google keywords everywhere']]

test

Posted on 2018-07-05 | Edited on 2018-07-16

test
more on http://searchfor.space

vba clear sheet content

Posted on 2018-01-08 | Edited on 2018-08-01 | In vba

description: vba clear sheet content

clear sheet content

1
Sheets("sheetname").Cells.ClearContents
1…67

killfun

Personal blog for collecting useful information

64 posts
14 categories
38 tags
RSS
© 2018 killfun
Powered by Hexo v3.7.1
|
Theme — NexT.Muse v6.3.0