Skip to content

Instantly share code, notes, and snippets.

View daephx's full-sized avatar
💢

Daemon daephx

💢
View GitHub Profile
@daephx
daephx / ANSI.md
Created December 29, 2021 11:35 — forked from fnky/ANSI.md
ANSI Escape Codes

ANSI Escape Sequences

Standard escape codes are prefixed with Escape:

  • Ctrl-Key: ^[
  • Octal: \033
  • Unicode: \u001b
  • Hexadecimal: \x1B
  • Decimal: 27
@daephx
daephx / Github-Markdown.md
Last active November 12, 2022 14:03
[Github Markdown] Examples of alignment using github flavored markdown #Examples #HTML
@daephx
daephx / LICENSE.md
Last active November 12, 2022 14:05
[Gist License] This is the default license that applies to all public gists under https://gist.github.com/daephx

The MIT License (MIT)

Copyright (c) 2021 daephx

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFT

@daephx
daephx / Git Commands.md
Last active November 12, 2022 14:09
[Git Commands] Common commands for managing git version control #Git #Examples
@daephx
daephx / remove_empty_folder.py
Last active November 12, 2022 14:12
[Remove Empty Folder] Recursively delete empty directories #Python #Scripts
"""
This script will recursively delete empty directories.
Script will default to the current directory,
Handled input with care,
A successful operation CANNOT be undone!
"""
import argparse
@daephx
daephx / !VBScriptExamples.md
Last active November 12, 2022 14:13
[VBScript Examples] #Examples
@daephx
daephx / Backup-RepoList.ps1
Last active November 12, 2022 14:15
Generate a list of clone commands for repositories located in some directory.
# Script located in '.vscode\'
# Testing repos are in 'Github\"
$Git = Get-Command git.exe
$Path = "$PSScriptRoot\..\Github\"
$Backup = "$PSScriptRoot\GitList.txt"
$Repos = @()
Get-ChildItem $Path -Directory | ForEach-Object {
if (Test-Path "$($_)\.git") {
@daephx
daephx / shift-select.zsh
Last active November 12, 2022 14:15 — forked from jamietre/.zshrc-wsl-windows-terminal
zsh config for windows-like inline editing using Windows Terminal + wsl
# add this to your .zshrc
r-delregion() {
if ((REGION_ACTIVE)) then
zle kill-region
else
local widget_name=$1
shift
zle $widget_name -- $@
fi
@daephx
daephx / CIP-GeneratorsPy.ipynb
Last active November 12, 2022 14:16
[Concepts in Programming] #Python #Jupyter #Learning
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@daephx
daephx / Python - Dependency Iversion.ipynb
Last active November 12, 2022 14:18
Python - Dependency Iversion #Jupyter #Python
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.