Skip to content

Instantly share code, notes, and snippets.

View yskelg's full-sized avatar
🏠
Working from home

Yunseong Kim yskelg

🏠
Working from home
View GitHub Profile
@jlouis
jlouis / erl_map.c.gcov
Created April 5, 2015 20:23
Coverage of erl_map.c with 1000 tests run.
-: 0:Source:beam/erl_map.c
-: 0:Graph:obj/x86_64-unknown-linux-gnu/gcov/smp/erl_map.gcno
-: 0:Data:obj/x86_64-unknown-linux-gnu/gcov/smp/erl_map.gcda
-: 0:Runs:4
-: 0:Programs:1
-: 1:/*
-: 2: * %CopyrightBegin%
-: 3: *
-: 4: * Copyright Ericsson AB 2014. All Rights Reserved.
-: 5: *
@perdacherMartin
perdacherMartin / jacobi_openmp.c
Created February 18, 2013 16:35
jacobi iteration with openmp
/*****************************************************
* Exercise 4
* File: jacobi.c
*
* description:
*
* Jacobi iteration on a NxN matrix with MAX_ITER iterations
*
* Language: c
*
@theburningmonk
theburningmonk / gist:3093711
Created July 11, 2012 21:30
Erlang exception handling example
-module(exceptions).
-export([sword/1, talk/0, black_knight/1]).
sword(1) -> throw(slice);
sword(2) -> erlang:error(cut_arm);
sword(3) -> exit(cut_leg);
sword(4) -> throw(punch);
sword(5) -> exit(cross_bridge).
talk() -> "blah blah".