Tasks un-owned are task that go forgotten

Posted on Sat 11 August 2018 in meta, IT

If you are a tech company, and your people commit code, then you probably have some code review policy. And if you do not, you definitely should: you want to have an extra pair of …

WP CLI custom commands not working

Posted on Tue 19 June 2018 in wordpress, wp-cli

Make sure to add them in active code. Adding a spare php file with the WP-CLI command definition in /wordpress won't work, because that code won't be loaded by WP. Dropping the file into wp-content …

Numpy histogram density does not sum to 1

Posted on Mon 19 March 2018 in python, IT

During a Computational Vision lab, while comparing histograms, I stumbled upon a peculiar behavior. The histograms pairwise kernel matrix - which is just a fancy name for the matrix holding histograms correlations one with another - did …

Does C++ delete operator really free memory?

Posted on Wed 20 September 2017 in IT, programming

Well, I have been wondering about this for quite a while now, and I have tried to run some tests to better understand what's going on under the hood. The standard answer is that after …

WordPress function url_to_postid not working with Anspress

Posted on Mon 23 January 2017 in wordpress, tips

With the Anspress theme/plugin, using the WordPress native function url_to_postid() on a question permalink returns the page ID of the base page. For example,

url_to_postid( "www.website.com/questions/question/this-is-the-question");

would return the …

bbPress - Anonymous Subscriptions

Posted on Mon 15 February 2016 in wordpress, IT

This add-on plugin for bbPress will allow anonymous users to subscribe to topics and get email notifications when a new reply is posted. The notification email includes an unsubscribe link.

bbPress notifications will keep to …