Go - (4) Interfaces

Introduction Interfaces are a collection of method signatures. ⛶type shape interface { area() int perimeter() int }In the above example, shape is anything that can be used to calc...
0 Read More

Goscript: Go For (go-pher?) Scripting

Goscript: Go For (go-pher?) Scripting
Scripts are short bits of code typically written to automate a series of otherwise manual steps or accomplish a small task. With that focus on quickly getting some task done, a compiled, strongly-type...
0 Read More

A 10x faster TypeScript

Anders Hejlsberg, lead architect of TypeScript and Technical Fellow at Microsoft, introduces a new port of TypeScript that will deliver the next generation of high-performance developer tooling.Sour...
0 Read More

A basic Golang project Makefile

In some of my side projects, I develop with Golang. The CLI tool Make is mainly used there to execute build and test commands, but it is also used for other tasks.After some time, the following Makefi...
0 Read More