Actual Results
- Shadows
- Forum: Google Forum
- Topic: Bad for SEO? (span tag within header tag)
- Subject: Bad for SEO? (span tag within header tag)
- Replies: 5
- Views: 1063
Posted: May 10th, 2008, 7:55 am
I never considered applying a class to a header, the reason I include a span inside a header tag is so I can apply an underline to the text where as should the header have a "border-bottom" applied, it repeats the bottom border across the full width.
- Shadows
- Forum: Google Forum
- Topic: Bad for SEO? (span tag within header tag)
- Subject: Bad for SEO? (span tag within header tag)
- Replies: 5
- Views: 1063
Posted: May 10th, 2008, 4:43 am
Hi, I have a question and since I don't know the answer it bothers me. I understand the importance of SEO in terms of ranking etc. My question is while header tags (h1 ... h6) are important and should be used to illustrate important key words and terms, does inserting a <span> tag inside that ...
- Shadows
- Forum: Programming / Scripting / Coding Forum
- Topic: Javascript, Error: "Object Required"
- Subject: Javascript, Error: "Object Required"
- Replies: 2
- Views: 315
- Subject: Javascript, Error: "Object Required"
Posted: May 9th, 2008, 9:16 am
I'm getting this error by double clicking the warning icon present in IE's window (bottom left). It points to line 36 and "Char 3" whatever that Char 3 means is beyond me. Has anyone got an idea whats wrong with the following code. [code] function __isValidEmailAddr(email) { var filter = /...
- Shadows
- Forum: Programming / Scripting / Coding Forum
- Topic: Scanner, "NoSuchElementException" help
- Subject: Scanner, "NoSuchElementException" help
- Replies: 1
- Views: 425
Posted: April 24th, 2008, 10:49 pm
Hi, When I'm taking input from the "getFlag" method and passing it onto the "initialise" method, I'm encounting a problem. My code is firing a NoSuchElementException and I have no idea why. I've checked the doc to understand the reason why this exception is fired, how can I preve...
- Shadows
- Forum: Programming / Scripting / Coding Forum
- Topic: Javas printf method
- Subject: Javas printf method
- Replies: 0
- Views: 170
- Subject: Javas printf method
Posted: March 9th, 2008, 4:59 pm
I'm attempting to rewrite javas printf method. [code] public static void printf(String output, String... parameters) { for ( int i = 0; i < parameters.length; i++ ) { /* replace only the "first" substring found */ output = output.replaceFirst("%", parameters[i]); } System.out....
- Shadows
- Forum: Programming / Scripting / Coding Forum
- Topic: Use Quene in Java
- Subject: Use Quene in Java
- Replies: 1
- Views: 207
- Subject: Use Quene in Java
Posted: March 8th, 2008, 6:44 pm
I'm having trouble implementing a quene in java since I want to add a series of integers to the quene. I'm having trouble initializing an object of quene so I can being using it. [code] import java.util.Scanner; import java.util.Queue; public class ex1 { public static void main(String[] args) { Scan...
- Shadows
- Forum: General Discussion
- Topic: Microsoft "Expression"
- Subject: Microsoft "Expression"
- Replies: 6
- Views: 244
- Subject: Microsoft "Expression"
Posted: February 25th, 2008, 8:35 am
I downloaded a free licensed copy of the expression suite from microsofts server, part of this inspiration tour they been doing. I quite like the design tool, creating polygons is so easy, in photoshop I get tired looking for stuff. Free MS software for students: https://downloads.channel8.msdn.com/
- Shadows
- Forum: General Discussion
- Topic: Make me a webpage, Im your friend
- Subject: Make me a webpage, Im your friend
- Replies: 15
- Views: 706
- Subject: Make me a webpage, Im your friend
Posted: February 24th, 2008, 2:03 pm
classic
- Shadows
- Forum: General Discussion
- Topic: Microsoft "Expression"
- Subject: Microsoft "Expression"
- Replies: 6
- Views: 244
- Subject: Microsoft "Expression"
Posted: February 24th, 2008, 1:57 pm
I recently acquired MS Expression, I'm curious as to what others think about this suite of tools, we have blend, web, design and media. Personally for design I find the interface for designing simple 2d visuals pleasant and unintimidating for someone who's not heavily involved in graphic design but ...
- Shadows
- Forum: Programming / Scripting / Coding Forum
- Topic: Why did you choose PHP as your preferred scripting language?
- Subject: Why did you choose PHP as your preferred scripting language?
- Replies: 22
- Views: 657
Posted: February 24th, 2008, 1:45 pm
I agree with sevster regarding 99% of the web servers incorporating unix and rightfully so, however the best reason I can give PHP having an enormous uptake is cost. It costs $6 to get a half decent web server for PHP, how much does it cost for a server that supports ASP? alot more I know because MS...
- Shadows
- Forum: Programming / Scripting / Coding Forum
- Topic: What programming/scripting languages do you know?
- Subject: What programming/scripting languages do you know?
- Replies: 570
- Views: 14165
Posted: February 24th, 2008, 1:40 pm
My languages - VB6 (althrough not in a long time) - .NET (VB7/8, C#, ASP) - Java - JavaScript - PHP - C/C++ (Never Visual C++ through, Bloodshed for me) I've touched other languages however not worth including since I'm not fluent in them. I've left xHTML and CSS ... out since I don't consider them ...
- Shadows
- Forum: Programming / Scripting / Coding Forum
- Topic: Java, First Numeric Element for LinkedList
- Subject: Java, First Numeric Element for LinkedList
- Replies: 4
- Views: 216
Posted: February 24th, 2008, 1:35 pm
well for one my exercises which I now completed, starting with 0 was fine, makes sense at least to myself althrough I could start my list beginning from element -55 and that would work fine. Kinda confusing through, hopefully someone can shread some light in why a linked list could or more important...
- Shadows
- Forum: Programming / Scripting / Coding Forum
- Topic: Java, First Numeric Element for LinkedList
- Subject: Java, First Numeric Element for LinkedList
- Replies: 4
- Views: 216
Posted: February 24th, 2008, 9:47 am
I'm assuming the first element of a LinkedList in java is 0 much like arrays, is this correct. I read something that had me confused which suggested it was -1 before 0, can someone confirm, both compile fine. partyList.add(-1, userInput); partyList.add(0, userInput); I'd rather specify the index rat...
- Shadows
- Forum: Programming / Scripting / Coding Forum
- Topic: Delete Variables in C
- Subject: Delete Variables in C
- Replies: 1
- Views: 986
- Subject: Delete Variables in C
Posted: February 17th, 2008, 6:34 pm
In C++ or Javascript, I can use the delete keyword to erase a variable from memory, is there a function available in ANSI C...?
- Shadows
- Forum: Programming / Scripting / Coding Forum
- Topic: Java, Comparison of Strings
- Subject: Java, Comparison of Strings
- Replies: 5
- Views: 263
- Subject: Java, Comparison of Strings
Posted: February 11th, 2008, 8:37 am
thanks for the tips spork and snuggles

