Skip to content

Instantly share code, notes, and snippets.

View mcnamee's full-sized avatar

▛▚▞▜ ▞▚ ▜▛ ▜▛ mcnamee

View GitHub Profile
@mcnamee
mcnamee / stage.php
Created April 28, 2020 03:11
Deploy to Staging
<?php
/** *********************************
* GIT Deploy to Pivotal Staging
*
* 1. Ensure this file exists in the root directory of your website
* on the staging server
* 2. Update the $config variables below
* 3. Browse to this file in your browser to "clone" the repo
* 4. Setup a Webhook to auto-deploy:
* URL: http://nbm:nbm@{{site_domain_name}}/stage.php
@mcnamee
mcnamee / index.html
Created May 14, 2021 06:00
Landing page
<!doctype html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en" prefix="og: http://ogp.me/ns#"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en" prefix="og: http://ogp.me/ns#"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en" prefix="og: http://ogp.me/ns#"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en" prefix="og: http://ogp.me/ns#"> <!--<![endif]-->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Coming Soon</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<!-- <meta http-equiv="refresh" content="30"> -->
@mcnamee
mcnamee / copy.js
Last active July 25, 2022 02:09
Copy & Paste bookmarklets for website that block copy/paste (eg. MS Teams, Defender)
javascript:(function(){
/*
* Highlight text and press the bookmarklet - the text is now in your clipboard
* Installation: Add this javascript to a new browser bookmark in the URL field
*/
let text = "";
const activeEl = document.activeElement;
const activeElTagName = activeEl ? activeEl.tagName.toLowerCase() : null;
/* Extract text from textarea/text input */