Skip to content

Instantly share code, notes, and snippets.

@bohwaz
bohwaz / gitlab-projects-json-to-csv.php
Created February 8, 2017 01:23
Extract Gitlab JSON project list and convert it to CSV
<?php
$projects = [];
$projects[] = [
'Project path',
'Owner',
'Name',
'Description',
'Created',
@bohwaz
bohwaz / nvsprintf.php
Created June 28, 2016 04:39 — forked from onyxraven/nvsprintf.php
Named param vsprintf()
<?php
/**
* Named-Param vsprintf()
*
* positional-params based on key name, much the same as positional in sprintf()
*
* @link http://php.net/manual/en/function.sprintf.php
* @link http://www.php.net/manual/en/function.vsprintf.php
*
* @param string $str format string - replacements are in %KEY$x format
@bohwaz
bohwaz / ngv-download.php
Last active May 16, 2016 01:36
Download large images of art from National Gallery of Victoria (NGV) website
#!/usr/bin/php
<?php
/**
* Download a large size art image from National Gallery of Victoria (NGV) website
* Copyleft (C) 2016 BohwaZ http://bohwaz.net/ (Public domain)
*/
if (empty($argv[1]))
{
@bohwaz
bohwaz / download.sh
Created December 25, 2015 06:53 — forked from mildred/download.sh
Download from archive.org Wayback Machine
#!/bin/bash
url=http://redefininggod.com
webarchive=https://web.archive.org
wget="wget -e robots=off -nv"
tab="$(printf '\t')"
additional_url=url.list
# Construct listing.txt from url.list
# The list of archived pages, including some wildcard url
@bohwaz
bohwaz / maths.php
Created February 4, 2012 22:53
Allow user to compute maths in PHP
<?php
function mathEval($q)
{
$q = preg_replace('/\s+/', '', $q);
$number = '(?:\d+(?:[,.]\d+)?|pi|π)';
$functions = '(?:sinh?|cosh?|tanh?|abs|acosh?|asinh?|atanh?|exp|log10|deg2rad|rad2deg|sqrt|ceil|floor|round)';
$operators = '[+\/*\^%-]';
$regexp = '/^(('.$number.'|'.$functions.'\s*\((?1)+\)|\((?1)+\))(?:'.$operators.'(?2))*)+$/';
@bohwaz
bohwaz / php_sqlite_rank.php
Created November 10, 2011 16:09
Pure PHP rank function for SQLite FTS4 (adapted from SQLite doc)
<?php
/*
Adapted from C function available at http://www.sqlite.org/fts3.html#appendix_a
Use like this:
$db = new SQLite3('database.db');
$db->createFunction('rank', 'sql_rank');
$db->query('CREATE VIRTUAL TABLE products USING fts4 (id INTEGER, title TEXT, description TEXT);');
$db->query('SELECT * FROM products WHERE products MATCH \'Computer\' ORDER BY rank(matchinfo(products), 0, 1.0, 0.5) DESC;');