forked from cerc-io/plugeth
289b30715d
This commit converts the dependency management from Godeps to the vendor folder, also switching the tool from godep to trash. Since the upstream tool lacks a few features proposed via a few PRs, until those PRs are merged in (if), use github.com/karalabe/trash. You can update dependencies via trash --update. All dependencies have been updated to their latest version. Parts of the build system are reworked to drop old notions of Godeps and invocation of the go vet command so that it doesn't run against the vendor folder, as that will just blow up during vetting. The conversion drops OpenCL (and hence GPU mining support) from ethash and our codebase. The short reasoning is that there's noone to maintain and having opencl libs in our deps messes up builds as go install ./... tries to build them, failing with unsatisfied link errors for the C OpenCL deps. golang.org/x/net/context is not vendored in. We expect it to be fetched by the user (i.e. using go get). To keep ci.go builds reproducible the package is "vendored" in build/_vendor.
30 lines
2.4 KiB
Markdown
30 lines
2.4 KiB
Markdown
## Termbox
|
|
Termbox is a library that provides a minimalistic API which allows the programmer to write text-based user interfaces. The library is crossplatform and has both terminal-based implementations on *nix operating systems and a winapi console based implementation for windows operating systems. The basic idea is an abstraction of the greatest common subset of features available on all major terminals and other terminal-like APIs in a minimalistic fashion. Small API means it is easy to implement, test, maintain and learn it, that's what makes the termbox a distinct library in its area.
|
|
|
|
### Installation
|
|
Install and update this go package with `go get -u github.com/nsf/termbox-go`
|
|
|
|
### Examples
|
|
For examples of what can be done take a look at demos in the _demos directory. You can try them with go run: `go run _demos/keyboard.go`
|
|
|
|
There are also some interesting projects using termbox-go:
|
|
- [godit](https://github.com/nsf/godit) is an emacsish lightweight text editor written using termbox.
|
|
- [gomatrix](https://github.com/GeertJohan/gomatrix) connects to The Matrix and displays its data streams in your terminal.
|
|
- [gotetris](https://github.com/jjinux/gotetris) is an implementation of Tetris.
|
|
- [sokoban-go](https://github.com/rn2dy/sokoban-go) is an implementation of sokoban game.
|
|
- [hecate](https://github.com/evanmiller/hecate) is a hex editor designed by Satan.
|
|
- [httopd](https://github.com/verdverm/httopd) is top for httpd logs.
|
|
- [mop](https://github.com/michaeldv/mop) is stock market tracker for hackers.
|
|
- [termui](https://github.com/gizak/termui) is a terminal dashboard.
|
|
- [termloop](https://github.com/JoelOtter/termloop) is a terminal game engine.
|
|
- [xterm-color-chart](https://github.com/kutuluk/xterm-color-chart) is a XTerm 256 color chart.
|
|
- [gocui](https://github.com/jroimartin/gocui) is a minimalist Go library aimed at creating console user interfaces.
|
|
- [dry](https://github.com/moncho/dry) is an interactive cli to manage Docker containers.
|
|
- [pxl](https://github.com/ichinaski/pxl) displays images in the terminal.
|
|
- [snake-game](https://github.com/DyegoCosta/snake-game) is an implementation of the Snake game.
|
|
- [gone](https://github.com/guillaumebreton/gone) is a CLI pomodoro® timer.
|
|
- [Spoof.go](https://github.com/sabey/spoofgo) controllable movement spoofing from the cli
|
|
|
|
### API reference
|
|
[godoc.org/github.com/nsf/termbox-go](http://godoc.org/github.com/nsf/termbox-go)
|