###Sketch trial non stop
Open hosts files:
$ open /private/etc/hosts
Edit the file adding:
127.0.0.1 backend.bohemiancoding.com
127.0.0.1 bohemiancoding.sketch.analytics.s3-website-us-east-1.amazonaws.com
| package main | |
| import ( | |
| "fmt" | |
| "os" | |
| cmd "github.com/ElonSalfati/events-manager/pkg/cmd/server" | |
| ) | |
| func main() { |
| package cmd | |
| import ( | |
| "context" | |
| "flag" | |
| "log" | |
| "os" | |
| firebase "firebase.google.com/go" | |
| grpc "github.com/ElonSalfati/events-manager/pkg/protocol/grpc" |
| package rest | |
| import ( | |
| "context" | |
| "log" | |
| "net/http" | |
| "os" | |
| "os/signal" | |
| "time" |
| package grpc | |
| import ( | |
| "context" | |
| "log" | |
| "net" | |
| "os" | |
| "os/signal" | |
| v1 "github.com/ElonSalfati/events-manager/pkg/api/v1" |
| package v1 | |
| import ( | |
| "context" | |
| "log" | |
| "cloud.google.com/go/firestore" | |
| firebase "firebase.google.com/go" | |
| v1 "github.com/ElonSalfati/events-manager/pkg/api/v1" |
| // Set the syntax to proto3 | |
| syntax = "proto3"; | |
| // Set the generated files to be under package v1 | |
| package v1; | |
| // import definitions from protobuf | |
| import "google/protobuf/timestamp.proto"; | |
| // import swagger generator |
###Sketch trial non stop
Open hosts files:
$ open /private/etc/hosts
Edit the file adding:
127.0.0.1 backend.bohemiancoding.com
127.0.0.1 bohemiancoding.sketch.analytics.s3-website-us-east-1.amazonaws.com
We're happy to say that we recently released the code for the TraceView Ruby instrumentation on Github as Open Source. There are a ton of benefits for AppNeta (and the community) in doing this so making the decision was easy... but the process of actually opening the repository and still keeping a few things private was slightly trickier. Here's the route we took that has worked out really well.
The Ruby instrumentation has always been sheltered on Github - albeit always in a private Github repository. We used the issues, pull requests and wiki pages extensively for everything from new employee resources to hosting screenshots, customer issues, internal discussions and links to other project and management tools (e.g. Asana).
Outside of the commits and the code, everything else was either of little use to the public or potentially company or customer confidential - stuff that shouldn't or couldn't be shared publicly. So this put us
| #!/usr/bin/perl | |
| # | |
| # aggregate-cidr-addresses - combine a list of CIDR address blocks | |
| # Copyright (C) 2001,2007 Mark Suter <[email protected]> | |
| # | |
| # This program is free software: you can redistribute it and/or modify | |
| # it under the terms of the GNU General Public License as published by | |
| # the Free Software Foundation, either version 3 of the License, or | |
| # (at your option) any later version. | |
| # |