News sources
A short list of the sites I visit regularly for news. I'll update it from time to time.
- Slashdot
- Full As A Goog (agregator for Macromedia-related blogs)
- A List Apart
- Sydney Morning Herald
- Joel on Software (good articles)
A short list of the sites I visit regularly for news. I'll update it from time to time.
I have a calendar application written in ColdFusion. One of the issues that came up in development was how best to store repeating events. There seem to be two main approaches to this:
The advantage of method 1 is that it takes up less storage and can handle infinitely repeating events.
The disadvantage of method 1 is that it is slow to calculate the repeats.
The advantage of method 2 is that it is very quick to retrieve and display the data.
The disadvantages are more storage required and you can't have infinitely repeating events (there are workarounds though).
This page has a good discussion of both approaches.
Speed has become an issue so I am going to implement method 2 but limit repeats to 2 years.