Skip to content

Instantly share code, notes, and snippets.

View gianuy's full-sized avatar

Gian Uy gianuy

  • North Carolina
View GitHub Profile
@gianuy
gianuy / keybase.md
Created February 21, 2017 13:40
keybase.md

Keybase proof

I hereby claim:

  • I am gianuy on github.
  • I am gianuy (https://keybase.io/gianuy) on keybase.
  • I have a public key ASDiXIDFu7UqxEPiVZ7lRrwdwDClF8x3W9RqXetlm-Ko6Qo

To claim this, I am signing this object:

@gianuy
gianuy / Dockerfile
Created September 9, 2016 15:26
Eclipse-based Docker and Couchbase Exercises. Sample Hello World to run on a container
FROM openjdk:8
ADD HelloWorld.java .
RUN javac HelloWorld.java
CMD ["java","-cp .", "HelloWorld"]
@gianuy
gianuy / Dockerfile
Created September 4, 2016 16:04
Dockerfile for an ASP.Net Core Application
FROM microsoft/dotnet:latest
COPY . /app
WORKDIR /app
RUN ["dotnet", "restore"]
RUN ["dotnet", "build"]
EXPOSE 5000/tcp
ENV ASPNETCORE_URLS http://*:5000
@gianuy
gianuy / .gitignore
Created September 4, 2016 15:42
gitignore for ASP.Net Core
## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.
# User-specific files
*.suo
*.user
*.userosscache
*.sln.docstates
# User-specific files (MonoDevelop/Xamarin Studio)
@gianuy
gianuy / config.yml
Last active July 15, 2016 14:42
Parse YAML from bash with sed and awk.
development:
adapter: mysql2
encoding: utf8
database: my_database
username: root
password:
apt:
- somepackage
- anotherpackage