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
svn gotchas: Importing a Folder in one step
Up until this day when my friend Gabe told me how, I didn’t know how to import a folder, without doing this first: svn mkdir svn+ssh://server.com/path/to/repo/myfolder svn import myFolder svn+ssh://server.com/path/to/repo/myfolder If I didn’t do that, If I just imported the local “myFolder”, it would end up adding all the files inside the folder and it […]
[TUTORIAL] HOW TO PAUSE AN AWS ELASTIC BEANSTALK ENVIRONMENT USING THE DASHBOARD
So you have set up a test elastic beanstalk environment because you don’t want to put at risk your production elastic bean. You don’t want to pay for the time you’re not using it, and there’s no freaking “Pause Environment” option. all you can do is “Terminate Environment”? but then to crete the damn environment […]
Fuck the Python Borg, I like Singleton Better
I’ve read in parts of the web (and on the Martinelli’s Python Cookbok) that it’s better to do the Borg pattern over singletons, they say something alongs the lines of: “who cares about identity, care about shared state” Coming from the Java world, I just can’t understand that, why waste memory and cpu to address […]