Skip to content

Instantly share code, notes, and snippets.

View altras's full-sized avatar
🎯
Focusing

Vitaliy Filipov altras

🎯
Focusing
View GitHub Profile
<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">
@altras
altras / zshrc
Created November 30, 2013 17:13
My zshrc config :)
# 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
@altras
altras / gist:744e94d8f1cc9666f9b3
Created October 22, 2014 09:58
Egg programming language :D
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
@altras
altras / ggplot-punchcard.R
Created February 14, 2016 22:55
Create a github style punchcard with a 1 line csv of commits with git log --pretty=format:"%ci"
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("понеделник", "вторник", "сряда", "четвъртък", "петък", "събота", "неделя"))
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
-------------------------
@altras
altras / .dev.env
Last active June 11, 2018 15:06
Ruler microservices
# 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