crit?: 3
crit?: 2
"The map is not the territory"
-Alfred Kozybski
Vladimir Lenin
Michel Foucault
crit?: 1
...
i was wiki'ing like crezzy:
hegelian dialectic
diocletian
sassanid
nicomedia
santayana
autocrat
hedonism
epicureanism
bröstknull
maslow's hierarchy of needs
dyspareunia
piquerism
gremlinium
I used to draw something, then flip through a dictionary or thesaurus and find a term i liked. i spend many hours wiki'ing so i thought i'd write a path of terms down as they tickled my fancy. a firefox plugin to map wiki spidering would be great. turn it on, wiki for a few hours, pump out a chart of topics and tangents
crit?: 3
the opening was a success, i'll upload pics later. we showed up pretty late as we were in sacramento doing a father's day thing @ my sister's new house. chris jehly called me while we were on the road to figure out why i wasn't at the opening. he told me the good news that my munny had sold the day before the opening!
talked with some nice people and was more relaxed than normal. i normally get pretty nervous before openings, but ern gave me 1/2 a valium that calmed me down and turned me chatty.
crit?: 1...
check out greg taff's css rendr page. renders css + html on the fly very cool. he draws as well. i thought that was neat, someone else who nerds out over code AND makes art.
added some spam prevention to gallery:
$badwords=array("casino", "viagra", "adult", "http", "www");
$is_bad_words=0;
foreach($badwords as $key => $val)
{
if(stristr($comment_text, $val))
{
$is_bad_words++;
}
}
if (!strcmp($submit, "Save")) {
if (strlen($comment_text) > 1024) {
$error_text = "The comment was too long: ". strlen($comment_text) ." characters";
} else if ($is_bad_words == 1) {
$error_text = _("Sorry but you have tripped a spam filter.");
If you didn't read this interview with Michael Berg on Cnn, please do so before it is pulled.
...
I forgot to show you guys this artist. I think you' really like that work, jules.
crit?: 1
working on getting page transparency without image transparency, so that my layout elements can be transparent only.
filter:alpha(opacity=80);
-moz-opacity:.80;
opacity: 0.80;
I'm doing some neat things that aren't fully supported by safari or ie, but they will be, and they work in firefox right now.
ex:
border-top-right-radius: 1em; <- css3 proper
-moz-border-radius-topright: 1em; <- for firefox/mozilla
-khtml-border-top-right-radius: 1em; <- this is supposed to make safari work
this makes me appreciate the wider screen of my macbook. less expose'n around.
crit?: 3