0
they found him.
this morning about noon.
i got an email from my mum that said call me.
that's all it said.
and i did.
and she told me they found him.
he's not alive.
he was floating in the river.
half my town has been out searching for him since monday.
my heart has broke in two.
anyone else in the whole fucking world...
Read More
VIEW 6 of 6 COMMENTS
missredcherry:
I know what you mean.. I have lost so many people and I can never get my head around why!
I just keep wondering why it has happened.

Stay strong!
I am going to post you a package on Tuesday. Its not much but hopefully it might put a smile on your face for a while.
Im here if you need to talk kiss
leola:
Thank you.
I'm sorry to read your horrible news. Really sorry. frown kiss
0
at 4am sunday morning, a friend of mine went missing.
he left some party at some kids house, and hasn't been seen since.
they're reasonably sure that he fell into the river near the location of the aforementioned party, and drowned, but to me..it just seems highly improbable.
he would have been heading home when he left, meaning he would have been walking in the...
Read More
VIEW 3 of 3 COMMENTS
lucy:
I hope they find him.
*hugs*
And Thanks for the sweet comment on my set, it made my day.
laceyglove:
I hope everything will be okay! I'll keep my fingers and toes crossed!
Take care sweetie! kiss
0
VIEW 3 of 3 COMMENTS
deanna:
what kind of crazy adventures?
vancleef:
i also have biggers muscles
0
.
vancleef:
The Sad Story of PNG Gamma Correction

Browsers have supported the PNG bitmap format for quite some time. But still, even though PNG files can either be made smaller than GIFs or, alternatively, can contain more colors, lots of Web designers keep using JPEGs and GIFs. In fact, even designers who (for other reasons) dont care about old browsers still often havent made the switch to PNG. Is it just about being stuck with the old ways or is there a good reason not to switch? Sadly, it turns out there is a reason not to switch: gamma correction gone wrong.
Why PNG? (Quick Recap)

Unencumbered by patents

The common expert belief is that the deflate compression algorithm which is used in the PNG format is not under patents when implemented in the way it is implemented in the zlib compression library. On the other hand, the LZW compression algorithm used when writing GIFs was subject to a U.S. patent owned by Unisys (and to similar patents in some other countries). Unisys has enforced the patent and effectively taxed software that writes GIFs. The U.S. patent has now expired, so this it is no longer a reason for avoiding GIF.
Smaller file size

This feature of PNG may not be obvious when comparing the PNGs and GIFs written by Photoshop for example, because many programs dont use the full compression potential of PNG. However, when the full potential of the compression and the data rearrangement filters of PNG are used (eg. using pngcrush), PNG files are smaller than GIFs with the same image data.
More colors

The maximum number of colors in a GIF image is 256. The PNG format can handle RGB colors up to 16 bits per channel. Of course, with current display hardware the ability to use 8 bits per channel (Apples millions of colors or Microsofts true color) has more practical value.
Alpha channel

In GIF, one color can be made fully transparent. PNG images can have a full alpha channel which allows semi-transparent pixels.
Gamma correction
Gamma correction is supposed to make a cool bullet point. However, this is why you may not want to use PNGs in practice.

The Original Problem

Traditionally, RGB colors have been displayed simply by handing the numeric RGB color values to the display hardwarea display card controlling a cathode ray tube (CRT). This is also what Web browsers have done. The RGB color values from GIF color palettes, decoded JPEG images and from HTML have been passed unmodified to the graphics API of the system.

But mapping the numeric color values to screen colors is not that simple. Even if the numeric values were mapped linearly to voltages on the display card, the phosphors of the CRT wont excite linearly depending on the input voltage. On most systems, the numeric color values have just been chosen in such a way that the desired colors are produced on an average CRTor at least the CRT of the person originally choosing the color values.

Some system designers were not satisfied with the non-linear behavior of the CRT and chose to compensate by adding a transfer function to the display card. This was done by Apple, NeXT and SGI. However, they chose different default compensations. As a result, the same numeric color values produce different colors on different computer setups even when the physical properties of the CRT are the same.

To put it simply: A color with the same numeric RGB values looks brighter on an out-of-the-box Mac or SGI box than it does on an average PC.
The Correction

The transfer function in question is simple. The color values are scaled to the range 0.01.0 and then raised to power. The exponent is called gamma. It follows that the inverse function simply has the reciprocal of the gamma as the exponent. Also, it is easy to make a composite of consecutively applied functions by simply multiplying the exponents.

So compensating the effect of the transfer function looks simplein theory.
The New Problem

In order to compensate for the different gammas, the display gamma of the system an image was authored on and the display gamma of the system where the image is being displayed both need to be known to the piece of software displaying the image. The PNG format provides a means for storing the (reciprocal of) display gamma of the authoring system to the image file. It is up to the program writing the file to store the native display gamma of the image, and then it is up to program displaying the file to compensate.

The new problem is that the programs that read and write PNG files usually have no idea about the display gamma of the system they are running on. The usual method is to take a guess based on the platform the program is running on and pick one of the default values mentioned for Mac, SGI, NeXT and PC clones in the Gamma Tutorial appendix of the PNG specification.

This approach is bogus. The platform defaults are only that: defaults. The display gamma is configurable on many systems. Also, on uncalibrated systems the default values are not exact. Writing bogus gamma information to files and then doing gamma correction using different bogus gamma information is not solving the problemonly perturbing it further.

In practice, a rather arbitrary gamma change is often applied to a PNG image when the image is opened in a program that did not write the file. When a PNG image is viewed in isolation, the gamma disturbance may not be obvious. However, when the colors of an image are meant to match some surrounding colorssuch as the colors of a Web pagethe problem becomes more serious.
Inconsistent Color on the Web

When images are used as parts of a Web page design, consistent color handling is often more important than colorimetric correcness. For a design that combines CSS and images, it is important that a color with a particular RGB value is displayed consistently regardless of the sourcestyle sheet or image fileof the color value.

Given the same RGB values, the colors specified in CSS, HTML, JPEG, or GIF have traditionally matched. Everyone has just taken it for granted. (Colors are not represented as RGB internally in JPEG, but everyone uses the de facto color conversion of libjpeg from the Independent JPEG Group.)

PNG breaks the consistency. When the gamma of PNG images is disturbed but the CSS colors are left untouched, the colors no longer match.

There are at least two natural reactions: trying to opt out of gamma correction or trying to make it so that the PNG images are considered to be in the same color space as CSS colors.
Opting Out

Including the gamma information in a PNG file is optional. It would be reasonable to expect the colors of PNG images to be treated like the colors of GIF and JPEG images if the gamma information is omitted.

Sadly, it doesnt work that way in every PNG-supporting browser. In older versions of Opera and in pre-Tiger Safari, PNG colors dont match CSS colors when there is no color space information stored in the PNG files. Also some old Mac versions of Mozilla and Netscape 6 applied a gamma change to unlabeled PNGs.

It could be argued that a browser is free to guess anything about the color space of the incoming file and, therefore, is free to apply any arbitrary gamma change. After all, no standard mandates that in the absence of gamma information PNGs should be treated color-wise in the same way as GIFs and JPEGs. Still, treating the colors of unlabeled PNGs differently from the colors of (unlabeled) GIFs and JPEGs makes no sense.

Opera 7, the Mac version of Opera 6 and Safari 2.0 on Mac OS X 10.4 fix this problem and make the colors of PNGs that dont carry color space information consistent with CSS colors. Even though Opera 7 and Safari 2.0 behave reasonably with unlabeled PNGs, the old versions continue to be out there.

Of the various PNG-supporting browsers, Safari on Mac OS X prior to 10.4 is the most prominent problem: It applies a gamma change to unlabeled PNGs. This means that even unlabeled PNGs are no good those who want consistent colors between images and CSS in Safari on Mac OS X 10.3 and 10.2.

The gamma information and other fancier color space information can be removed using pngcrush: pngcrush -rem gAMA -rem cHRM -rem iCCP -rem sRGB infile.png outfile.png
Making the Color Spaces Match

In theory, one could try to use the color management features of PNG to make the colors match with CSS colors. However, in practice this does not work and can even make matters worse, because what is said about color in the specifications is not generally implemented.
sRGB

When you touch the issue of color values in a formal specification, you are supposed to somehow define the meaning of the values. The easy way to describe the meaning of color values would be this: The color values are passed to the Windows graphics API. Authors should pick the color values in such a way that the intended appearance is achieved on an average PC. Of course, that definition wouldnt look good in a specification that is supposed to be precise and platform-neutral. It would look much better if there were a normative reference to a formal color space definition.

Some people working with color issues realized that it isnt realistic to try to force Windows PCs to do color management. sRGB is a color space that models an average office PC with a usual mediocre CRT.

When a Windows PC or a Linux box is said to be an sRGB system, it is important to realize that these device/software combinations are not explicitly engineered to conform to a specification called sRGB. Instead, the specification is designed to conform to the systems! However, not all PCs are the same, so its not like all PCs have an exact common color space. sRGB is just an approximation of an average case.

Also, when it it said that a Mac is not an sRGB system, it is important to realize that a Mac can be configured to be one. It just might be that a Mac owner with a fancy Apple flat panel screen doesnt necessarily want his/her display to emulate a mediocre office CRT.
sRGB in the CSS and PNG Specifications

According to the CSS2 specification, the CSS color values refer to the sRGB color space. In practice, however, all browsers except Mac IE 5 with ColorSync enabled (disabled by default) seem to just treat the CSS color values as values in whatever color space the system color space happens to be. Still, it would be reasonable to expect the colors of an sRGB-labeled PNG image to be treated consistently with CSS colors.

Again, it just doesnt work that way in practice.

The PNG 1.0 specification, which is a W3C Recommendation, didnt have an unambiguous way of indicating that the color space of an image is sRGB exactly. In theory, the result should be close if the gamma value of the image is set to 1/2.2. However, in practice the colors of images labeled that way do not match CSS colors in eg. Windows IE.

The PNG 1.1 specification, which is not a W3C Recommendation, added an unambiguous way of indicating that the color space of an image is sRGBthe sRGB chunk. There are problems, however.

* In Mac IE 5 the colors of sRGB-labeled PNGs dont match CSS colors when the ColorSync support is disabled as it is by default.
* Safari applies a gamma change to sRGB-labeled PNGs but not to CSS colors making the colors not match.
* The CSS2 specification doesnt specify which ICC rendering intent should be used when mapping sRGB colors to the system color space. PNG 1.2, on the other hand, allows the rendering intent for the color space conversion to be defined. If a browser does color space conversion using ICC profiles and the rendering intent it uses for the CSS colors is different from the rendering intent defined in a PNG file, the resulting colors might differ even if the original colors were the same and in the same color space.

Impact on Authoring

[Image of a nutshell] There is no way of making PNG images that match CSS colors in all PNG-supporting browsers. This reduces the usefulness of the otherwise excellent image format. If the image colors and the colors defined in a style sheet need to match, it is safer to use GIF or JPEG. If you want to use PNG and dont care about older browser versions (pre-Tiger Safari in particular), the best course of action is removing all the color space information from the PNG files. If you only want a match with the background color, you could make the background a PNG image as well.

However, in cases where matching image colors with surrounding page colors is not of utmost importance, PNG images are safe to use. This not only means cases where the image is an independent rectangle but also cases where alpha blending is used.

[Image showing alpha-bended icons with and without gamma change] For example, fiMUGs list of upcoming events has anti-aliased icons that can appear on two different backgrounds. Since it is a page of a Mac user group, we went ahead and used full PNG alpha transparency even though Windows IE doesnt support it. Camino and Safari render the CSS background colors the same way but pre-Tiger Safari changes the gamma of the icons. However, thanks to alpha blending, the gamma change is mostly harmless in this case. (In the image, Caminos rendering is on the left and pre-Tiger Safaris is on the right.)
How did it come to this?

PNG gamma correction was supposed to make color consistent across platforms. However, the implementors werent sufficiently warned about the effects of gamma correction in situations where the image is not in isolation, so instead of fixing the original problem PNG gamma correction created a new, even worse problem: inconsistent color within a Web page.

The emphasis was put on doing some change to the gamma instead of emphasizing consistency with the surrounding colors in browsers. Also, guessing the gamma based on the operating system was presented as an acceptable method in the specification itself. That is, doing something was emphasized over correctness and consistency.

Im sure many designers would agree that color consistency within a page is more important than color sameness across different computers or operating systems. Id like to ask implementors of applications that deal with PNGs to pay attention to consistent color handling and not to do arbitrary gamma changes when the gamma properties of the output device are just guesses. Also, please treat the colors of PNGs with no color space information the same way you would treat the colors any other image file that doesnt carry color space information.
0
this weekend has been amusing.
me: you know the ones who just try to suck your face off?
kelly: oh dude, that's nothing. i once knew a guy with a terrible overbite. he kissed with ALL of his teeth.
me: hahahaha
kelly: every. last. one.
oh, and you got a little bit of nerd on your face.
laceyglove:
I dated this guy in highschool whom i had always liked, prior to dating, we finally went out and he kissed awful. He would move his tongue around like a dog lapping up water. Gross! Oh, and it gets better, he gave me a HUGE hickey. It was about 3 inches long(no exaggeration) Ii hate hickies! We've all had the gross kisser i guess.

Take care! kiss
0
mars volta last night.
ended up going by myself because matt is an asshat, but whatever. considering i sold my extra tickets for last night and on tuesday, i got to go to both shows for free..and made five bucks. i fucking rule.
in the end i'm glad i went by myself, no one that i could have taken at the last minute would have...
Read More
VIEW 7 of 7 COMMENTS
xsuicideboyx:
Well, you shoulda sould me a fukin ticket lady!!!!lol. I been a fan since at the drive in !!!i got fiked over for tickets from an ex girlfriend...who needs em! I'll go to rome, but only if i get to wear a fake pope outfit, and terrorize the vadican!!!
ps..thanks for the kind words!
pps. how come i didn't see you at the mike giant show at the nomad last night?
atmosphericchaos:
I envy you for being at that show as they aren't coming to the West coast. ah well. Anyways I put up another art piece so go have a look see if you care to.
0
today sucked.
work was too long, and i totally wasn't needing to be there.
however upon returning home i discovered a package left by the fedex guy that made my day.
BURNINATING THE TOWN!
mars volta tomorrow, sweeeet ass.
uhm...
i think saturday i might go get tattooed.
on the back of my right calf.
but don't tell my mum.
VIEW 3 of 3 COMMENTS
missredcherry:
I love getting packages although I dont get very many at all.

Yeah get tattooed. What are you thinking of getting?
I promise I will keep it a secret wink
xsuicideboyx:
Hi fakeplastic lady!!!!! its been a while, just wanted to say hi.....so hihihihihihkihiihihihihiihihihih

mars volta? lucky bastard!

shhhh im under your bed...dont look
0
VIEW 3 of 3 COMMENTS
deanna:
melodramatic is one of the best words ever.

love the photo too!
laceyglove:
Europe?! Oh how i envy! Are you sure you want to drop out of school?
Glad you are feeling better. Take care!

And love the picture love
0
well..its been an interesting few days.
i've come to the conclusion that i will always be the other woman.
that's my title. its what i do. never the woman, just the other one. the quick fuck on the side because i was always damn good.
fucking christ, you're clawing at my heartstrings.
anyways..
so interesting few days..
and i really dont have anything to say...
Read More
vancleef:
({)

MSN HUG!

Your sleeping in my arms tonight. Thousands of miles away....
0
the wife found a boy.
its over.
*shrugs*
now what?
VIEW 4 of 4 COMMENTS
shovelface:
I say, teach her a lesson. Get a boy of your own. He has to be cute...real cute, if you're going to make her all jealous. Make sure he's cuter than her boy.

He should be nice. Overwhelmingly nice. So nice that he couldn't possibly exist. Once you've found said boy, parade him around in front of her, and always refer to him as "The Boy". You need to be constantly making out with him, so much so, that she can't even hardly stand to talk to you, for fear that you're going to start having sex with him right then and there.

After about a month of this, she will see the folly of her ways, and realize just how sick boys make her feel. She'll dump her boy and come crawling back to you.

Now if only you could find a cute, nice, available boy with nothing better to do thatn make out with a girl for a month... hmmm, if only... oh well, I guess it's a crappy plan anyways.
missredcherry:
chocolate, crisps and a new tattoo
that will make your world a much better place smile
0
holy shit.
best day ever.
in the history of days ever.
everything's comin' up milhouse!
er, i mean.
missredcherry:
Yeah
Its great when you have a wicked day.
Tell us more

love love
PS. i noticed you have the start as one of your fav bands. i may be being really stupid but is that the band that formed with some members of human waste project? If not remember i am crazy and ignore the comment surreal
atmosphericchaos:
good to hear.
glad things are well.
I gotta run.
talk to you soon