This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From shamaton/golang-centos6:latest | |
MAINTAINER shamaton | |
# golang library | |
RUN go get github.com/garyburd/redigo/redis | |
# copy test code | |
COPY test_redis.go . |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
redis: | |
image: redis:latest | |
restart: always | |
command: redis-server --appendonly yes | |
ports: | |
- '6379:6379' | |
volumes: | |
- /tmp | |
go_redis: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
"github.com/labstack/echo" | |
"github.com/labstack/echo/engine/standard" | |
) | |
func main() { |
NewerOlder