All Projects → feiskyer → go-examples

feiskyer / go-examples

Licence: Apache-2.0 license
Various golang examples.

Programming Languages

go
31211 projects - #10 most used programming language
shell
77523 projects
Protocol Buffer
295 projects

Projects that are alternatives of or similar to go-examples

ktor-API-examples
Examples with ktor to create an API REST
Stars: ✭ 23 (-32.35%)
Mutual labels:  examples
vue-d3-examples
vue d3 examples
Stars: ✭ 124 (+264.71%)
Mutual labels:  examples
YouTubeAPI-Examples
YouTube Data API Usage Examples using Python.
Stars: ✭ 61 (+79.41%)
Mutual labels:  examples
cycle-snabbdom-examples
Cycle.js Component Examples with Routing & Transitions!
Stars: ✭ 13 (-61.76%)
Mutual labels:  examples
Deep-Learning-With-TensorFlow
All the resources and hands-on exercises for you to get started with Deep Learning in TensorFlow
Stars: ✭ 38 (+11.76%)
Mutual labels:  examples
awesome.gl
棒棒哒攻略:Developer's Technical Documents, API References, Code Examples, Quick Starts, Programming minutebooks, and Tutorials. https://awesome.gl
Stars: ✭ 12 (-64.71%)
Mutual labels:  examples
Examples
An complete examples and related support for various popular projects, and more.
Stars: ✭ 22 (-35.29%)
Mutual labels:  examples
goodcode
A curated collection of annotated code examples from prominent open-source projects
Stars: ✭ 184 (+441.18%)
Mutual labels:  examples
spring-batch-examples
Spring Batch examples in Kotlin (from simple to advanced)
Stars: ✭ 50 (+47.06%)
Mutual labels:  examples
Examples FLTK
Shows how to use Fltk controls only by programming code (c++17).
Stars: ✭ 28 (-17.65%)
Mutual labels:  examples
echo-rest-api
Example of creating REST API with Echo framework
Stars: ✭ 39 (+14.71%)
Mutual labels:  examples
HEBI-ROS-DEPRECATED
HEBI ROS Examples/API/etc.
Stars: ✭ 19 (-44.12%)
Mutual labels:  examples
lstools-showcase
Showcase examples for EPFL logic synthesis libraries
Stars: ✭ 115 (+238.24%)
Mutual labels:  examples
github-action-gitflow-release-workflow
Example workflows for automated releases in a GitFlow-style project using GitHub actions.
Stars: ✭ 91 (+167.65%)
Mutual labels:  examples
extensions-rig
A full development environment to build Twitch Extensions. Currently only supports panel extensions but video overlay coming soon.
Stars: ✭ 26 (-23.53%)
Mutual labels:  examples
DotNetWithCMake
Your swiss army knife for creating .NET assemblies with CMake and integrating unmanaged code.
Stars: ✭ 50 (+47.06%)
Mutual labels:  examples
here-workspace-examples-java-scala
HERE Workspace Examples for Java and Scala Developers
Stars: ✭ 24 (-29.41%)
Mutual labels:  examples
esbuild-loader-examples
esbuild-loader examples
Stars: ✭ 76 (+123.53%)
Mutual labels:  examples
flutter provider examples
Examples of Flutter's provider package
Stars: ✭ 41 (+20.59%)
Mutual labels:  examples
haxeunity
Documentation about using Unity (c#) with Haxe
Stars: ✭ 16 (-52.94%)
Mutual labels:  examples

Go examples

Build Status Go Report Card

Various go examples based on gobyexample with extensions.

  • Go basic
  • gRPC
  • Hyper
  • Libvirt client
  • Kubernetes
  • Networking
  • OpenStack client
  • And so on

Golang install

curl -sL https://storage.googleapis.com/golang/go1.8.3.linux-amd64.tar.gz | tar -C /usr/local -zxf -
export GOPATH='/go'
export PATH=$GOPATH/bin:/usr/local/go/bin/:$PATH

Useful tools

  • godep: go get github.com/tools/godep
  • dep: go get -u github.com/golang/dep/...
  • govendor: go get -u github.com/kardianos/govendor
  • gometalinter: go get -u github.com/alecthomas/gometalinter && gometalinter --install
  • go-pry: An interactive REPL for Go, go get github.com/d4l3k/go-pry.
  • gophernotes: Go in Notebooks.
    • go get golang.org/x/tools/cmd/goimports
    • go get -tags zmq_4_x github.com/gopherds/gophernotes
    • mkdir -p ~/Library/Jupyter/kernels/gophernotes
    • cp -r $GOPATH/src/github.com/gopherds/gophernotes/kernel/* ~/Library/Jupyter/kernels/gophernotes
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].