[Golang] Auto-Detect and Convert Encoding of HTML to UTF-8
Given an URL, auto-detect and convert the encoding of the HTML document to UTF-8 if it is not UTF-8 encoded in Go.
read more »Given an URL, auto-detect and convert the encoding of the HTML document to UTF-8 if it is not UTF-8 encoded in Go.
read more »Given an URL, determine the encoding of the HTML document in Go using golang.org/x/net/html and golang.org/x/text packages.
read more »Go solution to Names scores - Problem 22 - Project Euler.
read more »Go WebAssembly XMLHttpRequest (XHR) - Issue HTTP requests to exchange data between browsers (client) and servers.
read more »Download and save files (image, pdf, etc.) from given URL in Go.
read more »Read non-utf8 webpage with goquery if the charset of the page is known.
read more »Get all links of story highlights of a specific Instagram user in Go. Use only Go standard library and no third-party packages needed.
read more »Given user name, get Instagram user information, such as id, username, biography, etc., in Go.
read more »Use local web server to achieve communication between Chrome extension and local program.
read more »Print HTTP response header via Go standard net/http package.
read more »Send HTTP request with cookies via Go standard net/http package.
read more »HTTP request with custom User-Agent header via Go standard net/http package.
read more »Access Instagram API to discover Top lives in Go programming language. Use only Go standard library and no third-party packages needed.
read more »Instagram web top search client in Go programming language. Use only Go standard library and no third-party packages needed.
read more »Get URL of photos and videos in Instagram post via Go programming language. Use only Go standard library and no third-party packages needed.
read more »Get URL of all posts of a specific Instagram user via Go programming language. Use only Go standard library and no third-party packages needed.
read more »Get Instagram following and followers of a specific user via Go programming language. Use only Go standard library and no third-party packages needed.
read more »Get links of Instagram highlight stories of a specific user via Go programming language. Use only Go standard library and no third-party packages needed.
read more »Get links of Instagram stories of a specific user via Go programming language. Use only Go standard library and no third-party packages needed.
read more »Get the list of following Instagram stories via Go programming language. Use only Go standard library and no third-party packages needed.
read more »Given user name, get Instagram user id via Go programming language. Use only Go standard library and no third-party packages needed.
read more »Send data to servers or retrieve data from servers on browsers - Use XMLHttpRequest method in Go/GopherJS.
read more »Get query string of URL in request handler of HTTP server via Go standard net/http Package.
read more »Enable cross-domain XHR requests in Go server via Go standard net/http package.
read more »Implement static file server with custom HTTP 404 Not Found handler via Go standard net/http package.
read more »A Go server that returns HTTP request headers via JSONP.
read more »Read an image from web and resize it in Go programming language.
read more »Guess metadata from HTML webpage and convert it to reStructuredText format.
read more »Add basic HTML table to reStructuredText support for online HTML to reStructuredText service on Google App Engine Go.
read more »Online service on Google App Engine Go, which helps you extract title, image URL from Taobao item webpage, and output in reStructuredText format.
read more »Online HTML to reStructuredText service on Google App Engine Go.
read more »Convert HTML to restructuredtext format via net/html package in Go programming language. (Not fully supported)
read more »Given a webpage URL. Fetch the title of the webpage and output reStructuredText link on Google App Engine Go.
read more »Convert HTML unordered (bulleted) list, HTML link, and HTML image to restructuredtext format via net/html package in Go programming language.
read more »Extract title and URL from Hacker News comment via goquery, and then output the info to reStructuredText footnote.
read more »Server get HTML form value from HTTP POST in Go programming language.
read more »Download and save HTML file from given URL via Go. Do nothing if the HTML file already locally exists.
read more »Concatenate and compress JavaScript files via Go programming language and online Google Closure Compiler.
read more »Run Golang program in your browser by GopherJS. Show how to make cross-domain requests (CORS) by JSONP (JSON with Padding) technique, which allows data to be retrieved from servers of other domains. This is an example of full-stack Go, which uses Golang to develop web applications in both front-end and backend.
read more »Run Golang program in your browser by GopherJS. Use XMLHttpRequest (XHR) to send HTTP POST requests to send JSON data to remote server. This is an example of full-stack Go, which uses Golang to develop web applications in both front-end and backend.
read more »Run Golang program in your browser by GopherJS. Use XMLHttpRequest (XHR) to send HTTP GET requests to retrieve JSON data from remote server.
read more »Poll RSS/ATOM feeds with Goroutines
read more »Show how to pass JSON-format data using HTTP POST between browser (implemented with Dart) and web server (implemented with Go).
read more »