/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

infinitedigits.co
| | golangbot.com
1.9 parsecs away

Travel
| | Learn to compile and run a hello world program in Go. Execute the program with go install, go build and go run.
| | philiplaine.com
2.9 parsecs away

Travel
| | It has been an issue for a long time to run Docker images on multiple architectures. I remember the first time I got the idea to install Docker on my Raspberry Pi and I realized quickly that what I was trying to do would not work. The issue of course was that I was trying to use an AMD64 compiled Docker image on a ARM 32 bit CPU. Anyone who works with any lower level languages would call me an idiot for realizing this sooner than later. I would agree with them. Docker just seems to work like magic, running on most machines without any issue, like running Linux containers on Windows. One thing that has not been easy though is building Docker images on one type of CPU and running them on another.
| | hjr265.me
3.1 parsecs away

Travel
| | In Windows, unlike the Unix-like POSIX-compatible operating systems, there is this notion of an application subsystem: console vs. windows. If you build a Go program for Windows, it will, by default, use the console subsystem. When you start this program from File Explorer (e.g. by double-clicking its icon), Windows will show a console (like the Command Prompt window) and run the program inside the console. When running a console subsystem program that finishes quickly, you may notice the console window appears and disappears quickly.
| | blog.nuculabs.de
26.0 parsecs away

Travel
| I've been playing recently with ASP.Net Core and I'm developing a small Web API project in order to teach myself the framework. In still article I'll explain how to use a Postgres database with Docker, in order to make your development experience much more enjoyable. Before moving on, please make sure that you've installed: Docker Docker-Compose First, create the docker-compose.yml file in your root directory of the project, the file should contain: