Skip to content

Instantly share code, notes, and snippets.

View daephx's full-sized avatar
💢

Daemon daephx

💢
View GitHub Profile
@daephx
daephx / codeswing.json
Last active November 12, 2022 17:00
[Snake] Snake game as gist #Game
{
"scripts": [],
"styles": []
}
@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 / Git Commands.md
Last active November 12, 2022 14:09
[Git Commands] Common commands for managing git version control #Git #Examples
@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.
@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 / 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 / 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 / Github-Markdown.md
Last active November 12, 2022 14:03
[Github Markdown] Examples of alignment using github flavored markdown #Examples #HTML
@daephx
daephx / Format-Relative.ps1
Last active November 12, 2022 19:50
[Powershell Examples] #PowerShell #Examples
<#
.SYNOPSIS
Diffrent methods for displaying relative path
#>
# Existing Path
$PWD | Resolve-Path -Relative
# Replace String
$Path -replace [regex]::Escape((Get-Location).Path), '.'
@daephx
daephx / clone-gists.py
Last active November 23, 2023 10:36 — forked from SpotlightKid/clone-gists.py
Clone all gists of GitHub username given on the command line.
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Clone all gists of GitHub user with given username.
Clones all gist repos into the current directory, using the gist id as the
directory name. If the directory already exists as a git repo, try to perform a
'git pull' in it.
"""