Skip to content

Instantly share code, notes, and snippets.

@ogrrd
ogrrd / dnsmasq OS X.md
Last active July 3, 2024 08:40
Setup dnsmasq on OS X

Never touch your local /etc/hosts file in OS X again

To setup your computer to work with *.test domains, e.g. project.test, awesome.test and so on, without having to add to your hosts file each time.

Requirements

Install

@acolson
acolson / additional-mime-types
Created July 12, 2014 16:08
Allow WordPress to upload MP4, WebM and OGG video
add_filter( 'mime_types', 'aco_extend_mime_types' );
function aco_extend_mime_types( $existing_mimes ) {
// Add webm, mp4 and OGG to the list of mime types
$existing_mimes['webm'] = 'video/webm';
$existing_mimes['mp4'] = 'video/mp4';
$existing_mimes['ogg'] = 'video/ogg';
// Return an array now including our added mime types