https://github.com/sverrirab/mandelbrot-go
Simple mandelbrot set webserver written in go (golang)
https://github.com/sverrirab/mandelbrot-go
golang mandelbrot
Last synced: 3 months ago
JSON representation
Simple mandelbrot set webserver written in go (golang)
- Host: GitHub
- URL: https://github.com/sverrirab/mandelbrot-go
- Owner: sverrirab
- License: mit
- Created: 2017-02-18T15:45:56.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2021-03-14T15:27:11.000Z (over 4 years ago)
- Last Synced: 2025-03-26T13:53:59.519Z (4 months ago)
- Topics: golang, mandelbrot
- Language: Go
- Size: 263 KB
- Stars: 13
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Mandelbrot-go
Simple Mandelbrot set webservice written in go (golang).Install [golang](https://golang.org/doc/install), pull the code and:
```bash
go run .
```Browse to [localhost:8090](http://localhost:8090/) and view the results:

## Testing
```bash
go test
```## Background
This was written by me as an exercise in learning go. The code is as simple as possibly demonstrating a simple
webserver with a very simple template and a [Mandelbrot](https://en.wikipedia.org/wiki/Mandelbrot_set) webservice that
creates images on the fly. Just over 100 lines of golang code.There are many more better tools to view the mandelbrot set but this is a fun way to play with go.
# Build status

# License
MIT (very permissive)