Hardcode
Making it happen
Making it happen
Mar 18th
I know why Google Chrome has one process per tab – because their damned V8 Javascript Engine has no multihtreading! There’s no explanation for not having multithreading with different Javascript contexts. I guess I’ll also have to resort to multi-processing instead of multithreading, so cool…
Mar 9th
Do you sometimes need the old right click menu on a taskbar icon in Windows 7 ? The one with Restore, Move, Minimize, etc ? Here’s what happens when you right click a taskbar item:
Should you miss the old menu, press shift+right-click:
If you have multiple windows open:
Feb 24th
I’ve recently got over the second Select variant, so now I can do the following to find the top 3 elements:
double[] output = new double[] { 5,6,7,8,9 };
var indices = output.Select( (v,i) => new { v = v, i = i}).OrderByDescending( p => p.v).Take(3).Select( p => p.i);
Nov 3rd
Sep 16th
And btw check our latest prank in the IKEA store: http://culturavura.fourhooks.com/cat54435/art6451142070/. Pictures from http://cocalari.com and http://pitzipoanca.org.
Sep 16th
If you’ve participated be sure to check out the solutions written in some exotic programming languages like BrainFuck, SQL, Fortran and even PostScript …
Jul 22nd
In Linq to SQL the following works by issuing a second query, in Linq to Entities it does not (and this sucks):
Jul 8th
… for http://oracolulmeu.ro/ for the last Monday: 1K visits and 42K pageviews (same day).