Technology Tips blog for improve computer & technology use! Technology tips relating to all aspects of technology, from web development, search engine optimization, technology news, internet news, web 2.0, social networking, search and software. This Technology Tips blog has a bit of everything.
Search
Friday, February 18, 2011
9 Ways to Instantly Code Faster
Sunday, April 11, 2010
Inbound linking strategies explained + Tool to help out
Thursday, December 18, 2008
<strong> and <b> / <em> and <i> - Which is for what?
A question that has been bugging me all day today when I was conducting some SEO work today was is the <strong> and <em> tag any different to the <b> and <i> tag. The conclusion I have come to after researching the topic is that you use the <strong> and <em> instead of <b> and <i> tag when you are trying to emphasize keywords on a page as readers treat the two tags differently. They achieve the same visual effect however the <strong> and <em> tags are "logical" tags. This means that they are for when the developer wants to add emphasis to particular words or phrases. A reader for a user with disabilities may say the word louder for example. The <b> and <i> tags are for visual layout effects on a page and do not have the same effect on a reader or add any weight to your keywords in the search engines. I suggest when crafting a page and that if you want to format something purely for visual effect then you use the <b> or <i> tag, as they will reduce you page size very slightly, hence increase load time. This post by Nikki Pilkington also states that there is no effect in the SEO world.
http://nikkipilk.sc10.co.uk/blog/2008/09/30/tip-49-the-bold-and-the-beautiful/
Friday, September 19, 2008
Speed up your page load times with a simple trick
Tuesday, July 24, 2007
Apple "Safari" - New Windows Browser
There is now a forth major contender in the browser market for Windows users. Most of us have heard of "Internet Explorer", "FireFox" (My personal favorite), "Opera" but now there is one from Apple "Safari". So after installing and having a play with it I quiet enjoyed the browsing experience. It is quick, has all the features the other browsers have, and has quiet a nice look and feel. I even set it as my default browser for a couple of days, however as a developer could not trade all of my FireFox extensions, for the new browser, so switched back not too long after.
I'm not going to lie, the browser does render pages and launch quicker than all of the other browsers and features all the modern features, such as "tabbed browsing", "pop-up blocker", "auto-fill forms" and built in "RSS Reader" and does come with the classic Apple look and feel (just like i-Tunes really) but it is really a browser for a basic Internet user. Another cool feature is the find feature which actually highlights the word searched upon in a pretty cool animated way.
One thing I don't like is that I couldn't use my de.icio.us bookmarks with the browser and I'm not sure Apple are going to open up the browser for developers to build in extra functionality. We will see I guess as it still is in beta.
I think that the main reason that Apple launched this browser is because the i-phone has just been released and the browser on this phone is Safari. It is definitely a strategic move to attempt to get Windows website developers to build support for the browser into their websites so that the i-phone can handle web based applications. I mean if they had not released the browser then I'm sure that the majority of us web developers would not bother supporting the browser unless it is a major contender on Windows machines. Another interesting point to make is there are millions of i-Pod users who download i-Tunes to manage their music, in the near future I can for see a move from Apple to include the browser with the download of the i-Tunes application. This will put them in a good position to take a good share of the browser market for Windows PCs.
I suggest you give it a go, check its features on the Apple site and start supporting it as a developer, as I imagine with the i-Phone and i-Tunes download amounts will make this browser quiet available to the public. On top of that why not reach the i-Phone mobile application market by making sure your website works in the browser correctly. Download the browser from the link below;
http://www.apple.com/safari/download/
Saturday, May 26, 2007
Ensure Googlebot crawls your site feeds
Want to get ensure Googlebot crawls your site feeds? To get your site feeds indexed and appear in the search results for Google's personalized homepage and Google Reader the code that needs to added to ensure that your feed is included in the index is listed below. This code is to be added to the header of your web page and uses the <link> tag.
For an Atom Feed;
<link rel="alternate" type="application/atom+xml" title="subske's tech know how?" href="http://subske.blogspot.com/atom.xml">
For an RSS Feed;
<link rel="alternate" type="application/rss+xml" title="subske's tech know how?" href="http://subske.blogspot.com/rss.xml">
Friday, May 25, 2007
Australian date format with date field in notes view column
day := @If(@Length(@Text(@Day(specialweekend))) <= 1;"0"+@Text(@Day(specialweekend));@Text(@Day(specialweekend)));
month := @If(@Length(@Text(@Month(specialweekend))) <= 1;"0"+@Text(@Month(specialweekend));@Text(@Month(specialweekend)));
year := @Text(@Year(specialweekend));
day + "/" + month + "/" + year
Monday, May 21, 2007
disable button based on text link
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Enable me once link is clicked</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
To access the document and enable next button <a href="#" id="fixednext" onClick="javascript:enableMe('next');">click here</a>
<p>
<input name="Next" type="button" id="next" value="Next">
</p>
<p> </p>
<script language="JavaScript">
if (document.getElementById('fixednext')==null) { }
else {
document.getElementById('next').disabled=true;
}
function enableMe(nextid) {
document.getElementById(nextid).disabled=false;
}
</script>
</body>
</html>
Tuesday, May 08, 2007
Smooth Image Buttons
http://javascript.internet.com/image-effects/smooth-image-buttons.html
Tuesday, March 27, 2007
Auto reply email script - LotusScript
Sub Initialize
Dim Session As New NotesSession
Dim DocWeb As NotesDocument
Dim DBCur As NotesDatabase
Dim tmpEmail As String
Dim EmailTo As String
Dim rtitem As NotesRichTextItem
Set DBCur = Session.CurrentDatabase
Set DocWeb = Session.DocumentContext
tmpEmail = DocWeb.GetFirstItem("Email").Text
Set WorkApps = New NotesDocument(DBCur)
Set rtitem = New NotesRichTextItem( WorkApps , "Body")
WorkApps.SendTo = tmpEmail
WorkApps.Principal = "info@munchtechnologies.com.au"
WorkApps.INetFrom = "info@munchtechnologies.com.au"
WorkApps.DisplaySent = "info@munchtechnologies.com.au"
'WorkApps.ReplyTo = "info@munchtechnologies.com.au"
'WorkApps.From = "info@munchtechnologies.com.au"
WorkApps.Form = "Memo"
WorkApps.Subject = "Job Application Received - Munch Technologies"
Call rtitem.appendtext("This email is to let you know that we have received your job application.")
Call rtitem.AddNewline(2)
Call rtitem.appendtext("If you are required for an interview, a member of the Munch Technologies Management Team will contact you directly.")
Call rtitem.AddNewline(2)
Call rtitem.appendtext("Thank you for taking the time to complete the application form. Your application will be kept on file for 3 months.")
Call rtitem.AddNewline(2)
Call rtitem.appendtext("For any further information please contact us directly through the contact us section at http://www.munchtechnologies.com.au")
Call rtitem.AddNewline(2)
WorkApps.send True
End Sub
Hope you Lotus Notes heads out there find this useful.
Friday, January 05, 2007
Mailto function
Monday, December 04, 2006
CSS trick - reveal an area when printed
