- Download http://sourceforge.net/projects/liteide/files
- Unzip to a directory of your choice and make a shortcut to
./liteide/bin/liteide.exe
- Recommended settings in View | Options:
- LiteApp
- Display
- Toolbar Icon Size: 18x18
- Display
- LiteEditor
- LiteApp
- Behavior
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "0.1.0", | |
"command": "go", | |
"showOutput": "always", | |
"tasks": [ | |
{ | |
"taskName": "build", | |
"isBuildCommand": true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "Launch", | |
"type": "go", | |
"request": "launch", | |
"mode": "debug", | |
"program": "${workspaceRoot}", | |
"env": {}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# go get -u github.com/kisielk/errcheck | |
# go get -u github.com/golang/lint/golint | |
# go get -u honnef.co/go/simple/cmd/gosimple | |
# go get -u honnef.co/go/unused/cmd/unused | |
# go get -u github.com/mdempsky/unconvert | |
# go get -u github.com/client9/misspell/cmd/misspell | |
# go get -u github.com/gordonklaus/ineffassign | |
# go get -u honnef.co/go/staticcheck/cmd/staticcheck |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
"log" | |
"strconv" | |
"strings" | |
) | |
var gates map[string]*gate |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
_ _ _ 8 _ _ 5 _ _ | |
_ _ 9 _ 2 5 _ _ 8 | |
_ _ _ _ _ _ _ _ 4 | |
_ _ _ 1 _ _ 2 8 _ | |
_ 8 _ 6 5 3 _ 7 _ | |
_ 7 5 _ _ 8 _ _ _ | |
2 _ _ _ _ _ _ _ _ | |
3 _ _ 4 7 _ 8 _ _ | |
_ _ 6 _ _ 9 _ _ _ |
NewerOlder