Posted At : May 08, 2008 11:55 AM | Posted By : Ed Tabara
Related Categories: ColdFusion, My Projects, 1ssBlog

Currently 1ssBlog  have the following addons available:

  1. Social Tools
  2. Lyla Captcha
  3. Gravatars
  4. Entry Smiles
  5. Comment Smiles
  6. Related Entries
  7. Popularity Meter
  8. Rating System
  9. StatCounter
  10. Google Analytics


More to come with next updaters.

 


Comments (0)| Print| Send | 1205 Views | 12% / 0% Popularity


Posted At : May 07, 2008 16:24 PM | Posted By : Ed Tabara
Related Categories: ColdFusion, My Projects, Other, Caching, 1ssBlog

"Smart Caching" is my try to make the caching process a little bit more inteligent and i've made it on the example of 1ssBlog. It allow the entries to be cached and de-cached automatically based on how often they are viewed.

How it work:
We set the period of time (1 day, 1 hour or 1 minute) and the number of unique views that should happen in that period of time in order the entry to get cached automatically.
So, if we set the period to 1 hour and the number of views to 30, then as soon as an entry will be viewd 30 times in a period of the specified length, the entry will get cached. But if after some time the entry will not get enough views in a period of specified length, the entry will de removed from the cache automaticaly.

Nice and easy, huh? But it make the caching process flexible.

I would like to hear of others think about it.


Comments (2)| Print| Send | 764 Views | 7% / 14% Popularity


Posted At : May 07, 2008 16:00 PM | Posted By : Ed Tabara
Related Categories: ColdFusion, My Projects, 1ssBlog

This updater fix some bugs and:

  • add a couple of new Addons: StatCounter; Google Analytics; Popularity Meter; Rating System.
  • make possible to specify the length of the entry on the main page, including "full entry"
  • allow caching particular static pages for a particular time
  • allow caching particular entries for a particular time
  • "Smart Caching" added. This allow the entries to be cache and de-cached automatically based on how often it has been viewd in the specified period.
  • new tagCloud pod is presented

If anyone before had problems with 1ssBlog because it was shipping only with the script for MS SQL 2005, now it ships with the script for MS SQL 2000

 

It can be downloaded here


Comments (0)| Print| Send | 632 Views | 6% / 0% Popularity


Posted At : May 01, 2008 14:53 PM | Posted By : Ed Tabara
Related Categories: ColdFusion, My Projects, 1ssBlog

1ssBlog hit the 200 downloads frontiere. Hope it will not take TOO much for the 1,000 download to happen. :)


Comments (0)| Print| Send | 845 Views | 8% / 0% Popularity


Posted At : Apr 28, 2008 18:00 PM | Posted By : Ed Tabara
Related Categories: ColdFusion, 1ssBlog

This weekend when reading some WordPress blog i noticed that there was used some kind of entry popularity meter. Happens that there exist a special WordPress plugin for that.
And i thought "Wow! That's nice and i think many ColdFusion bloggers would like to have something similar.".
First i tried to find something similar in ColdFusion, but without any luck of course. Then i tried to find the description of the algorythm used, but again no luck.
So, my next thought was.. what a heck! why not just create something similar? :) This said, after few minutes of thinking and a couple of other minutes writting the code (thanks to ColdFusion ;)), i am ready to present what i came to.

NOTE:This is just a prove of concept, so if anyone have ideas how to have it better, please share your thoughts.

Ok. First of all the idea.
As most popular, 100% popularity, is taken the entry with the biggest number of views. The popularity for all other entries is calculated in comparison with the most popular one. So, if the most popular entry have 100 views and other entry have 23 views, the last one will be considered to have 23% popularity.
Same is done based on comments number (100% popularity will have the entry with highest number of comments).
So... the result, for each entry, will look something like: 61% / 36% Popularity. Where 61% is the popularity based on the number of views and 36% is the popularity based on the number of comments.

And now the code based on 1ssBlog.

The following function will return a structure with 2 keys: one with the number of views for the most visited entry and other with the number of comments for the entry with most comments.
Select Max(views) as maxView, Max(commentsNumb) as maxComments From onessBlog_entries Where is_active = 1 and posted <= GetDate()
And now the usage.
#Round(100*Val(viewsNumb)/viewsComments.views)#% / #Round(100*Val(commentsNumb)/viewsComments.comments)#% Popularity
NOTE:The popularity meter will be included in the next 1ssBlog updater.

Please don't hesitate to comment.


Comments (3)| Print| Send | 1220 Views | 12% / 21% Popularity


Posted At : Apr 28, 2008 1:39 AM | Posted By : Ed Tabara
Related Categories: ColdFusion, 1ssBlog

Entries rating system added to the blog, so now anyone reading a post may rate it based on how good he thinks the post is.


Comments (0)| Print| Send | 799 Views | 8% / 0% Popularity


Posted At : Apr 03, 2008 23:27 PM | Posted By : Ed Tabara
Related Categories: ColdFusion, My Projects, 1ssBlog

1ssBlogversion 1 Updater 1 is available for download.
Current users need to download the updater and follow the steps from readme.txt file.
New users just need to download the actual aplication. It have the updater in it already.

Enjoy!

P.S.Current users that does not have the updater installed yet, will see an alert about it when they will log to the admin backoffice.


Comments (0)| Print| Send | 1382 Views | 13% / 0% Popularity