C++ On Copy-Paste code with intern...

by strager, June 13, 2010 00:04

Okay, you win. ;P Althoug...

8f3486a6fd9309188a9560d432bf046d Talk
bool compatibleNICodes(const Rule& rule, const std::vector<std::string> &nicodes) {
        typedef std::string (Rule::*const RuleFunction)() const;
        typedef RuleFunction RulePair[2];
...

C++ On Copy-Paste code with intern...

by strager, June 12, 2010 21:27 Star_fullStar_fullStar_fullStar_full

Here's an alternative refac...

8f3486a6fd9309188a9560d432bf046d Talk
<?php
function shorturl($url) {
    $midPart = '[ ... ]';
...

PHP On Short URL Function with PHP

by strager, June 12, 2010 21:00

If a given string is 45 cha...

8f3486a6fd9309188a9560d432bf046d Talk
var element = document.createElement('div');
var test = '<em>Risk &amp;<br />Compilance<br />Projects</em>';
element.innerHTML = test;
...

JavaScript On Regex: Remove all HTML tags...

by strager, June 12, 2010 20:43

Regular expressions are bad...

8f3486a6fd9309188a9560d432bf046d Talk