Skip to content

Instantly share code, notes, and snippets.

View fetttobse's full-sized avatar
🤪
Trying to get back to code...

Fetttobse fetttobse

🤪
Trying to get back to code...
View GitHub Profile
@fetttobse
fetttobse / blackboxTemplate.R
Created June 28, 2017 06:31
blackboxTemplate
library("RCurl");
library("rgl");
checkedPositions = matrix(ncol=3);
colnames(checkedPositions) = c("x","y","z");
currentMinimum = NULL;
open3d();
main = function(){
startX=0.0;
@fetttobse
fetttobse / how_to_git.md
Created July 1, 2017 14:21
How to git in agile projects

How to Git

A Git workflow for agile development.

Step 1: Pull from master

First pull from master, to have the latest version of the repo: git pull origin master

Step 2: Checkout a feature branch

Checkout a feature branch, name it with the issue id of the story you are working on and a short description. For example if you are working on #42: User can upload pictures, do something like

@fetttobse
fetttobse / addCountries.js
Created July 3, 2017 16:23
JavaScript die Hurensohn
import Connection from './db.js';
let lsz = 250;
let name = Array([lsz]);
let alpha2 = Array([lsz]);
//Arrayfelder befüllen
export const addCountries = function () {