Skip to content

Instantly share code, notes, and snippets.

@dooug
dooug / generate_list.php
Last active September 11, 2023 19:59
Generate list of pages in Drupal
<?php
/**
* @file gets "path, title" csv format of entries from node, menu_links, menu_router
*
* run from within drupal project root: drush scr generate_list.php
*/
// Bootstrap Drupal
define('DRUPAL_ROOT', getcwd());
require_once DRUPAL_ROOT . '/includes/bootstrap.inc';
@Bonno
Bonno / mp4-to-wav
Created February 10, 2015 09:24
Convert mp4 to WAV with ffmpeg
ffmpeg -i <infile> -ac 2 -f wav <outfile>