Skip to content

Instantly share code, notes, and snippets.

View ironMann's full-sized avatar

Gvozden Neskovic ironMann

  • Frankfurt am Main
View GitHub Profile
<link rel="import" href="../paper-tabs/paper-tabs.html">
<link rel="import" href="../paper-tabs/paper-tab.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
@ironMann
ironMann / tcp_echo.go
Created June 2, 2013 20:52
Smallest TCP Echo server?
// test: nc localhost 6666
package main
import (
"net"
"io"
)
func main() {