Skip to content

Instantly share code, notes, and snippets.

View daephx's full-sized avatar
💢

Daemon daephx

💢
View GitHub Profile
@daephx
daephx / !FFmpegExamples.md
Last active November 12, 2022 14:36
[FFmpeg Examples] Common FFmpeg Commands #Commands #Examples

FFmpeg Examples

Personal collection of basic examples / scripts.

FFmpeg Documentation
A complete, cross-platform solution to record, convert and stream audio and video.

Table of contents

@daephx
daephx / codeswing.json
Last active November 12, 2022 17:00
[Snake] Snake game as gist #Game
{
"scripts": [],
"styles": []
}
@daephx
daephx / New-Gitignore.ps1
Last active November 12, 2022 19:50 — forked from colorqualia/gitignore.ps1
[New-Gitignore] Generate a new ignore file via 'gitignore.io'. #PowerShell
<#
.SYNOPSIS
Generate a new ignore file via 'gitignore.io'
.LINK
https://www.toptal.com/developers/gitignore
#>
#Requires -Version 3.0
Function New-Gitignore {
@daephx
daephx / Split-Filetypes.ps1
Last active November 12, 2022 19:50
[Split-Filetypes] Create Directories and move files for each files extension. #PowerShell
<#
.SYNOPSIS
Create Directories and move files for each files extension.
#>
param([string]$Directory = $PWD)
function Move-File($x, $foldername) {
If (!(Test-Path $Directory\$foldername)) {
New-Item -ItemType Directory -Path $Directory -Name $foldername -ErrorAction Ignore | Out-Null
@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.
"""