Skip to content

Instantly share code, notes, and snippets.

View moronkreacionz's full-sized avatar
🤓
I may respond next month.

moronkreacionz moronkreacionz

🤓
I may respond next month.
View GitHub Profile
@moronkreacionz
moronkreacionz / Args.ipynb
Created September 24, 2018 09:32 — forked from gbishop/Args.ipynb
Allow arguments to be passed to notebooks via URL or command line.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@moronkreacionz
moronkreacionz / remote-rsyslog.go
Created July 13, 2016 11:26 — forked from giefferre/remote-rsyslog.go
Using a remote rsyslog in Golang
package main
import (
"log"
"log/syslog"
)
func main() {
logwriter, e := syslog.Dial("tcp","123.123.123.123:12345", syslog.LOG_DEBUG, "your.software.identifier")
if e != nil {