congratulations fox “news”, yet another great piece of reporting. :’)
Oh, FOX.
As much as I hate FoxNews and acknowledge their outrageous track record of right wing biases and geographical blunders, I have to call bullshit on this one. No major network is this cartoonishly incoherent. Even if the anchor looks like a Toddlers & Tiaras alum all grown up.
^Yup.
Also, as much as I absolutely detest Fox News, editing that to make a point about their incompetence not only makes you look like an asshole, but it pretty much brings you down to their level. Way to go.
Fox: you won!
Distruggerò la sapienza dei sapienti
e annullerò l’intelligenza degli intelligenti.(La Sacra Bibbia)
In a fresh commit, Rails edge now has the ability to automatically add query plan info to the standard Rails logger:
# Log the query plan for queries taking more than this (works # with SQLite, MySQL, and PostgreSQL) config.active_record.auto_explain_threshold_in_seconds = 0.5… which will yield something like:
+----+-------------+-------+-------+---------------+---------+---------+-------+------+-------------+ | id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra | +----+-------------+-------+-------+---------------+---------+---------+-------+------+-------------+ | 1 | SIMPLE | users | const | PRIMARY | PRIMARY | 4 | const | 1 | | | 1 | SIMPLE | posts | ALL | NULL | NULL | NULL | NULL | 1 | Using where | +----+-------------+-------+-------+---------------+---------+---------+-------+------+-------------+ 2 rows in set (0.00 sec)Hot.