Skip to content

Instantly share code, notes, and snippets.

View ofonimefrancis's full-sized avatar
🐷

Ofonime Francis ofonimefrancis

🐷
View GitHub Profile
mainWindow.loadFile(path.join(__dirname, '/index.html'))
{
"name": "electron-kickstarter",
"version": "1.0.0",
"main": "./src/main-process/main.js",
"scripts": {
"start": "electron .",
"dev": "electron . --debug"
}
}
/**
* @fileOverview Class to validate user input for order
* @class Orders validator
* @exports ValidateOrders
*/
class ValidateOrder {
/**
* validate orders input validity
* @param {Object} request
package logger
import (
"path"
"runtime"
"github.com/Abramovic/logrus_influxdb"
client "github.com/influxdata/influxdb/client/v2"
"github.com/sirupsen/logrus"
)
import (
"path"
"runtime"
"github.com/Abramovic/logrus_influxdb"
client "github.com/influxdata/influxdb/client/v2"
"github.com/sirupsen/logrus"
)
var log *logrus.Logger
type Query struct {
Command string
Database string
RetentionPolicy string
Precision string
Chunked bool
ChunkSize int
Parameters map[string]interface{}
}
func retrieveUserOrders(influxClient client.Client, userID string) {
query := client.Query{
Command: fmt.Sprintf("select * from orders where user_id = '%s'", userID),
Database: "tutorial",
}
resp, err := influxClient.Query(query)
if err != nil {
log.Fatalf("%v", err)
}
@ofonimefrancis
ofonimefrancis / go
Last active September 5, 2018 11:23
package main
import (
"log"
"time"
client "github.com/influxdata/influxdb/client/v2"
)
const (