People lose that sense of anything is possible when they grow up.– Tony Hsieh
Lakers beat the Spurs in Game 5 of the Western Conference Semifinals with Derek Fisher making a shot with 0.4 seconds left. One of the greatest moments in this Lakers fan’s life.
Don’t cry because it’s over. Smile because it happened.– Dr. Seuss
find . -type f | wc -l
Age 50-70 is exactly what Slicksta’s aunties look like!
If you’re like Slicksta then your WordPress installation might have generated tables with the latin_swedish_ci collation. This is the default setting for many web hosts that offer click-to-install MYSQL databases.
So what if you want to change your default collation to something like utf8_general_ci? Slicksta needed to do this because special characters were showing up all jacked up looking in posts.
The WordPress site offers this helpful tutorial. The instructions are pretty scary for a non-tech person however. As an alternative, here are the steps Slicksta took to successfully convert:
alter table wp_posts change post_content post_content LONGBLOB; alter table wp_posts change post_content post_content LONGTEXT CHARACTER SET utf8;
SELECT t.id, t.value,
@rownum := @rownum + 1 AS rank
FROM TABLE t, (SELECT @rownum := 0) r