Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| #!/bin/bash | |
| # | |
| # Written by: Robin Gierse - info@thorian93.de - on 20191016 | |
| # | |
| # Purpose: | |
| # This script backs up influx databases | |
| # | |
| # Version: 0.1 on 20191016 | |
| # Version: 0.2 on 20191017 | |
| # Version: 0.3 on 20191022 - Add cleanup routine and switch compression to bz2 |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| package main | |
| import ( | |
| "fmt" | |
| ) | |
| type Node struct { | |
| Value int | |
| } |
| package main | |
| import ( | |
| "os" | |
| "fmt" | |
| ) | |
| type Fetcher interface { | |
| // Fetch returns the body of URL and | |
| // a slice of URLs found on that page. |