Tennessee outlaws offensive imagery  
Thursday, June 9, 2011, 12:14
Posted by Administrator
A law was recently updated in Tennessee making it illegal for any resident to transmit or display any image which causes "emotional distress". Breaking this new law can cause you to receive up to a year of jailtime or fines not exceeding $2,500.

This is a blatant violation of the right to free speech and as some have pointed out the law even violates itself by being so offensive. Just the fact that something like this can get passed into effect has to make you wonder if people are really this misinformed about electronic communication or if they are just trying to pass something so ridiculous that people take notice.

The problem isn't even primarily that the law against obscenity (an undeniable trait of humanity) but that its so up to interpretation that it could be applied to almost anything.

Requirements for breaking this law are as follows:
(a) A person commits an offense who intentionally:

(4) Communicates with another person or transmits or displays an image in a manner in which there is a reasonable expectation that the image will be viewed by the victim by [by telephone, in writing or by electronic communication] without legitimate purpose:

(A) (i) With the malicious intent to frighten, intimidate or cause emotional distress; or

(ii) In a manner the defendant knows, or reasonably should know, would frighten, intimidate or cause emotional distress to a similarly situated person of reasonable sensibilities; and

(B) As the result of the communication, the person is frightened, intimidated or emotionally distressed.


Its all enough to make one relate to a gloomy proposition put forth in a book called Atlas Shrugged over a decade ago:
"Did you really think we want those laws observed?" said Dr. Ferris. "We want them to be broken. You'd better get it straight that it's not a bunch of boy scouts you're up against... We're after power and we mean it... There's no way to rule innocent men. The only power any government has is the power to crack down on criminals. Well, when there aren't enough criminals one makes them. One declares so many things to be a crime that it becomes impossible for men to live without breaking laws. Who wants a nation of law-abiding citizens? What's there in that for anyone? But just pass the kind of laws that can neither be observed nor enforced or objectively interpreted – and you create a nation of law-breakers – and then you cash in on guilt. Now that's the system, Mr. Reardon, that's the game, and once you understand it, you'll be much easier to deal with." ('Atlas Shrugged' 1957)


Hopefully this law will immediately be removed or drastically modified due to all of the attention it has been getting in the last few days.
add comment ( 6072 views )   |  permalink   |  $star_image$star_image$star_image$star_image$star_image ( 3 / 4672 )
Strobe Light  
Tuesday, June 7, 2011, 12:17
Posted by Administrator
Over the last few days I've been working on a small JavaScript/PHP website to turn a monitor into a strobe light.

I used to use a windows program called flasher3000 that would do this same effect but decided it would be more fun just to make my own than to get a windows machine up and running just to strobe for me.

Getting JavaScript to change the background color back and forth was the easiest part, its just a matter of setting document.bgColor to a new value in a loop and then using setTimeout to pause for a few hundred milliseconds. After wrapping that in a function and calling it with an onLoad the page starts running the strobe.

A day or two after playing with this idea I decided to write some PHP to pick a pseudo-random color and speed from an array and send that to the JavaScript so that every time the page is refreshed the strobe likely has different settings.

The complete code for the strobe is below:
<html>
<head>
<title>strobe - refresh to change settings</title>

<?php
// Colors array
$colors = array('ff0000','ffff00','ffffff','00ffff','0000ff','ff00ff','00ff00');
// Pick a random key for a color
$randomColor = array_rand($colors);
// Get the color at that key
$color = $colors[$randomColor];

// Refresh rate array
$speeds = array('16.666','41.666','55','65','75','80','83.333','90','100','110','120','130','140','150');
// Pick a random key for a speei
$randomSpeed = array_rand($speeds);
// Get the speei at that key
$speed = $speeds[$randomSpeed];
?>

<script>
function strobe() {
document.bgColor = document.bgColor == '#<?php echo $color ?>' ? '#000000' : '#<?php echo $color ?>';
setTimeout('strobe()', <?php echo $speed ?>);
}
</script>

</head>
<body onload='strobe();'>

<?php
echo "<font color='" . $color . "'>" . $color . " - " . $speed . "ms</font>";
?>

</body>
</html>

Here is a link to the strobelight itself.

Its worked on all the browsers I've tested it on so far after I debugged a small problem where IE wasn't interpreting uppercase RGB hex values correctly.

Additional things I'm thinking about adding to it are key inputs to cycle through the colors or possibly form the colors themselves. As well as keys to change the refresh rate so that the strobe light can be even more customizable on the fly without having to refresh the page.
add comment ( 6224 views )   |  permalink   |  $star_image$star_image$star_image$star_image$star_image ( 3 / 4775 )
Setting up a Blog 
Monday, June 6, 2011, 12:19
Posted by Administrator
After looking through a bunch of different css templates and spending some time looking through Wordpress as a possible blogging option I suddenly remembered that one of my friends had set up a nice and clean php based blog.

He directed me to the project page on sourceforge for Simple PHP Blog. It was simple to set up and I've only had a few minor glitches with it so far with folder permissions and one page corruption.

I'm going to keep going with this and see how I like it over the next few days.
1 comment ( 7594 views )   |  permalink   |  $star_image$star_image$star_image$star_image$star_image ( 3 / 4875 )

<<First <Back | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 |