Skip to content

Instantly share code, notes, and snippets.

View fazo96's full-sized avatar
🏠
Working from home

Enrico Fasoli fazo96

🏠
Working from home
View GitHub Profile
Computer Information:
Manufacturer: Unknown
Model: Unknown
Form Factor: Desktop
No Touch Input Detected
Processor Information:
CPU Vendor: GenuineIntel
CPU Brand: Intel(R) Core(TM) i7-4790K CPU @ 4.00GHz
CPU Family: 0x6
@fazo96
fazo96 / override_links.js
Created June 10, 2016 10:02
Override default link behavior on all <a> tags
@fazo96
fazo96 / keybase.md
Created June 14, 2014 17:06
keybase.md

Keybase proof

I hereby claim:

  • I am fazo96 on github.
  • I am fazo96 (https://keybase.io/fazo96) on keybase.
  • I have a public key whose fingerprint is 936F 8334 A0F1 6F8C B9A6 26CB 1238 873C 5F27 DB4D

To claim this, I am signing this object:

@fazo96
fazo96 / networking.go
Created February 3, 2014 09:45
Vey basic Golang tcp implementation
package main
import(
"fmt"
"net"
)
func server(){
fmt.Printf("Server started\n")
serv,err := net.Listen("tcp","127.0.0.1:7000") // Start listening on tcp port 7000