Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji |
|---|---|
| Initial commit | π :tada: |
| Version tag | π :bookmark: |
| New feature | β¨ :sparkles: |
| Bugfix | π :bug: |
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji |
|---|---|
| Initial commit | π :tada: |
| Version tag | π :bookmark: |
| New feature | β¨ :sparkles: |
| Bugfix | π :bug: |
| // helpful links: | |
| // https://developer.apple.com/library/mac/documentation/Darwin/Reference/ManPages/man2/EV_SET.2.html | |
| // http://julipedia.meroh.net/2004/10/example-of-kqueue.html | |
| // create kqueue | |
| kq, err := syscall.Kqueue() | |
| if err != nil { | |
| log.Println("Error creating Kqueue descriptor!") | |
| return | |
| } |
| #!/usr/bin/env python3 | |
| from abc import ABC, abstractmethod | |
| class AbstractFunction(ABC): | |
| @abstractmethod | |
| def install_function(self): | |
| pass |
| package main | |
| import ( | |
| "bytes" | |
| "encoding/json" | |
| "fmt" | |
| "io/ioutil" | |
| "log" | |
| "net/http" | |
| "net/http/httputil" |
| #!/usr/bin/env python3 | |
| from abc import ABC, abstractmethod | |
| class AbstractEdgeBuilder(ABC): | |
| @abstractmethod | |
| def build_edge(self): | |
| pass |
| package main | |
| import ( | |
| "fmt" | |
| "net" | |
| "net/http" | |
| "github.com/gorilla/mux" | |
| ) |