Posted in November 2, 2009 ¬ 8:48 amh.jyther
Google wave has been released by special invitation to those interested. I registered my interest when I first found out about Google Wave. I got an email this morning and signed in straight away. however, I have no body to wave to. I suppose in the coming days/weeks more people will get into the service and Wave away. If anyone else out there is Waving, Wave my way.
Read the rest of this entry »
Posted in June 4, 2009 ¬ 12:14 pmh.jyther
This week Google have announced the latest creation. The yet to be released Google Wave.

My big question is how will it interact with conventional email clients what don’t have Wave capabilities.
Read more about Google Wave here.
Early signup for Google Wave can be done here.
Read the rest of this entry »
Posted in March 31, 2009 ¬ 7:50 amh.jyther
ASP is programmed in VBScript by default, thus ASP’s operators are VBScript
operators by default.
Operators in ASP fall into four categories Math, Comparisons, the
somewhat more advanced Logic operators, and Leftovers(those that don’t fit well into any category).
ASP Arithmetic Operators
The mathematical operators in ASP are similar to many other programming languages. However, ASP does
not support shortcut operators like ++, –, +=, etc.
| Operator |
English |
Example |
Result |
| + |
Addition |
myNum = 3 + 4 |
myNum = 7 |
| - |
Subtraction |
myNum = 4 – 1 |
myNum = 3 |
| * |
Multiplication |
myNum = 3 * 2 |
myNum = 6 |
| / |
Division |
myNum = 9 / 3 |
myNum = 3 |
| ^ |
Exponential |
myNum = 2 ^ 4 |
myNum = 16 |
| Mod |
Modulus |
myNum = 23 Mod 10 |
myNum = 3 |
| - |
Negation |
myNum = -10 |
myNum = -10 |
| \ |
Integer Division |
myNum = 9 \ 3 |
myNum = 3 |
Comparison Operators
Comparison operators are used when you want to compare two values to make a decision.
Comparison operators are most commonly used in conjunction with “If…Then” and “While something is true do this…” statements, otherwise
known as conditional statements. The items that are most often compared are numbers. The result
of a comparison operator is either TRUE or FALSE.
| Operator |
English |
Example |
Result |
| = |
Equal To |
4 = 3 |
False |
| < |
Less Than |
4 < 3 |
False |
| > |
Greater Than |
4 > 3 |
True |
| <= |
Less Than Or Equal To |
4 <= 3 |
False |
| >= |
Greater Than Or Equal To |
4 >= 3 |
True |
| <> |
Not Equal To |
4 <>3 |
True |
Logical Operators
The above comparison operators result in a truth value of TRUE or FALSE. A logical
operator is used for complex statements that must make decisions based on one
or more of these truth values.
| Operator |
English |
Example |
Result |
| And |
Both Must be TRUE |
True and False |
False |
| Or |
One Must be TRUE |
True or False |
True |
| Not |
Flips Truth Value |
Not True |
False |
String Operators
The only string operator is the string concatenation operator “&” that
takes two strings and slams them together to form a new string. An example would
be string1 = “Tim” and string2 = ” is a Hero”. The following code would combine
these two strings into one: string3 = string1 & string2
| Operator |
English |
Example |
Result |
| & |
String Concatenation |
string4 = “Bob” & ” runs” |
string4 = “Bob runs” |
Read the rest of this entry »
Posted in July 1, 2008 ¬ 1:02 pmh.jyther
Romans 12:1-8
1Therefore, I urge you, brothers, in view of God’s mercy, to offer your bodies as living sacrifices, holy and pleasing to God—this is your spiritual act of worship. 2Do not conform any longer to the pattern of this world, but be transformed by the renewing of your mind. Then you will be able to test and approve what God’s will is—his good, pleasing and perfect will.
3For by the grace given me I say to every one of you: Do not think of yourself more highly than you ought, but rather think of yourself with sober judgment, in accordance with the measure of faith God has given you. 4Just as each of us has one body with many members, and these members do not all have the same function, 5so in Christ we who are many form one body, and each member belongs to all the others. 6We have different gifts, according to the grace given us. If a man’s gift is prophesying, let him use it in proportion to his faith. 7If it is serving, let him serve; if it is teaching, let him teach; 8if it is encouraging, let him encourage; if it is contributing to the needs of others, let him give generously; if it is leadership, let him govern diligently; if it is showing mercy, let him do it cheerfully.
Read the rest of this entry »
Posted in April 7, 2008 ¬ 1:47 pmh.jyther
This following is an interesting article on answersingenesis.org called Does Distant Starlight Prove the Universe Is Old? I found it quite an interesting read.
Read the rest of this entry »