Get in the zone with me for a good 15 minutes, maybe you’ll catch a few eclipse tricks and you’ll learn a little bit about how I think (and make mistakes along the way of fixing something on FrostWire)
Related Posts
NSIS CharAt Macro
Lord knows why the NSIS folks didn’t add a CharAt function to their API. In case you need it to parse a string, here’s a Macro that makes StrCpy work like a CharAt function [bash] ;Get a character inside a string given an index. ;Usage: CharAt String Index Output !macro CharAt InputString Index Output StrCpy […]
How to resize an EBS (xfs formatted) partition
First of all, create a snapshot of your EBS volume. Then out of that snapshot you will be able to create your new volume. However, when you detach the old one from your instance and attach the new one, you will still see the old available space with df look at my /dev/xvdf/ available space […]
How to process thousands of WordPress posts without hitting or raising memory limits.
So you need to write a script that processes all the posts in your wordpress database, you don’t need to use the stupid wordpress loop because you’re not writing web facing code, you might just need to fix some metadata on each one of the posts, but every time you iterate through your posts, no […]