Skip to content

Instantly share code, notes, and snippets.

View simt2's full-sized avatar
🐔
magic is bad

Simon Tesar simt2

🐔
magic is bad
View GitHub Profile
@simt2
simt2 / mesh-go-example.md
Created February 21, 2017 09:32
mesh-go-example blogpost

Combining the Gopher with the API-first CMS Gentics Mesh

Go is a rising multi-purpose programming language, widely used for mostly server-side applications because of its speed, concurrency and ease of use. It has a built-in and production-ready template engine and http server, which also makes it a excellent choice for web applications. This example shows how to create a small web application with Go, using Gentics Mesh as backend to manage all the data for us.

Getting ready

Make sure you have Go installed or set it up as described here. Now get and start the example from Github:

# Download example and change to directory
go get github.com/gentics/mesh-go-example
cd $GOPATH/src/github.com/gentics/mesh-go-example
@simt2
simt2 / keybase.md
Created April 24, 2018 06:46
Keybase verification

Keybase proof

I hereby claim:

  • I am simt2 on github.
  • I am simt (https://keybase.io/simt) on keybase.
  • I have a public key ASCxDYTJYyvtoY5dVaK0_xDmeqBwg30JFN0zXLbmaQM4JQo

To claim this, I am signing this object:

@simt2
simt2 / Vagrantfile
Last active December 23, 2021 05:31
Adding an additional disk to a VirtualBox machine in Vagrant via the experimental disks feature
# Enable the experimental disks feature via environment variable, requires Vagrant >=2.2.8.
ENV["VAGRANT_EXPERIMENTAL"] = "disks"
Vagrant.configure(2) do |config|
config.vm.disk :disk, name: "storage", size: "4GB"
end