December 30th, 2006
10:33 pm
Family
Well I did it! I proposed to the love of my life and girl friend of now almost 3 years. I did it at (Wollman TRUMP (lol) Ice Rink in Central Park), a definite must do if your in the city. As for the ring, I think I should pass on my wisdom for the bachelor’s who are about to make “the big leap”. Like always I did some big research with this one and got educated. So for the weeks I spent learning, I hope this past on wisdom helps you guys out.
First off, I bought online. I looked into the “mall stores” and they were WAY over priced. Then I looked at the local stores and they were close to where I wanted to be. Then I found the perfect online store, with some great prices! I decided to go with an online store named James Allen (James Allen). From the start, these guys were right up front and helpful. I would defiantly recommend them as an option during your search.
The 4 “Cs” of the Diamond
Caret - The Size
You will probably hear a million opinions on how to get the “perfect stone,” however here is the best way to get a great looking one on a budget. No matter what anybody says, the biggest thing people will see is the Size. What should be the first of the four “Cs” is Caret, everyone will notice the size before anything. I would recommend a 3/4 - 1 carat rock depending on the budget. I choose the lower end of 3/4 and believe it or not it is huge! A full carat is nice, however a 3/4 is also real nice.
Color - How Clear the Color Is
The next of the four “Cs” is Color. Color is the most noticeable thing besides size by the naked eye. It works from D being absolutely colorless to Z being yellow. I would not look at anything less than an E and choose the best in this category, a D. A D is a beautiful stone and is really clear showing some real fire!
Cut - Cut is NOT the shape!!!
Do not get confused with the cut being the shape of the stone, these are two totally different things! A shape is the physical shape of the stone. Stones are shaped as the Princess Cut, Heart Shaped, Oval Shaped, and so on. The cut is very important and is the actual shape of the diamond. The better a diamond is cut, the more light or fire it will show. I also found this category to be important and choose the best, the ideal cut. The ideal cut means that the rock will reflect almost all of the light it takes in.
Clarity - How many imperfections is there?
Lastly should be Clarity or the amount of imperfections in the stone. This category really gauges the price of the stone and can really help you afford a stone that features top-notch other “Cs”. This scale is a little different and goes like this: FL/IF Range, VVS Range, VS Range, SI Range, and then I range. VS range and above really does not have any imperfections that are visible by the eye. The SI range has a slight imperfection that may or may not be eye clean. This is a tricky category and should be your range. If you can find an eye clean SI rock, this is your rock. No one cares if your rock is VVS or FL, as long as if it is eye clean, it is a great rock.
Some Considerations
Now there are some other things to be aware of. You may hear of a process called “Laser Drilling.” This is the process of making a REAL small hole in the stone to burn out a large imperfection so the stone is sellable. This can reduce the value of your stone by half the cost, however if it is GIA certified drilled it will still hold some value. If you can’t afford a large stone, I would defiantly recommend this process as long as if it is GIA certified. You can get a larger stone and it will still look great!
Now as for the shape, it really does not affect the price. It really comes down to personal preference on this one. I choose one of the more rarer shapes, one that I think is perfect for the engagement rock. I choose the heart shape rock and although this rock is hard to find, most stores stock 10 or 15 of these babies.
In any case, purchasing the rock for the love of your life can take a while. Like any big purchase, I defiantly recommend planning it out and taking your time. In the long run, it will be well worth it!!!
Tags: diamond-ring,
engagment,
erica
Hello World!
LOL, for some reason that simple phrase reminds me of what seems a million years of trial and error programming. Through my limited years of college, I can remember writing Assembler programs for dinosaur IBM P390 servers for hours. In my first assignments, just so the screen can produce those words.
In any case, my name is Jason Fisch and this is my blog. I never thought myself as a blogger, but in my job field I have found it to be critical to run one in order to network and figure out those big roadblocks. Although I went to school for programming big IBM servers, I have traveled a different path of web design. An interest and hobby since I was 14 and now my own business.
Now that’s out of the way, I am currently working on my companies site. While I am at it, let me put you on a great Java script I am currently using and have modified. I know Java script right, who needs AJAXs when you have some good old java script. To stay on track now and to make a long story short, I really believe in valid code and accessible websites. So while setting up my company’s website I found a good problem. What accessible way can I make links open in a new window???
With some internet research and my own thinking, I came to two conclusions. Since the website is done in PHP, I could make a PHP Style Switcher that a user could select if they want links to open in a window or not (of course the not being a default - standards, standards, standards). Or I could set up two side-by-side links one that opens in the same and the other that opens in a new window.
Then I found it! The perfect solution to my problem. A java script that places a small image next to a link that if clicked will open that link in a new window. Even better is, if the user does not have java script enabled on their browser, then the image does not show at all causing any confusion. This great script was written by Arc90 (www.arc90.com) and they even had the courtesy to source it out with a pretty much open license! It is so pretty I have decided to even use the script in this blog. So every time you see a:
, don’t forget to click it to open it in a new window.
While using the script I came up with what I felt were three issues, so here are some modifications that Arc90 and myself have made to the code.
Issue #1: I decided to remove the a.href and :// qualifier in the code. The code uses a qualifier to select a link that should be using the code. Arc90’s version requires the HTML link to include an a.href and :// somewhere in the link as well as the class name of “extlink”. I feel that the class name in its self is enough to qualify a link, especially if you set up your links via the site root which would not include a ://. So I just removed the bold section of Arc90’s code:
if (((b != ” && a.href.indexOf(b) < 0) || b == ”) && a.href.indexOf(’://’) > 0 && ((arc90_extLinkUseClassName && a.className.indexOf(’extlink’) >= 0) || !arc90_extLinkUseClassName)) { show the image }
and bang, its all set:
if (((arc90_extLinkUseClassName && a.className.indexOf('extlink') >= 0) || !arc90_extLinkUseClassName)) {show the image}
Issue #2: The code would work without any script errors, however the link icon would not display in Opera. In addition the link would move when the script ran as to allow the icon, however the icon would not display. I know that Opera has CSS issues with the positioning of background images via CSS, so advise Arc90. They were very perceptive to my concern and quickly had their CSS guy change the icon from a background image to a regular image allowing it to work in Opera. In addition I feel this was a good change because of the issue if images were disabled, the script would not work. Now the script will work with a display of its “Alt” text if images are disabled. An important accessibility issue. So in any case here are the two mods for the icon display:
CSS Edit:
.arc90_extlinkIMG {
margin-left: .3em; < - Less Reliance on CSS positioning, a plus!
cursor: pointer;
}
JavaScript Edit:
var m = arc90_newNode('img', '', 'arc90_extlinkIMG'); < - changed to an IMG from a Span w/ a background image
m.src = “/tools/c/images/extLink_img.gif”; < - Linked to image in Javascript, instead of CSS
m.title = ‘[External Link]’;
m.alt = ‘External Link Icon’;
eval(’arc90_addEvent(m, “click”, function() { window.open(”‘+ a.href +’”); });’);
a.parentNode.insertBefore(m, a.nextSibling);
Issue #3: Is a working progress that I will hopefully get some free time to fix. Nothing is new with IE’s ever growing list of compatibility issues and of course this is the case with this great tool. Unlike any other browser in the market today, IE will not pass the HTTP header field. So you have to manually define this in the java script with the http.header. This creates an issue with say W3C’s link on your site that it meets valid code. Since it uses the HTTP header to pass your URL, the link will not display in a new window if done in IE. I hope to have some free time soon to correct this one.
In any case, this is a GREAT tool and I would like to give a special thanks to the guys at Arc90 for being so kind to put it out to the web development community!
Tags: css,
external-link,
java-script,
new-window