Skip to content

Instantly share code, notes, and snippets.

View delenamalan's full-sized avatar

Delena Malan delenamalan

View GitHub Profile
@delenamalan
delenamalan / Learner-educator ratios and matric pass rates in South Africa's provinces
Last active August 29, 2015 14:21
Learner-educator ratios and matric pass rates in South Africa's provinces
Learner-educator ratios and matric pass rates in South Africa's provinces
@delenamalan
delenamalan / _.md
Last active August 29, 2015 14:22
Stacked Bar Chart Setup
@delenamalan
delenamalan / _.md
Created June 12, 2015 20:07
Tributary inlet
@delenamalan
delenamalan / _.md
Created June 18, 2015 10:49
color scales
@delenamalan
delenamalan / _.md
Last active August 29, 2015 14:24
dragend_mouseover_test
@delenamalan
delenamalan / _.md
Last active August 29, 2015 14:27
favourite_series
@delenamalan
delenamalan / data.csv
Created July 31, 2016 00:50 — forked from d3noob/.block
Simple d3.js tooltips
date close
1-May-12 58.13
30-Apr-12 53.98
27-Apr-12 67.00
26-Apr-12 89.70
25-Apr-12 99.00
24-Apr-12 130.28
23-Apr-12 166.70
20-Apr-12 234.98
19-Apr-12 345.44
@delenamalan
delenamalan / .vimrc
Last active August 14, 2016 19:57
My .vimrc. There's still a lot I want to add and fix.
colorscheme peachpuff
set textwidth=80
set tabstop=2
set expandtab " use spaces for tabs
set softtabstop=2
set shiftwidth=2
set autoindent
syntax on

##I am currently:

###Completing my Bachelor of Science Honours in Computer Science degree at the University of Stellenbosch. I am in the final weeks of my degree and only working on my research project now. My project is called Browser Journey and my supervisor for this project is Jaco Geldenhuys. Browser Journey is a Chrome extension that collects, analyses and displays data about the user’s browser behaviours in an interactivevisualisation.

###Living in the Public Cultures house in the LLL (Listen, Live and Learn) village. We are eight students with a variety of backgrounds and study fields who have been assigned to live together for the year and to investigate the topic of "Public Cultures".

###Going to intern at Praekelt during November and December.

@delenamalan
delenamalan / repeat_command.sh
Created July 8, 2017 21:13
Repeat a bash command from https://stackoverflow.com/a/41191408/3486675 e.g. repeat_command.sh "kubectl get pods --all-namespaces"
#!/bin/bash
while true; do
# COMMAND=$(kubectl get pods --all-namespaces) #Save command result in a var.
COMMAND=$($1) #Save command result in a var.
echo "$COMMAND" #Print command result, including new lines.
sleep 3 #Keep above's output on screen during 3 seconds before clearing it
#Following code clears previously printed lines
LINES=$(echo "$COMMAND" | wc -l) #Calculate number of lines for the output previously printed