This file contains 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
<div class="logo_container"> | |
<div class="circle1"> | |
<img src="http://game-craft.com/blog/wp-content/uploads/2013/03/circle1.png" | |
/> | |
</div> | |
<div class="circle2"> | |
<img src="http://game-craft.com/blog/wp-content/uploads/2013/03/circle2.png" | |
/> | |
</div> | |
<div class="circle3"> |
This file contains 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
# Path to your oh-my-zsh configuration. | |
ZSH=$HOME/.oh-my-zsh | |
# Set name of the theme to load. | |
# Look in ~/.oh-my-zsh/themes/ | |
# Optionally, if you set this to "random", it'll load a random theme each | |
# time that oh-my-zsh is loaded. | |
ZSH_THEME="wedisagree" | |
# Example aliases |
This file contains 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
function parseExpression(program) { | |
program = skipSpace(program); | |
var match, expr; | |
if (match = /^"([^"]*)"/.exec(program)) | |
expr = {type: "value", value: match[1]}; | |
else if (match = /^\d+\b/.exec(program)) | |
expr = {type: "value", value: Number(match[0])}; | |
else if (match = /^[^\s(),"]+/.exec(program)) | |
expr = {type: "word", name: match[0]}; | |
else |
This file contains 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
library(lubridate) | |
library(ggplot2) | |
dates <- read.csv("2015-commits.csv", header = FALSE, stringsAsFactors = FALSE) | |
dates_parsed <- parse_date_time(dates, "%y-%m-%d %h:%M:%S %z") | |
cmtHours <- factor(hour(dates_parsed)) | |
wkday <- factor(weekdays(dates_parsed), levels=c("понеделник", "вторник", "сряда", "четвъртък", "петък", "събота", "неделя")) |
This file contains 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
Skills: | |
------- | |
- Front-end development: javascript (backbone, angular 1/2, react, riot, organic-oval, webgl ...), HTML, CSS | |
- Product strategy, Entrepreneurship | |
- Growth Hacking, Marketing, Business development, Sales | |
- Game Design, Gamification | |
------------------------- |
This file contains 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
# Docker specific configs | |
# use only letters and numbers for the project name | |
COMPOSE_PROJECT_NAME=rulerdev | |
RULER_DOMAIN_NAME=localhost | |
# Global configs | |
DEVELOPMENT=1 | |
JWT_SECRET=YCZseT-TlZemHz-GQCBZY_jNBmoKVBtYT-M34KniXyaaAEyvZu3sZ_mFjICiXoAJ |