Reviving the Blog

Apart from not being able to find a reason to post outside of Facebook, 1 I normally reserve the really lengthy posts for the blog, but short FB posts seem to get more interaction, so I ended up spending more time there the plugins that were integral to the blog functionality were sorely outdated and no longer maintained/updated – which opened the blog up to code injection and SPAM.

Instead of cleaning up the code, I decided to just take it down and start from scratch with new (hopefully more secure) plugins, and a less complex layout. 2 Another reason why I couldn’t just “update” the original code to match the newer requirements Read More

Notes

Notes
1 I normally reserve the really lengthy posts for the blog, but short FB posts seem to get more interaction, so I ended up spending more time there
2 Another reason why I couldn’t just “update” the original code to match the newer requirements

CSS Test Page

WARNING THIS POST MUST BE VIEWED THROUGH THE SITE
If you’re using an RSS reader, I suggest you click on whatever link there is that navigates to this post’s page 1 Footnote 1 Read More

Notes

Notes
1 Footnote 1

Financial Extrapolator v1.3

I’ve updated my homemade extrapolator. The purpose is still the same, so you can read all about what it’s used for from past post

  • Fixed a bug where the budget in the main menu includes expired expenses.
  • I also added the the ability to specify the starting month/year – some people may find it useful.

Download the mac or windows application (built with Flash)

Universal Proxy

If you would notice this site’s front page, I’ve now replaced a bunch of parts of the side-bar (right side of the homepage) with some social feeds of networks I’m active on. This was an unintended effect of creating a caching proxy for work.

A proxy is a script that pulls data from another domain and outputs the data as is. It may seem silly; to require something to simply mirror the data of another site, when you can simply pull the data from the source itself. Logically, this is true, but in the intertubes, nothing is really simple.

You have to wrestle with domain implementation policies, wherein certain stuff simply doesn’t work because the application, browser, server won’t allow it as a matter of security.

Flash as an example, can be annoyingly strict about pulling data from a different domain. If you build and test your app locally there’s no problem, but once you upload that and run it, the same exact algorithm may or may not work depending on the policies of both the plugin and sometimes even the server itself.

A proxy placed in your localhost solves this by ensuring that the data your “application” is accessing comes from the same domain.

Now a caching proxy is something more; just like with the concept of caching in general it allows a feed to be pulled from the source via the proxy, but then it’s written to a file locally, and have an expiration on it. As long as it’s not “expired”, then the proxy will simply re-use the file it had generated instead of pulling the feed from the source for a set period of time.

This is extremely useful (and in my case, the reason why I made it) when dealing with rate-limited stuff. All social networks have their own rate limitations; if a user/application is polling their APIs too often, they will block access temporarily to prevent their servers from being overloaded with requests (similar to, if not tantamount to a DoS attack) Read More

Financial Extrapolator v1.2

I’ve updated my homemade extrapolator

The purpose is still the same, so you can read all about what it’s used for from past post

I’ve updated two things: First is I’ve put in a config.xml so people could assign different dynamic values that the application uses. Second, and more importantly, is that I’ve revised the syntax of the expenses xml file. 1 Notice I didn’t list that as a filename anymore – since the config.xml file will allow people to change it I’ll be talking about the two changes in detail below. Read More

Notes

Notes
1 Notice I didn’t list that as a filename anymore – since the config.xml file will allow people to change it