Skip to content

Instantly share code, notes, and snippets.

View Committing's full-sized avatar
😴
Snoozing.com

Jack Committing

😴
Snoozing.com
View GitHub Profile
<!DOCTYPE html>
<html>
<head>
<title>Richard's Form</title>
<link rel="stylesheet" href="format.css" />
</head>
<body>
<h1>Please enter some details of your issue below</h1>
@Committing
Committing / minify-error.js
Created August 17, 2017 08:32
JS File before minify
(function($){
var $et_window = $(window);
window.et_load_event_fired = false;
window.et_is_transparent_nav = $( 'body' ).hasClass( 'et_transparent_nav' );
window.et_is_vertical_nav = $( 'body' ).hasClass( 'et_vertical_nav' );
window.et_is_fixed_nav = $( 'body' ).hasClass( 'et_fixed_nav' );
jQuery.fn.reverse = [].reverse;
<?php
class Language {
public $language = '';
public $phrases = array(
'UK' => array(
'hello' => 'Ello gov\'na ',
'goodbye' => 'Good day!'
@Committing
Committing / output.js
Created October 10, 2016 16:31
Minify full output
(function(factory){"use strict";if(typeof define==="function"&&define.amd){define(["jquery"],factory)}else{factory(jQuery)}})(function($){"use strict";var instances=[],matchers=[],defaultOptions={precision:86400000,elapse:!1,defer:!1};matchers.push(/^[.source);matchers.push(/([0-9]{1,2}\/){2}[0-9]{4}( [0-9]{1,2}(:[0-9]{2}){2})?/.source);matchers.push(/[0-9]{4}([\/\-][0-9]{1,2}){2}( [0-9]{1,2}(:[0-9]{2}){2})?/.source);matchers=new RegExp(matchers.join("|"));function parseDateString(dateString){if(dateString instanceof Date){return dateString}
if(String(dateString).match(matchers)){if(String(dateString).match(/^[0-9]*$/)){dateString=Number(dateString)}
if(String(dateString).match(/\-/)){dateString=String(dateString).replace(/\-/g,"/")}
return new Date(dateString)}else{throw new Error("Couldnt cast `"+dateString+"` to a date object.")}}
var DIRECTIVE_KEY_MAP={Y:"years",m:"months",k:"monthsToYear",n:"daysToMonth",d:"daysToWeek",w:"weeks",W:"weeksToMonth",H:"hours",M:"minutes",S:"seconds",D:"totalDays",I:"totalHou
@Committing
Committing / example_js.js
Created October 10, 2016 16:28
Example JS that fails to Minify
/*!
* The Final Countdown for jQuery v2.2.0 (http://hilios.github.io/jQuery.countdown/)
* Copyright (c) 2016 Edson Hilios
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
* this software and associated documentation files (the "Software"), to deal in
* the Software without restriction, including without limitation the rights to
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
* the Software, and to permit persons to whom the Software is furnished to do so,
* subject to the following conditions:
@Committing
Committing / encoding.sql
Created October 10, 2016 09:17
Updating encoding on table if multibyte encoding
alter table <some_table> convert to character set utf8 collate utf8_unicode_ci;
@Committing
Committing / user.json
Last active August 2, 2022 11:54
My Sublime User Settings
{
"auto_close_tags": false,
"auto_complete": false,
"disable_completions": true,
"scroll_past_end": true,
"tab_completion": false,
"word_separators": "./\\()\"'-:,.;<>~!@%^&*|+=[]{}`~?",
"tab_size": 4,
"translate_tabs_to_spaces": true
"update_check": false,
@Committing
Committing / petition.php
Last active June 25, 2016 19:08
Order parliament.uk votes by country
<?php
$res = file_get_contents('https://petition.parliament.uk/petitions/131215.json');
$select = json_decode($res);
$output = array();
$count = 0;
@Committing
Committing / auto-refresher.js
Last active January 24, 2016 22:06
CSGO Lounge Auto-Refresher
$(function() {
if (window.location.pathname == '/mytrades') {
function log_message(message, color) {
var sm = $('#submenu');
sm.prepend('<strong style="border-top: 1px solid white;width:188px;display:inline-block;padding:8px 0 8px 10px;color:white;background-color: ' + color + ';">' + message + '</strong><br />');
console.log(message);
$('title').html(message);
@Committing
Committing / Compare Regex
Last active January 6, 2016 13:18
Test file to compare regex strings against different data.
<?php
$regex = '/^(([^<>()[\]\\.,;:\s@"]+(\.[^<>()[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/';