Skip to content

Instantly share code, notes, and snippets.

View aimfireready's full-sized avatar

Gandalf the Bray aimfireready

  • Aim Fire Ready LLC
  • Bloomington, Indiana
View GitHub Profile
@aimfireready
aimfireready / p.bat
Created January 12, 2023 16:58
Ping local machines without breaking your fingers!
::::::::::::::::::::::::::::::::
::
:: Name : Short Ping
::
:: Usage : 'p x y'
::
:: Output: 'ping 192.168.x.y'
::
:: Created: 2022-11-02
::
@aimfireready
aimfireready / Init Though
Last active March 10, 2026 04:09
Initialize a new Git project and corresponding Github repo
#! /bin/bash
###########################################################
# ************************
# ** **
# ** Init Though **
# ** **
# ************************
#
# Requirements
# - Git installed and configured
@aimfireready
aimfireready / date8601.bat
Created February 14, 2023 17:43
Output current date in standard ISO8601 format
@echo off
echo.
echo Output current date in standard ISO8601 format
echo v1.0 2023-02-14
for /F "tokens=2-4 delims=/ " %%a in ('date /t') do set today=%%c%%a%%b
echo Today = '%today%'
pause
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:: Title: ni.bat
::::::::::::::::::::::
:: Desc.: curl Ninite and run the program installer
:: Usage: ni.bat [program]
:: Source: https://gist.github.com/aimfireready/765ec65812beb9cedad50cfd97abc6ae
::
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
curl -o "%1.exe" https://ninite.com/%1/ninite.exe && call %1.exe
#!/bin/bash
#
# Add new match entry to Espanso base config file
#
# v0.1 2024-01-10 09:52:15 Init though...
# v0.2 2024-01-10 09:52:52 Added time to date header
# (C) 2024 Gandalf Farnam
# License: MIT
####################################################