Skip to content

Instantly share code, notes, and snippets.

View RichardTMiles's full-sized avatar
Kick it to Richard@Miles.Systems

Richard T. Miles RichardTMiles

Kick it to Richard@Miles.Systems
View GitHub Profile
@RichardTMiles
RichardTMiles / gist:de1b7b9705257895fdf75ca596925e22
Created September 28, 2021 15:50 — forked from pitch-gist/gist:2999707
HTML: Simple Maintenance Page
<!doctype html>
<title>Site Maintenance</title>
<style>
body { text-align: center; padding: 150px; }
h1 { font-size: 50px; }
body { font: 20px Helvetica, sans-serif; color: #333; }
article { display: block; text-align: left; width: 650px; margin: 0 auto; }
a { color: #dc8100; text-decoration: none; }
a:hover { color: #333; text-decoration: none; }
</style>
@RichardTMiles
RichardTMiles / background.js
Created October 14, 2020 16:44 — forked from danharper/background.js
Bare minimum Chrome extension to inject a JS file into the given page when you click on the browser action icon. The script then inserts a new div into the DOM.
// this is the background code...
// listen for our browerAction to be clicked
chrome.browserAction.onClicked.addListener(function (tab) {
// for the current tab, inject the "inject.js" file & execute it
chrome.tabs.executeScript(tab.ib, {
file: 'inject.js'
});
});
<?php
/**
* Created by IntelliJ IDEA.
* User: Richard Miles
* Date: 6/27/2018
* Time: 4:05 PM
*
* A 6-Deck blackjack card counting game
*
* 2-6 is +1
@RichardTMiles
RichardTMiles / HopHashTable.cpp
Last active February 4, 2018 00:50
Compile with [ g++ -std=c++0x main.cpp ]. Run with [ ./a.out ], 110 lines.
#include <iostream>
#include <bitset>
using namespace std;
const int TABLE_SIZE = 17; // You can change consts with
const int MAX_DIST = 4; // *((int*)(&a)) = 6
unsigned int startingPlace = 1; // a binary representation of the hop
struct item {
int *input;
@RichardTMiles
RichardTMiles / Dynamic_Javascript_Inclusion.html
Last active January 18, 2018 08:50
Dynamic Javascript Inclusion using LoadJS and PJAX. Loading javascript files on call time when refreshing with Ajax.
<html> // This was chopped from https://carbonphp.com , a php framework which incorporates PJAX and and HTML5 Sockets
<head>
<script>
/*! loadJS: load a JS file asynchronously. [c]2014 @scottjehl, Filament Group, Inc. (Based on http://goo.gl/REQGQ by Paul Irish). Licensed MIT */
(function (w) {
let loadJS;
loadJS = function (src, cb) {
"use strict";
let ref = w.document.getElementsByTagName("script")[0];
let script = w.document.createElement("script");