Skip to content

Instantly share code, notes, and snippets.

@dhoeric
dhoeric / 0_README.md
Last active October 24, 2025 21:37
Google Calendar - Public Holiday Calendars
@shortjared
shortjared / list.txt
Last active October 22, 2025 13:34
List of AWS Service Principals
a4b.amazonaws.com
access-analyzer.amazonaws.com
account.amazonaws.com
acm-pca.amazonaws.com
acm.amazonaws.com
airflow-env.amazonaws.com
airflow.amazonaws.com
alexa-appkit.amazon.com
alexa-connectedhome.amazon.com
amazonmq.amazonaws.com
@marekmurawski
marekmurawski / laravel-optgroup.php
Last active January 8, 2018 12:32
Laravel macro Form::select() with optgroup based on Collection field
<?php
// You can put this code into /app/routes.php for testing
/*
* Form::selectOpt()
*
* Parameters:
* $collection A I\S\Collection instance
* $name The HTML "name"
* $groupBy Field by which options are grouped
@greenido
greenido / notes-IndexedDB.html
Created September 23, 2012 09:37 — forked from cfjedimaster/gist:2499973
Simple indexedDB example that will work both in Chrome and FF
<!DOCTYPE html>
<head>
<script>
var db;
// until we won't need this prefix mess
var indexedDB = window.indexedDB || window.webkitIndexedDB
|| window.mozIndexedDB || window.msIndexedDB;
var IDBTransaction = window.IDBTransaction ||
window.webkitIDBTransaction;