openpgp4fpr:9E1E4A20C369E6DE256069896FABEFAB422FF8AE
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Version": "16.1.0", | |
"Name": "Short.io", | |
"DestinationType": "URLShortener", | |
"RequestMethod": "POST", | |
"RequestURL": "https://api.short.io/links", | |
"Headers": { | |
"Authorization": "YOUR_API_KEY_HERE" | |
}, | |
"Body": "JSON", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@ECHO OFF | |
TITLE GetSoftwareList by Hexandcube | |
ECHO. | |
ECHO GetSoftwareList | |
ECHO This script will generate a file that contains a list of all installed software on the computer. | |
ECHO. | |
CHOICE /C YN /M "[?] Do you want to continue?" | |
IF ERRORLEVEL 2 GOTO :EOF | |
IF ERRORLEVEL 1 GOTO :START |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
cls | |
title Create shortcut in This PC | |
if exist %1 goto setParameterToVariable | |
echo Drop your file/folder you want to create a shortcut for here (or enter the file/folder path). | |
set/p filePath=">" | |
goto setShortcutName | |
:setParameterToVariable | |
set filePath=%1 | |
:setShortcutName |
I hereby claim:
- I am hexandcube on github.
- I am hexandcube (https://keybase.io/hexandcube) on keybase.
- I have a public key ASA_YvjeknSrT8meQyfQiHnfuCYGIhPQ0MYVUoCpICCmPwo
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# === Sort media by year/month - by Hexandcube === | |
# This is a configuration file for Organize v3.x (https://github.com/tfeldmann/organize) | |
# for sorting media files (images and video) by year/month. | |
# Requires Pillow (https://pypi.org/project/pillow/) | |
# For more details about using Organize, check the documentation: https://organize.readthedocs.io/ | |
sources: &sources | |
# File source path (path to the folder containing the media files) | |
- 'D:\Desktop\Import\' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rules: | |
- folders: 'C:\' | |
filters: | |
- extension: | |
- .jpg | |
- .jpeg | |
- .png | |
- .mp4 | |
- .mkv | |
- .avi |
- Put screendebug.scss in the same directory as your Bulma.sass file,
- Import screendebug in your bulma.sass file using `@import "screendebug"
- Add a div with id="screendebug" as a first child, and wrap the rest of the page in a seperate div
<body>
<div id="screendebug"></div>
<div class="pagewrapper"></div>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "https://aka.ms/terminal-profiles-schema", | |
"defaultProfile": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", | |
"copyOnSelect": false, | |
"copyFormatting": false, | |
"profiles": { | |
"defaults": { | |
"colorScheme": "Lab Fox", | |
"fontFace": "Cascadia Code", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function global:prompt { | |
Write-Host -Object "$($env:USERNAME)@$([System.Net.Dns]::GetHostName())" -NoNewline -ForegroundColor Green | |
Write-Host -Object ":" -NoNewline -ForegroundColor White | |
Write-Host -Object "$(Get-Location)" -NoNewline -ForegroundColor DarkRed | |
$IsAdmin = (New-Object Security.Principal.WindowsPrincipal ([Security.Principal.WindowsIdentity]::GetCurrent())).IsInRole([Security.Principal.WindowsBuiltinRole]::Administrator) | |
return $(if ($IsAdmin) { '# ' } else { '$ ' }) | |
} |
NewerOlder