Skip to content

Instantly share code, notes, and snippets.

View REp007's full-sized avatar
:shipit:
;D

EL-Amrani Youssef REp007

:shipit:
;D
View GitHub Profile
@steeltroops-ai
steeltroops-ai / create_obsidian_folder_structure.bat
Last active October 21, 2024 07:20
This script creates a comprehensive folder structure in your Obsidian vault to help organize personal profiles, vision and goals, education, professional journey, creative expression, interests, relationships, health, digital presence, personal documentation, ideas, and future planning.
@echo off
setlocal enabledelayedexpansion
:: Automatically find the Obsidian vault path in the Documents directory
set "OBSIDIAN_DIR="
for /d %%D in ("%USERPROFILE%\Documents\*") do (
if exist "%%D\*.md" (
set "OBSIDIAN_DIR=%%D"
goto :found
)
@Vij4yk
Vij4yk / react_samples_list.md
Created July 26, 2018 11:18 — forked from jpalala/react_samples_list.md
React Samples List
@avataru
avataru / EloquentCheatSheet.md
Last active April 18, 2025 21:40
Eloquent relationships cheat sheet

FWIW: I (@rondy) am not the creator of the content shared here, which is an excerpt from Edmond Lau's book. I simply copied and pasted it from another location and saved it as a personal note, before it gained popularity on news.ycombinator.com. Unfortunately, I cannot recall the exact origin of the original source, nor was I able to find the author's name, so I am can't provide the appropriate credits.


Effective Engineer - Notes

What's an Effective Engineer?

@Neamar
Neamar / entretien.md
Created June 1, 2011 16:20
Questions pour des candidats à un entretien d'embauche

Questions...

Ces questions permettent de vous situer vis à vis de la programmation et de l'informatique en général. Il est normal de ne pas tout connaître ;)

Écriture et lecture de code

Que fait la requête SQL suivante :

SELECT Marque, AVG(Prix)
FROM Produits
GROUP BY Marque