Skip to content

Instantly share code, notes, and snippets.

View danemacmillan's full-sized avatar
🎯
Focusing

Dane MacMillan danemacmillan

🎯
Focusing
View GitHub Profile
@danemacmillan
danemacmillan / keybase.md
Created July 19, 2016 18:20
Keybase.io verification

Keybase proof

I hereby claim:

  • I am danemacmillan on github.
  • I am danemacmillan (https://keybase.io/danemacmillan) on keybase.
  • I have a public key whose fingerprint is A9EE 932D 3474 1C36 5CC2 FB53 FD0F 8BFD F63E BEAA

To claim this, I am signing this object:

@danemacmillan
danemacmillan / gist:8428801
Created January 15, 2014 00:41
PHP benchmark performance: `strlen` vs `mb_strlen`
<?php
$iterations = 10000;
$str = 'The speed of calculating the length of this string will be performed.';
function a($s)
{
$l = strlen($s);
}