Skip to content

Instantly share code, notes, and snippets.

@farfromunique
farfromunique / shrug.ahk
Last active February 12, 2018 15:56 — forked from dieseltravis/shrug.ahk
autohotkey script to replace 🤷 with ¯\_(ツ)_/¯ (and a few other common unicode art emoji)
; :shrug: ¯\_(ツ)_/¯ but using unicode character strings instead of literal characters, for use in programs like Skype for Business.
:B0:`:shrug::
if (A_EndChar == ":") {
SendInput, {BS 7}{U+00AF}\_({U+30C4})_/{U+00AF}
}
return
; :whatever: ◔_◔
:B0:`:whatever::
@farfromunique
farfromunique / FileClassReflection.php
Created July 4, 2018 20:35
a messy script to generate project tests.
<?php
declare(strict_types=1);
use Symfony\Component\Finder\SplFileInfo as SfFileInfo;
class FileClassReflection extends ReflectionClass
{
private $fileInfo;
@farfromunique
farfromunique / all_aws_lambda_modules_python.md
Last active August 17, 2021 08:06 — forked from gene1wood/all_aws_lambda_modules_python.md
AWS Lambda function to list all available Python modules for Python 2.7 3.6 and 3.7