Skip to content

Instantly share code, notes, and snippets.

View Kimundi's full-sized avatar

Marvin Löbel Kimundi

  • Dortmund, Germany
View GitHub Profile
@Kimundi
Kimundi / -
Last active December 19, 2017 10:42 — forked from anonymous/-
5da87b4de18456eead23ae3ab16a8d26 ./commoncrawl_10240.both
20db69984813a69e97c5d7fc4de6dcc9 ./commoncrawl_10240.all
6c4bc638e1cd757be7b19cca64a507a6 ./commoncrawl.ascii
7a98cf765251c47bda29924daa3cee78 ./data-web-snippets.tar.gz
5f13acc73540806180f260a1c3a10ebd ./commoncrawl_10240.non_ascii
cac07d752e129473c08021ac5ee21130 ./rlzap_dlcp_female
9164eeb0c8b694e499c43eef904bea56 ./news.gz
2adca0e60af3957c3879aad58c0bfba5 ./commoncrawl_null.ascii
2f04ea4ce678cabdc91974fea6bdb338 ./wiki-annot30.gz
c27275e1837b332043a0f1cf77cb5cfd ./wiki-disamb30.gz
@Kimundi
Kimundi / playground.rs
Created December 10, 2018 14:41 — forked from rust-play/playground.rs
Code shared from the Rust Playground
use std::alloc::{GlobalAlloc, System, Layout};
use std::sync::atomic::{AtomicIsize, Ordering};
struct AllocationTracker {
mem: AtomicIsize
}
impl AllocationTracker {
const fn new() -> Self {
AllocationTracker {