Skip to content

Instantly share code, notes, and snippets.

View frostbitten's full-sized avatar

Matthew Seremet frostbitten

View GitHub Profile
@frostbitten
frostbitten / tezos tools.md
Last active July 25, 2022 19:18
tezos tools links etc
Use this information at your own risk. I may not have 
tried everything, or seen the latest updates to the 
sites/projects listed. No endorsements unless specified.

💰 = large section of features paywalled
🤔 = author has not tried this site/service

Bulk / Batch Tools

@frostbitten
frostbitten / ps-touch-toggle.ahk
Created July 3, 2022 07:53
autohotkey script to toggle touch screen with Win+P (laptop hotkey for projector)
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
#p:: ;Windows + P (projector button)
Run cmd /c start /min "" powershell -WindowStyle Hidden -ExecutionPolicy Bypass -File .\ps-touch-toggle.ps1
return
@frostbitten
frostbitten / Contter Tezos NFT Platform.md
Last active May 9, 2022 04:41
Contter Tezos NFT Platform, consolidated info
@frostbitten
frostbitten / 8bidou info, consolidated.md
Last active May 4, 2022 18:51
consolidated info about the 8bidou smart contracts
@frostbitten
frostbitten / public domain media.md
Created February 27, 2022 17:12
Links to websites that serve 100% royalty-free, worry-free, public domain media. Great for commercial use!
@frostbitten
frostbitten / bridge.php
Last active October 4, 2016 02:10
Bridge Design Pattern Test
<!doctype html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.7/css/materialize.min.css">
<title>Device Bridge</title>
<body class="container">
<h1>Bridge Design Pattern</h1>
<p><i>"decouple an abstraction from its implementation so that the two can vary independently"</i> (GoF 151)
@frostbitten
frostbitten / vimeo-muted.js
Created September 22, 2016 20:01
mute vimeo videos with angular
// derived from http://stackoverflow.com/a/38815215/1713528
yourAppVar.directive('vimeoMuted', function () {
return {
restrict: 'A',
scope: {
},
link: function (scope, elem, attr) {
//Select the #embeddedVideo element
@frostbitten
frostbitten / Readme.md
Last active August 28, 2016 09:23
coolors.co convert to adobe color (kuler)

Convert Coolors.co palette to Adobe Color (Kuler) link

convert-coolors-kuler-banner.png

Example usage

Utilize the coolors2kuler() function to convert a coolors palette link to a kuler link :

coolors2kuler("https://coolors.co/2f1847-624763-c62e65-f9b3d1-d63af9")
  => "https://color.adobe.com/create/color-wheel/?rule=Custom&mode=rgb&rgbvalues=0.1843137254901961,0.09411764705882353,0.2784313725490196,0.3843137254901961,0.2784313725490196,0.38823529411764707,0.7764705882352941
$app->get('/css/fonts/fontawesome-(:type)?', function ($type) use ($app) {
$v = $app->request->get()['v'];
$app->redirect('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/'.$v.'/fonts/fontawesome-'.$type, 301);
});