Skip to content

Instantly share code, notes, and snippets.

@joannakl
joannakl / resources_APS.md
Last active December 12, 2025 17:58
Resources for Algorithmic Problem Solving
@joannakl
joannakl / HFOSS_projects.md
Last active November 11, 2023 15:49
humanitarian open source projects
@joannakl
joannakl / git_resources.md
Created June 20, 2020 20:20
Git resources and tutorials
@joannakl
joannakl / resources_data_structures.md
Last active June 20, 2020 20:13
Reseources for Data Structures (Java)
#include <stdlib.h>
#include <stdio.h>

typedef struct  {
    int val;
    struct node *next;
} node;

node* create_node ( int x ) {
@joannakl
joannakl / run 14 full output
Created November 23, 2019 16:12
run 14 full output
[ 3R, 6R, 4R, 1L, 3L, 4 , 2L, 5R, 3R, 0 , 3 , 6R, 4L, 1 , 3 , 4 , 2 , 5R, 3 , 0 , 3 , 6 , 4R, 1 , 3 , 4R, 2R, 5 , 3L, 0 ]
[ 3R, 6R, 4R, 1L, 3L, 4 , 2L, 5R, 3 , 0 , 3 , 6R, 4R, 1 , 3L, 4 , 2L, 5R, 3 , 0 , 3 , 6 , 4R, 1 , 3 , 4R, 2R, 5 , 3L, 0 ]
[ 3R, 6R, 4R, 1L, 3L, 4 , 2L, 5R, 3 , 0 , 3 , 6 , 4R, 1 , 3R, 4 , 2L, 5R, 3 , 0 , 3 , 6 , 4R, 1 , 3 , 4R, 2R, 5 , 3L, 0 ]
[ 3R, 6R, 4R, 1L, 3L, 4 , 2L, 5R, 3 , 0 , 3 , 6R, 4R, 1 , 3 , 4L, 2R, 5R, 3L, 0 , 3 , 6 , 4R, 1 , 3 , 4R, 2R, 5 , 3L, 0 ]
[ 3R, 6R, 4R, 1L, 3L, 4 , 2L, 5R, 3 , 0 , 3 , 6R, 4R, 1 , 3 , 4L, 2R, 5R, 3R, 0 , 3 , 6L, 4R, 1 , 3 , 4R, 2R, 5 , 3L, 0 ]
[ 3R, 6R, 4R, 1L, 3L, 4 , 2L, 5R, 3 , 0 , 3 , 6 , 4R, 1 , 3 , 4 , 2R, 5 , 3R, 0 , 3 , 6R, 4R, 1 , 3 , 4R, 2R, 5L, 3L, 0 ]
[ 3R, 6 , 4R, 1L, 3R, 4 , 2L, 5R, 3R, 0 , 3 , 6R, 4L, 1 , 3 , 4 , 2 , 5R, 3 , 0 , 3 , 6 , 4R, 1
public class Movie implements Comparable<Movie> {
private String title;
private int year;
private ArrayList<Location> locations;
private String director;
private String writer;
private ArrayList<Actor> actors;
public Movie(String title, int year) {
@joannakl
joannakl / resources_QR.md
Last active August 26, 2019 20:20
Resources for Quantitative Reasoning class (Math and Computing)
@joannakl
joannakl / resources_OSSD.md
Created August 21, 2019 18:39
Resources for OSSD class