Skip to content

Instantly share code, notes, and snippets.

View nicknezis's full-sized avatar

Nicholas Nezis nicknezis

  • Systolic, INC.
  • Baltimore, MD
View GitHub Profile
@nicknezis
nicknezis / main.go
Created June 5, 2018 02:51
mcast_listener
package main
import (
"fmt"
"log"
"net"
"os"
"strconv"
"strings"
"syscall"
@nicknezis
nicknezis / Makefile
Last active April 30, 2018 03:07
Nats.io Waterslide
...
ifdef HASNATS
proc_nats_in$(WS_SFX): proc_nats_in.c
$(SHOWFILE)
$(CPP) $(CPPFLAGS) -I/usr/local/include $< -o $@ /usr/local/lib/libnats_static.a $(LDFLAGS)
$(INSTALL) $@ $(WS_PROCS_DIR)
else
proc_nats_in$(WS_SFX): proc_nats_in.c
@echo " not building $@, set HASNATS to build"

Keybase proof

I hereby claim:

  • I am nicknezis on github.
  • I am nnezis (https://keybase.io/nnezis) on keybase.
  • I have a public key ASCTU4bxcSVcDPpD52IdapCXkkwmNzbmR83g95EBIUw7nwo

To claim this, I am signing this object:

@nicknezis
nicknezis / app.html
Created March 23, 2017 13:39 — forked from brylie/app.html
Aurelia Gist
<template>
<require from="bootstrap/css/bootstrap.css"></require>
<nav class="navbar navbar-default" role="navigation">
<div class="navbar-header">
<a class="navbar-brand" href="#">
<i class="fa fa-user"></i>
<span>
Open API Designer
</span>
</a>
@nicknezis
nicknezis / Dockerfile
Last active March 6, 2018 20:34
Vagrant Docker Ansible combo (centos7 with SSH)
# Docker image to use with Vagrant
# Aims to be as similar to normal Vagrant usage as possible
# Adds Puppet, SSH daemon
FROM centos:centos7
MAINTAINER Sam Bashton <sam@bashton.com>
# Replace fake systemd with real systemd
# Lifted from http://jperrin.github.io/centos/2014/09/25/centos-docker-and-systemd/
RUN yum -y swap -- remove fakesystemd -- install systemd systemd-libs initscripts
RUN yum -y update; yum clean all; \
apply plugin: "nebula.ospackage"
apply plugin: "maven"
configurations {
moduleArchives
serviceArchives
}
dependencies {
moduleArchives project(path: ":modules:Base", configuration: "archives")
<template>
<div id="main" class="container-fluid clear-top">
<div class="row">
<div class="col-md-4 col-sm-12 col-xs-12">
<div class="row">
<div id="quarterback" class="col-md-12 col-sm-12 col-xs-12">
<table class="table table-condensed table-hover table-striped">
<tbody>
<tr repeat.for="$i of 10">
<td>1</td>
@nicknezis
nicknezis / designer.html
Last active August 29, 2015 14:20
designer
<link rel="import" href="../core-icon-button/core-icon-button.html">
<link rel="import" href="../core-toolbar/core-toolbar.html">
<link rel="import" href="../core-header-panel/core-header-panel.html">
<link rel="import" href="../core-icons/core-icons.html">
<link rel="import" href="../paper-icon-button/paper-icon-button.html">
<link rel="import" href="../core-menu/core-submenu.html">
<link rel="import" href="../paper-item/paper-item.html">
<polymer-element name="my-element">