-
FreshTags-Singpolyma
- body
-
This post has been 'deprecated'. Please see FreshTags-Singpolyma 2
I have for some time had my own version of the FreshTags system. In the past, all upgrades to this version have been seamless to the user, but this time the changes were too radical to allow that to work. I have rewritten the entire hack based off of the FreshTags v0.5 code. The major changes from FreshTags 0.5 are:
- Hidden post page is used for displaying tags, instead of reloading the current page and displaying in the sidebar (the primary purpose of the original modifications)
- Completely asynchronous data load — FreshTags no longer loads before the page content, but rather loads afterwards, resulting in a faster page load time
- If no tag is selected one can be automatically pulled from relTag data on the page
- Full support for peek-a-boo headlines in blogrolls
Please Note : If you are upgrading from my previous hack, you will need to remove all of its code from your template before upgrading. You will also have to edit the Tags post.
Basic Installation Instructions
- Create a new post on the blog you would like to implement this hack on with the title 'Tags' and click the 'Edit Html' tab for the post body, pasting the exact code '<div id="freshtags_postpage"><i>Loading…</i></div>' into the post body. Turn comments off for the post and set the post date to January 1, 2000. The time doesn't matter. Post this post. (If you are upgrading from the previous version, just edit the post to contain the new code.)
- Edit the template for your blog and insert this code into the <head> section:
<script type="text/javascript">
//<![CDATA[
var del_user = "delicious username";
var anchor = "anchor tag";
var defs = "";
var maxposts = 10;
var freshtags_tags_id = "freshtags_tags";
var freshtags_posts_id = "freshtags_posts";
var freshtags_postpage_id = "freshtags_postpage";
//]]>
</script>
<script type="text/javascript" src="http://jscripts.ning.com/get.php?xn_auth=no&id=818185"></script>Where 'delicious username' is the del.icio.us username you store your blog data in and 'anchor tag' is the anchor tag you use (if you use one). If you don't use an anchor tag, just replace the words 'anchor tag' with nothing.
- Insert this code where you would like the tags drop-down to go:
<div id="freshtags_tags"><i>Loading…</i></div>
<div id="freshtags_posts"></div> - Save your template and republish your blog
Customisation Options
- no_autocapture — setting this variable to true will keep the script from attempting to grab relTag data from the page. For example, to keep a Blogger blog using this script from grabbing relTag data when on the main page use <MainPage><script type="text/javascript">var no_autocapture = true;</script></MainPage>
- defs — setting this variable sets what tag(s) will be selected be default if the user has not selected any. This will do nothing if no_autocapture is not set to true unless the autocapture failes.
- maxposts — the maximum number of posts to display in the sidebar
- freshtags_tags_id — the ID of the block to put the tags dropdown in
- freshtags_posts_id — the ID of the block to put the posts list
- freshtags_postpage_id — the ID of the block in the Tags post
- freshtags_tag_format — the format for the tags list (default is 'drop-add'). For example, to use asynchronous post loading add this code to your template: <script type="text/javascript">var freshtags_tag_format = "drop-add-async";</script>
Peek-A-Boo Blogroll Headlines
To add peek-a-boo headlines to your blogrolls follow the following steps:- Add this code to the <head> section of your blog to facilitate the actual show/hide:
<script type="text/javascript">
//<![CDATA[
function toggleitem(postid,linkid,newtxt,displaytype) {
if(!displaytype) {displaytype = 'block';}
var whichpost = document.getElementById(postid);
if (whichpost.style.display != "none") {
whichpost.style.display = "none";
} else {
whichpost.style.display = displaytype;
}
if(linkid) {
var lnk = document.getElementById(linkid);
lnk.href = "javascript:toggleitem('"+postid+"','"+linkid+"','"+lnk.innerHTML+"');";
lnk.innerHTML = newtxt;
}
}
//]]>
</script> - Add this code just after the blogroll link you want to add peek-a-boo headlines for (it's invisible defaultly, just the container for the headlines) '<div id="blognameheadlines" style="display:none;"><i>Loading…</i></div>'
- If this blog stores post data in del.icio.us (they don't have to use FreshTags necessarily) add this code just before the blogroll link (it's the +/- link for showing/hiding the headlines):
<a id="blognamelink" href="javascript:toggleitem('blognameheadlines','blognamelink','-'); load_otherblog_titles('del.icio.us','other blog's del.icio.us account username','other blog's anchor tag (if they use one)','URL to other blog's feed (optional)','blognameheadlines');">+</a>
Otherwise add this code to use just their feed:
<a id="blognamelink" href="javascript:toggleitem('blognameheadlines','blognamelink','-'); load_otherblog_titles('feed',",",'URL to other blog's feed','blognameheadlines');">+</a>
-
coComment JSONP
- body
-
coComment is a new service like Commentosphere that helps you tracks your comments/conversations across the web. If you haven't heard of coComment yet check out Johan's article at Ecmanaut.
One of the features missing from coComment has been JSON(P) feeds of data. They have a 'blog box' JavaScript include, but it is limitedly customisable. So, frustrated with the way it did work, but still wanting to display my coComment data in my sidebar like I have been doing with Commentosphere, I created a hack that generates JSONP feeds for coComment.
Using the script is simple. You pass the URL to the JavaScript for a customised blog box on coComment to the script, along with optionally the name of a callback function (using '&callback'). You can tack on '&raw' to make it output raw JSON data. If no callback is specified and you do not specify raw data it will check to see if you have a coComment.callbacks objects with a comments function and call that. The URL is:
http://comment.ning.com/cocomment/json.php?url=URLtoBLOGBOXIf you want a sidebar element, or just some example JavaScript code to work with, here is what I use. Put this in your <head> section:
<script type="text/javascript">
//<![CDATA[
var list_cocomment_limit = NUMBER OF CHARACTERS;
var list_cocomment_id = "cocomment";
var list_cocomment_url = "URL TO BLOG BOX";
function list_cocomment_callback() {
val = '';
val += '<ul class="cocomment">';
for(var i=0; i<coComment.comments.length; i++) {
val += ' <li><a href="'+coComment.comments[i].articlelink+'">'+coComment.comments[i].body.substr(0,list_cocomment_limit)+'…</a></li>';
}//end for
val += '</ul>';
val += '<a href="'+coComment.url+'">More</a> on <a href="http://www.cocomment.com/">coComment</a>';
item = document.getElementById(list_cocomment_id);
item.innerHTML = val;
}//end function list_cocomment_callback
coComment = {};
coComment.callbacks = {};
coComment.callbacks.comments = list_cocomment_callback;
function list_cocomment() {
coComment = {};
coComment.callbacks = {};
coComment.callbacks.comments = list_cocomment_callback;
var thescript = document.createElement("script");
thescript.type = "text/javascript";
thescript.src = 'http://comment.ning.com/cocomment/json.php?url='+encodeURIComponent(list_cocomment_url);
document.body.appendChild(thescript);
}//end function list_cocomment
function addLoadEvent(func) {
var oldonload = window.onload;
if (typeof window.onload != 'function') {
window.onload = func;
} else {
window.onload = function() {
oldonload();
func();
}
}//end if
}//end function addLoadEvent
addLoadEvent(list_cocomment);
//]]>
</script>And in your sidebar put '<div id="cocomment"><i>Loading…</i></div>'.
-
Been Sick
- body
-
Yes I've been a bit sick as of late — just haven't got around to posting about it
Parents think it may be malaria-related and have me on those drugs — whatever the case it seems to be getting better
Not a lot else happening — school, chat, lounging around, the usual. Chels threw out her back awhile ago and that's been really bothering me… but she's recovering slowly
How do some of you ppl post every day?? I can hardly think of anyting to write and it's been awhile… oh, I've finished up my EBC application, and their next meeting is on the 27th, so I should know if I'm in or not soon
School seems to be going alright, and some of my marks are picking up a bit… not as good as I would have hoped, but I'll have to live with it
Well I'm sure (as always) that there's more to say… but I can't think of a thing… so until next time and hope to see you online!
-
Del.icio.us JSONP is Native!
- body
-
For quite awhile now, del.icio.us has offered JSON support, but not a proper JSONP implementation. I even wrote my own proxying script to fix this oversight. It seems that that will no longer be necessary. If you pass callback=CALLBACK to a del.icio.us JSON feed it will now output proper JSONP that does not set the Delicious.posts variable (easy to fix in your callback function) but calls CALLBACK with the JSON object as a parameter. Compare these:
http://del.icio.us/feeds/json/singpolyma.techblog/
http://del.icio.us/feeds/json/singpolyma.techblog/?callback=CALLBACK
There has, as yet, been no official announcement on the del.icio.us blog, so this feature may yet be pulled like some others have, but I hope they will not. Hopefully I will soon be modifying my version of FreshTags to make good use of this native JSONP support.
-
Post-Valentines
- body
-
Yesterday was Valentines day, and we had a sort of party-thing hosted by Aunt Cindy McCordic for lunch. It was a lot of fun — we ate spaghetti with cheese sauce and played some games. Two of them were mind-trick games — one where Aunt Cindy did something we were supposed to copy, but no one could get it because they didn't notice she'd cleared her throat at the beginning, and one Janelle did called 'Chinese numbers' (but I won't tell you how it works, 'cause that'd spoil it
). We also played a wonderful trick on me! You see, there's this game where you stick a funnel in the top of your pants and then stick a coin to your head and try to drop it into the funnel. Not an easy task! Well, while you're busy sticking the coin to your head, someone runs over and pours water into the funnel!! Hehe, all in all, it was great fun 
Not whole globs of other stuff going on right now… although I'm sure I had thought of something else to say in this post
ah, well, I always seem to forget what all I was gonna say.
Oh, and by the way, I have a bunch of new pictures on my flickr again — check 'em out





You can trackback from you own site.
26 Comments
I didn't quite grok that bit about feed2json, but assume it has nothing to do with Del.icio.us?
Taking the FreshTags load off the critical path works a treat … it will be especially handy during the next delicious outage.
Speaking of which, how about an error message if the listTags/listTitles code returns empty? Eg.
http://ghill.customer.netspace.net.au/?tags=sdjfsdkjfhksd
The peek-a-boo blogroll is fantastic. Just a thought: I wonder if, given that the loading is now asynchronous, it couldn't pre-expand some blogs 'on spec'? I mean, as long as the number of posts per rolled blog isn't excessive, what does the reader care if the page is over-eager in anticipating their interests? Or might this be too distracting and punishing on community infrastructure?
I ask because I'm contemplating this with my own FreshRolls implementation. Specifically, if the publisher has tagged a 'peer blog' with a tag that the reader selects - should that 'peer blog' get unfurled?
-Greg.
RE feed2json — no, I am currently being forced to use the external service so that I can peek-a-boo recent headlines from a blog using their feed if there are not del.icio.us headlines to work with. Del.icio.us data is not affected
RE error message — already done for my Tags page. I don't have the error displaying in the sidebar because I thought that could be distracting to the user.
RE blogroll — Currently I purposely have the headlines only loading on click. Makeing them auto-load would be no harder, I just wanted to keep the amount of stuff the page loaded by default to a minimum on my blog.
The anchor restriction doesn't seem to be working on my blog. Instead, on both sidebar and tags page, it loads *all* my del.icio.us bookmarks with the appropriate tags, including pages from other blogs!
Alright, I think I've fixed the anchor problem — let me know
" REL="nofollow">comparison online stock trading " REL="nofollow">kenzo parfum " REL="nofollow">quick payday loans " REL="nofollow">sub prime signature only personal loans " REL="nofollow">phentermine and prozac
" REL="nofollow">mesotherapy cellulite " REL="nofollow">download gratis indonesia mp3 yang " REL="nofollow">buy nexium online " REL="nofollow">norco little league " REL="nofollow">obesity surgery journal
" REL="nofollow">lortab prescription " REL="nofollow">make money online canada " REL="nofollow">mesotherapy clinic " REL="nofollow">download mp3 somali song " REL="nofollow">adverse reaction to nexium
" REL="nofollow">affect side zyrtec " REL="nofollow">acne inc scar treatment " REL="nofollow">adipex buy rx usa.com " REL="nofollow">air breeze compact ionic purifier quadra silent " REL="nofollow">lowest price ambien
" REL="nofollow">ephedra product lawyer " REL="nofollow">eyelid surgery denver " REL="nofollow">fast cash in foreclosure " REL="nofollow">a.biz buy flexeril linkdomain online " REL="nofollow">forex ira trading
" REL="nofollow">comprehensive distance education learning online program " REL="nofollow">america book drug in text use " REL="nofollow">ephedra plant " REL="nofollow">laser eyelid surgery pasadena " REL="nofollow">cash fast loan missouri
" REL="nofollow">valium vs xanax " REL="nofollow">buy online pill zenegra " REL="nofollow">cholesterol drug effects side zocor " REL="nofollow">aldara xenical zovirax zyban zyrtec " REL="nofollow">allegra vs zyrtec
" REL="nofollow">creme zovirax " REL="nofollow">medication zyrtec " REL="nofollow">acne body scar " REL="nofollow">adipex drug information " REL="nofollow">air breeze ionic purifier review
" REL="nofollow">mesotherapy texas " REL="nofollow">free download indonesian mp3 song " REL="nofollow">nexium cheapest " REL="nofollow">corona norco teacher association " REL="nofollow">group obesity support surgery toronto
" REL="nofollow">laser eye surgery rochester ny " REL="nofollow">laser skin resurfacing " REL="nofollow">cialis levitra vs " REL="nofollow">arthritis lipitor " REL="nofollow">loan maine online payday
" REL="nofollow">flexeril pregnancy " REL="nofollow">free forex trading chart " REL="nofollow">generic viagra soft tabs " REL="nofollow">laser hair removal san diego " REL="nofollow">carolina group health insurance north
" REL="nofollow">cheap airline ticket to orlando florida " REL="nofollow">chin reduction surgery " REL="nofollow">cipro drug " REL="nofollow">cleanse colon review " REL="nofollow">free instant online credit report
" REL="nofollow">anti free removal spyware virus " REL="nofollow">stomach symptom ulcer " REL="nofollow">sales tenuate " REL="nofollow">symptom of overactive thyroid gland " REL="nofollow">dosages tramadol
" REL="nofollow">debt consolidation " REL="nofollow">dermabrasion " REL="nofollow">didrex " REL="nofollow">discount hotel " REL="nofollow">distance learning
" REL="nofollow">accommodation caribbean consolidators travel " REL="nofollow">bad car company credit finance " REL="nofollow">2 airport alicante car rental week " REL="nofollow">celebrex celecoxib " REL="nofollow">cheap flight plane ticket
" REL="nofollow">cheap city flight new york " REL="nofollow">cheap air plane ticket to mexico " REL="nofollow">double chin reduction surgery " REL="nofollow">cipro and pregnancy " REL="nofollow">tony colon
" REL="nofollow">buy zovirax " REL="nofollow">discount zyrtec " REL="nofollow">acne scar removal procedure " REL="nofollow">diet adipex " REL="nofollow">indoor air purifier
" REL="nofollow">california eye laser modesto surgery " REL="nofollow">laser resurfacing scar " REL="nofollow">levitra online " REL="nofollow">drug interaction - lipitor " REL="nofollow">antonio countrywide home loan san
" REL="nofollow">currency trading forex spot rate " REL="nofollow">canada overnight generic viagra " REL="nofollow">boston hair in laser removal " REL="nofollow">aetna care health insurance us " REL="nofollow">base business find here home opportunity
" REL="nofollow">drug city pharmacy " REL="nofollow">metabolife 356 ephedra " REL="nofollow">toronto asian eyelid surgery " REL="nofollow">approval cash fast guaranteed loan " REL="nofollow">flexeril overdose
I am really worried about the medications of many people use… thats the reason because show that theme to you… The Drugs like the fioricet
the most important things about fioricet
is a pain reliever and fever reducer.
is in a class of drugs called barbiturates that slow down your central nervous system (brain and nerve impulses) causing relaxation.
is believed to constrict dilated blood vessels that may contribute to tension headaches.
Together, acetaminophen, butalbital, and caffeine are used to relieve complex tension (muscle contraction) headaches although precisely how it works is unknown.
Fioricet may also be used for purposes other than those listed in this medication guide.
In the same calification we can find drugs like
Amoxicillin is used to treat certain infections caused by bacteria, such as pneumonia;
bronchitis; gonorrhea; and infections of the ears, nose, throat, urinary tract, and skin.
It is also used in combination with other medications to eliminate H. pylori, a bacteria
that causes ulcers. Amoxicillin is in a class of medications called penicillin-like
antibiotics. It works by stopping the growth of bacteria. Antibiotics will not work for
colds, flu, and other viral infections.
Amoxicillin comes as a capsule, a tablet, a chewable tablet, a suspension (liquid), and
pediatric drops to take by mouth. It is usually taken every 12 hours (twice a day) or every
8 hours (three times a day) with or without food. To help you remember to take amoxicillin,
take it around the same time every day.
Vicodin is a pain killer most commonly seen as a white tablet with the name “Vicodin, is
most commonly prescribed for persons experiencing pain after surgery or intense
pain. It helps calm a person down and increases their ability to relax and forget about
painful ailments (which speeds up recovery)
the Xanax ( Alprazolam ) is an anti-anxiety agent benzodiazepine used primarily for short-term
relief of mild to moderate anxiety and nervous tension. Alprazolam is also effective in the
treatment of activity depression or panic attacks. It can also be useful in treating
irritable bowel syndrome and anxiety due to a neurosis,
you can find more information about vicodin at http://www.crdrx.com, 10/325 at http://www.10-325.com, vicoprofen at http://www.1vicoprofen.com and lortab at http://www.1lortab.com
Have a great day
Reply / Comment