Skip to content

Instantly share code, notes, and snippets.

View sbb3's full-sized avatar
🎯
Focusing

Anas Douib sbb3

🎯
Focusing
View GitHub Profile
@ibqn
ibqn / setup.md
Created January 31, 2020 19:47
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.

@mferoc
mferoc / .editorconfig
Last active June 21, 2024 15:14
Config vscode environment for 42 school
root = true
[*]
indent_style = tab
indent_size = 4
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
@drrost
drrost / leacks_cheker_ex.c
Last active April 4, 2024 17:08
Extended version of memory leaks checker. Shows the place where memory was allocated.
//
// Created by Rostyslav Druzhchenko on 05.09.2020.
//
#include <stdio.h>
#include <dlfcn.h>
#include <execinfo.h>
#include <string.h>
#include <stdlib.h>
@Daniyal-Javani
Daniyal-Javani / docker-compose.yml
Last active July 3, 2024 16:34
Laravel sail with phpMyAdmin
version: '3'
services:
laravel.test:
build:
context: ./vendor/laravel/sail/runtimes/8.0
dockerfile: Dockerfile
args:
WWWGROUP: '${WWWGROUP}'
image: sail-8.0/app
environment: