[21] Results
Golang : How to extract links from web page ?
golang extract-links crawl-web-site parserGolang's third party package goquery provides excellent tools to assist developers in building HTML parser/crawler. In this tutorial,….... read more
PageSpeed : Clear or flush cache on web server
pagespeed httpd web flush-cacheHave to migrate one of my website to a new server(droplet) recently when the original server was corrupted by broken….... read more
Golang : Submit web forms without browser by http.PostForm example
golang submit-web-forms http-postformWriting this tutorial on how to submit a web form without using a browser. We submit web forms almost every….... read more
Golang : Gorilla mux routing example
golang http mux web-route multiplex gorillaThis is a short tutorial on how to use Gorilla's mux. The code example below is taken from .... read more
Golang : How to redirect to new page with net/http?
golang web redirect httpProblem : You need to do a page redirect in Golang. How to do it ? Solution : Use net/http
….... read more
Web : How to see your website from different countries?
web different-countries urlProblem : You need to see(visually) how does your website looks like from different countries and you don't have multiple….... read more
Golang : How to display image file or expose CSS, JS files from localhost?
golang web image CSS JS localhostProblem : You execute your Golang program on localhost
and want to see images on localhost:8080
, but your <img>
HTML….... read more
Golang : Web routing/multiplex example
golang http mux web-route multiplex gorillaRouting based on the URL's path can be useful in some cases like build RESTful API server. Problem : You….... read more