Skip to content

Instantly share code, notes, and snippets.

View sbb3's full-sized avatar
🎯
Focusing

Anas Douib sbb3

🎯
Focusing
View GitHub Profile
@sbb3
sbb3 / setup.md
Created April 3, 2022 01:08 — forked from ibqn/setup.md
Setup VSCode with Live Server and a Docker container

Setup VSCode with Live Server and a Docker container

In this I will shortly describe how to setup

I used a docker-compose.yml file although I only created one container with no other dependencies. This works with a regular Dockerfile as well.

@sbb3
sbb3 / leacks_cheker_ex.c
Last active December 20, 2021 20:34 — forked from drrost/leacks_cheker_ex.c
Extended version of memory leaks checker. Shows the place where memory was allocated.
//
// Created by Rostyslav Druzhchenko on 05.09.2020.
//
// for the error 'RTLD_NEXT' undeclared or undefined
#define _GNU_SOURCE
#include <stdio.h>
#include <dlfcn.h>
#include <execinfo.h>
#include <string.h>
#include <stdlib.h>