Skip to content

Instantly share code, notes, and snippets.

@timolinn
timolinn / main.go
Created March 14, 2020 10:42
Guessing Game written in Go
package main
import (
"fmt"
"math/rand"
"time"
)
func main() {
fmt.Println("Guess the number!")
@timolinn
timolinn / main.go
Last active March 13, 2020 13:11
Connect to Azure Firewall rules
package main
import (
"context"
"github.com/Azure/azure-sdk-for-go/sdk/to"
"github.com/Azure/azure-sdk-for-go/services/preview/postgresql/mgmt/2017-12-01-preview/postgresql"
"github.com/Azure/go-autorest/autorest/azure/auth"
)
@timolinn
timolinn / vpn.md
Created August 16, 2019 21:38 — forked from joepie91/vpn.md
Don't use VPN services.

Don't use VPN services.

No, seriously, don't. You're probably reading this because you've asked what VPN service to use, and this is the answer.

Note: The content in this post does not apply to using VPN for their intended purpose; that is, as a virtual private (internal) network. It only applies to using it as a glorified proxy, which is what every third-party "VPN provider" does.

A Russian translation of this article can be found here, contributed by Timur Demin. There's also this article about VPN services, which is honestly better written (and has more cat pictures!) than my article.

Why not?