Skip to content

Instantly share code, notes, and snippets.

View heimdallrj's full-sized avatar

Indika heimdallrj

  • Berlin
  • 07:00 (UTC -12:00)
View GitHub Profile
@heimdallrj
heimdallrj / business-models.md
Created October 7, 2015 12:13 — forked from ndarville/business-models.md
Business models based on the compiled list at http://news.ycombinator.com/item?id=4924647. I find the link very hard to browse, so I made a simple version in Markdown instead.

Business Models

Advertising

Models Examples
Display ads Yahoo!
Search ads Google
@heimdallrj
heimdallrj / agile-scrum.md
Created February 8, 2017 06:54
Agile / Scrum

[WIP]

Agile / Scrum

Agile is a project management discipline for IT/Software industry. Agile software development process is based on an incremental and iterative approach.

Scrum is a subset of Agile. It is a lightweight process framework for agile development.

A Scrum team is cross-functional, maintaining a flat team structure instead of hierarchical one. There are no project managesrs or team leaders in the traditiaonal sense. Ideal team members are 5-9 people.

var fileUrl = "http://twitter.github.com/bootstrap/assets/bootstrap.zip";
var output = "bootstrap.zip";
request({url: fileUrl, encoding: null}, function(err, resp, body) {
if(err) throw err;
fs.writeFile(output, body, function(err) {
console.log("file written!");
});
});
git branch -m old-branch-name new-branch-name
git push origin :old-branch-name
git push --set-upstream origin new-branch-name
@heimdallrj
heimdallrj / unix-mac-alias.sh
Created February 20, 2017 04:41
Set of UNIX-alias for mac users
# Put these on `.bash_profile`
# GitHub
alias git l='git log --pretty=oneline'
.btn {}
.btn-default {}
.btn-primary {}
.btn-success {}
/* block */
.container {}
.alerts {}
/* element */
.alerts__error {}
.notifications__warnning {}
/* modifier */
.alerts--show {}
css/
vendor/
xyz/
xyz.min.css
sass/
header.sass
theme.sass
sidebar.sass
final.css
/**
file: theme.css
description: Common theme styles
date-created: February 28, 2017
date-modified: March 01, 2017
authors:
- _thinkholic
- Ind
includes:
- Header
/** -------------------------
=Header
-------------------------- */