Skip to content

Instantly share code, notes, and snippets.

View Rademenes16's full-sized avatar
:shipit:
reinventing algorithms

Rademenes16

:shipit:
reinventing algorithms
  • 12:43 (UTC +02:00)
View GitHub Profile
@Rademenes16
Rademenes16 / clear_exe.bat
Created June 19, 2022 17:34
Remove files with .exe extension in current directory
@echo off
Title Delete .exe Files
echo Current Directory: %CD%
echo.
echo Do you want to delete files with .exe extension in current directory [Y/n]?
set /p CHO=
IF %CHO% == y (
del /s /q /f %CD%\*.exe
) ELSE (
IF %CHO% == Y (
@PurpleBooth
PurpleBooth / README-Template.md
Last active May 3, 2024 18:53
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@aras-p
aras-p / preprocessor_fun.h
Last active April 28, 2024 15:25
Things to commit just before leaving your job
// Just before switching jobs:
// Add one of these.
// Preferably into the same commit where you do a large merge.
//
// This started as a tweet with a joke of "C++ pro-tip: #define private public",
// and then it quickly escalated into more and more evil suggestions.
// I've tried to capture interesting suggestions here.
//
// Contributors: @r2d2rigo, @joeldevahl, @msinilo, @_Humus_,
// @YuriyODonnell, @rygorous, @cmuratori, @mike_acton, @grumpygiant,