Skip to content

Instantly share code, notes, and snippets.

View MTco's full-sized avatar
😞

Mathew Tyler MTco

😞
View GitHub Profile
@MTco
MTco / User script templates for Tampermonkey
Created February 17, 2017 06:03 — forked from spiralx/User script templates for Tampermonkey
Tampermonkey user script templates
For
* ES5
* ES6
* CoffeeScript
@MTco
MTco / md5.js
Created October 3, 2016 16:45 — forked from PixnBits/md5.js
invalid reference fix
/*
* http://www.myersdaily.org/joseph/javascript/md5-text.html
*/
(function (global) {
var md5cycle = function (x, k) {
var a = x[0],
b = x[1],
c = x[2],
d = x[3];
@MTco
MTco / gist:bc8f8ae292236c9a0b9d10bfa33ad5f5
Created September 6, 2016 16:36 — forked from anonymous/gist:2912227
php slugify string
<?php
function slugify($str) {
$search = array('Ș', 'Ț', 'ş', 'ţ', 'Ş', 'Ţ', 'ș', 'ț', 'î', 'â', 'ă', 'Î', 'Â', 'Ă', 'ë', 'Ë');
$replace = array('s', 't', 's', 't', 's', 't', 's', 't', 'i', 'a', 'a', 'i', 'a', 'a', 'e', 'E');
$str = str_ireplace($search, $replace, strtolower(trim($str)));
$str = preg_replace('/[^\w\d\-\ ]/', '', $str);
$str = str_replace(' ', '-', $str);
return preg_replace('/\-{2,}', '-', $str);
}
@MTco
MTco / keybase.md
Last active February 6, 2017 20:27
keybase.io

Keybase proof

I hereby claim:

  • I am mtco on github.
  • I am bleh (https://keybase.io/bleh) on keybase.
  • I have a public key ASAk1-VrvHIL6Hb5laXnEf8HEiSkaJFIHuAcjWTcaaJJ0Ao

To claim this, I am signing this object:

@MTco
MTco / stream_get_line.md
Created July 26, 2016 17:19 — forked from joseluisq/stream_get_line.md
Testing about PHP `stream_get_line` and `fgets` for large files

Testing about PHP stream_get_line and fgets for large files

From http://ie2.php.net/manual/en/function.fgets.php#113113

Regarding Leigh Purdie's comment (from 4 years ago) about stream_get_line being better for large files, I decided to test this in case it was optimized since then and I found out that Leigh's comment is just completely incorrect fgets actually has a small amount of better performance, but the test Leigh did was not set up to produce good results.

The suggested test was:

@MTco
MTco / The Dark Knight subtitles.md
Created April 19, 2016 18:31
The Dark Knight subtitles

The Dark Knight subtitles:

1 00:01:45,089 --> 00:01:47,924 Three of a kind, let's do this. that's it? three guys?

2 00:01:48,092 --> 00:01:51,426 Two guys on the roof. every guy gets a share. five shares is plenty.

Pomodoro Clock

The pomodoro clock is a time management tecnique that uses a timer to separate your work time in smaller intervals with pauses in between to boost your mental agility. This pomodoro has a sound effect on so you know when your work/relax time is over!

A Pen by Francesco Agnoletto on CodePen.

License.

ScreenShot

@MTco
MTco / basic_security.bash
Created April 2, 2016 20:50
Basic security with iptables (IPv4 only)
#!/bin/bash
FW="/sbin/iptables"
SSH_PORTS="22"
WEB_PORTS="80 443"
DNS_NAMESERVERS="8.8.8.8 8.8.4.4"
NTP_NAMESERVERS=""
PKG_NAMESERVERS="ftp.debian.org security.debian.org"
@MTco
MTco / install_ffmpeg_ubuntu.sh
Created April 2, 2016 19:57 — forked from brandongalbraith/install_ffmpeg_ubuntu.sh
Install latest ffmpeg on ubuntu 12.04 or 14.04
#!/bin/bash
# Bash script to install latest version of ffmpeg and its dependencies on Ubuntu 12.04 or 14.04
# Inspired from https://gist.github.com/faleev/3435377
# Remove any existing packages:
sudo apt-get -y remove ffmpeg x264 libav-tools libvpx-dev libx264-dev
# Get the dependencies (Ubuntu Server or headless users):
sudo apt-get update
@MTco
MTco / netflix-genre-crawl.py
Created March 27, 2016 22:18 — forked from blech/netflix-genre-crawl.py
Fetch genre names from Netflix
#!/usr/bin/python
# TODO make range command line arguments
import sys, codecs
sys.stdout = codecs.getwriter('utf-8')(sys.stdout) # if your terminal can't do utf-8, well...
import time
import urllib2
import BeautifulSoup