Skip to content

Instantly share code, notes, and snippets.

View shamaton's full-sized avatar
🍉
❤️

shamaton

🍉
❤️
View GitHub Profile
From shamaton/golang-centos6:latest
MAINTAINER shamaton
# golang library
RUN go get github.com/garyburd/redigo/redis
# copy test code
COPY test_redis.go .
redis:
image: redis:latest
restart: always
command: redis-server --appendonly yes
ports:
- '6379:6379'
volumes:
- /tmp
go_redis:
@shamaton
shamaton / reply_mail.txt
Created October 27, 2016 01:51
reply from sourced
Hello xxxxxxxx,
Thank you for your response.
I completely understand.
Let me wish you the best of luck.
Please don't hesitate to contact us when you are ready to look for new challenges.
@shamaton
shamaton / first_mail.txt
Last active October 27, 2016 01:51
mail from sourced
Hi xxxxxxxx,
I am a Developer Relations Engineer at source{d}, we are working on improving developer recruitment.
We have analyzed your open source contributions on Github and we think that you could be a good fit for the position as Backend Engineer at Zenly (https://zen.ly/).
Since we are actively helping them search for the right engineer to tackle their specific challenge, I thought I’d reach out.
Zenly is developing a location sharing app which is built on top of a powerful, precise and extremely battery-efficient continuous location technology.
Although they are very discreet, they have already generated several million downloads, and their active user base is growing by 7% each week since more than a year.
They reached a million users twice as fast as Twitter and are on a long-term mission to reach a billion. Their HQ is located in Paris, and they also have offices in SF.
They have recently raised €22M with the first investors of Twitter, Uber and Snapchat. TechCrunch news here: https://t.co/PLV
@shamaton
shamaton / echo_use_check.go
Last active September 16, 2016 01:48
[golang] Echo Use test
package main
import (
"fmt"
"github.com/labstack/echo"
"github.com/labstack/echo/engine/standard"
)
func main() {