Skip to content

Instantly share code, notes, and snippets.

View tuxagon's full-sized avatar
🎲

Kenneth Bogner tuxagon

🎲
View GitHub Profile

Emoji Code Review Comments

Legend

Emoji Translation
😃 😍 I like this!
No changes or acknowledgements needed. Just wanted to say well done.
⚠️ Problem
This is a blocking issue and requires changes.
🔧 🎨 Suggestion
Not blocking, but a suggestion or idea for improvement. Feel free to disagree and move on.
QuestionNot blocking, but requires an answer by the PR/code author.
@tuxagon
tuxagon / intensify.sh
Created March 1, 2021 23:42 — forked from alisdair/intensify.sh
intensifies Slack emoji creator
#!/bin/bash
# Generate a `:something-intensifies:` Slack emoji, given a reasonable image
# input. I recommend grabbing an emoji from https://emojipedia.org/
set -euo pipefail
# Number of frames of shaking
count=10
# Max pixels to move while shaking
@tuxagon
tuxagon / Dockerfile
Created February 23, 2018 13:56 — forked from ralfw/Dockerfile
Roll your own Elm Docker container
# Build image with Node.js, Elm and Nginx
FROM debian:latest
# prepare
RUN apt-get -y update
RUN apt-get -y install apt-utils
# install curl, http://stackoverflow.com/questions/27273412/cannot-install-packages-inside-docker-ubuntu-image
RUN apt-get -y install curl
@tuxagon
tuxagon / fakeresponse.go
Created May 8, 2017 02:56 — forked from karlseguin/fakeresponse.go
A fake http.ResponseWriter class, used for testing. See http://openmymind.net/Testing-In-Go/
package fakeresponse
import (
"testing"
"net/http"
)
type FakeResponse struct {
t *testing.T
headers http.Header
@tuxagon
tuxagon / fakeresponse.go
Created May 8, 2017 02:56 — forked from karlseguin/fakeresponse.go
A fake http.ResponseWriter class, used for testing. See http://openmymind.net/Testing-In-Go/
package fakeresponse
import (
"testing"
"net/http"
)
type FakeResponse struct {
t *testing.T
headers http.Header
@tuxagon
tuxagon / fakeresponse.go
Created May 8, 2017 02:56 — forked from karlseguin/fakeresponse.go
A fake http.ResponseWriter class, used for testing. See http://openmymind.net/Testing-In-Go/
package fakeresponse
import (
"testing"
"net/http"
)
type FakeResponse struct {
t *testing.T
headers http.Header
@tuxagon
tuxagon / spec.go
Created May 8, 2017 02:55 — forked from karlseguin/spec.go
A simple test helper for Go. See http://openmymind.net/Testing-In-Go/
package tests
import (
"testing"
)
type S struct {
t *testing.T
}