- 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
_ _ _ 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 _ _ _ |
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
#!/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
{ | |
"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
{ | |
"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
<?xml version="1.0" encoding="UTF-8"?> | |
<TaskOptions> | |
<TaskOptions> | |
<option name="arguments" value="-w $FilePath$" /> | |
<option name="checkSyntaxErrors" value="true" /> | |
<option name="description" value="Run gofmt after saving go file" /> | |
<option name="exitCodeBehavior" value="ERROR" /> | |
<option name="fileExtension" value="go" /> | |
<option name="immediateSync" value="false" /> | |
<option name="name" value="Gofmt" /> |
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
func addMathProductions() { | |
// expr -> expr + term | |
// | expr - term | |
// | term | |
// | |
// rewritten: | |
// expr -> term restAdd | |
addProduction(expr, | |
rules{ | |
{term, restAdd}, |
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
////////////////////////////////////////////////////////////////////// | |
// ARGUMENTS | |
////////////////////////////////////////////////////////////////////// | |
var target = Argument("target", "Default"); | |
var configuration = Argument("configuration", "Release"); | |
////////////////////////////////////////////////////////////////////// | |
// PREPARATION | |
////////////////////////////////////////////////////////////////////// |
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
using System; | |
using System.Collections.Generic; | |
using System.ComponentModel; | |
using System.Runtime.InteropServices; | |
using System.Text; | |
using Microsoft.Win32.SafeHandles; | |
public static class CredentialManager | |
{ | |
public static Credential ReadCredential(string applicationName) |
OlderNewer