Home
pseudogod420 [entries|archive|friends|userinfo]
pseudogod420

[ website | CST Interactive ]
[ userinfo | livejournal userinfo ]
[ archive | journal archive ]

craziness [Jan. 7th, 2005|05:56 am]
just finished watching the final episode of full metal alchemist. got pretty weird near the end of the series. its kind sad too. =( heh heh. pretty bad ass tho.
link5 comments|post comment

(no subject) [Dec. 27th, 2004|02:27 am]
i did a fat hit of some 20x salvia right now and holy shit

i done a lot of acid and mushrooms before but this was soooo far beyond that

it felt like i was just realizing that i was like a tiny molecule or something

like i was an atom of an object

like part of a shoe or a peice of wood

like i was just finding out how im nothing compared to the bigger picture

i wunder if that what its like when you die

im just staring to come back now


makes me think like how insignificant we are compared to the planets and the universe

thats what if felt like

like how we think about how great we all are, and its not really nothing

that kinda shit can make people go insane

that was some weird fuckin shit


im glad it only lasts a few minutes
link2 comments|post comment

(no subject) [Dec. 21st, 2004|08:16 pm]
i'm posting cool quotes cause i'm bored an suprnova.org is gone for good by the looks of it (well we all hope not). suprnova - R.I.P.




my other sword is vorpal

ooohh...talk nerdy to me baby

not even norton can protect you

im not a geek, im a level 12 paladin

carpe noctem

live in your world, g3t pwn3d in mine

i saw your mom on the internet

u r teh suck!!!1!!1

got root?

Pixelicious

Technosexual

i'm l33t. ask my mom is you dont believe me

\x01A4 == 420 in hex

Linus is my bomeboy
link1 comment|post comment

site info [Dec. 19th, 2004|01:42 am]
people should go to http://www.youngagainproducts.com cause yeah...yada yada yada...and if anyone knows of places to help put the word out let me know.
linkpost comment

its a joke people.... [Dec. 9th, 2004|01:27 pm]
r00ter says:
sung to the beat of pres. of the usa song - peaches:

r00ter says:
move to the country, beat a lot of bitches
....move into the country, gonna beat me a lot of bitches.

r00ter says:
bitches learn from a man, when he beats them with his hand,
how to cook and not talk back,

Kristin says:
wtf?

r00ter says:
and if i had my little way,
i'd beat bitches everyday, cause thats the only way they'll learn

r00ter says:
...more to come...as i think of it

Kristin says:
That's cheovenistic crap, man.

Kristin says:
Don't bother me with that. I don't want to hear it.

r00ter says:
its funny tho

Kristin says:
No it's not.

r00ter says:
i thought of it in the shower

Kristin says:
It's domestic violence from a pig.

Kristin says:
I have friends who had spouses who beat them. It's not funny.

r00ter says:
from whos point of view?

Kristin says:
If you think that's funny, don't talk to me.

Kristin says:
Oh whatever. Don't talk to me.
link2 comments|post comment

944 sucks [Sep. 16th, 2004|08:06 pm]
those people at 944 magazine are fookin retards. i sent in my resume for a few of their openings like the php programmer position. i get some emails back from dee@944.biz (i guess she is the editor in cheif) and she says to come in at 11am on thursday. so i drive all the way to fookin scottsdale. when i get there no one seems to know anything about an interview. some dumb ass jock looking fooks start asking how many years experience i had and shit. i told him a few months. (if it takes someone close to a year to know the ins and outs of php then they are a fookin idiot) so they said something about having open interviews at 4 o'clock for the non-paid intership. i kept saying i got an email from dee saying to come in at 11. but they're fookin stupid. prolly cause i was a little younger than them. one of the assholes took my name and email address, but i guess that was just to get me to leave. thanks for waisting my time fookheads. if anything im prolly overqualified for that job. i should have brought a copy of my resume and seen if that retard knew what any of that shit was. i bet no one there ever wrote an OpenGL or DirectPlay container class. fook those fookin fooks.
linkpost comment

(no subject) [Sep. 16th, 2004|07:46 pm]
There were two distinct communications.
The first message turned out to be a superior catalist for methane.
We now have the potential to produce infinite amount of energy from this clean burning fuel.
This convinced us that we were dealing with a friendly intelligence...

The second message turned out to be a new sequence of DNA,
with rather friendly instructions on how to combine it with ours
heres the technical data on the the whole operation,
basically, the combined DNA sequence was injected into 100 human born...
linkpost comment

ShoppingCartServlet.class [Aug. 31st, 2004|05:21 pm]
Woohoo!!! I think I finally did it. MUHAHAHAHA!!!

* when i decompile it i get this error

"Couldn't resolve all exception handlers in method doPost"

* near the bottom the the generated source file there is this:

if(!"update".equals(s))
break MISSING_BLOCK_LABEL_543;

(im guessing there was supposed to be a label or tag that was supposed to jump to if command is other than "update", which would also mean that it was not equal to "add" or whatever either, because this was like the final check)

* ok - when i try decompiling with the -a or -dis options the generated file has a lot of numbers

// 237 543:return

the line with the "543" is at the very end of the file, right before the ending curly braces.

* first i just commented out the

if(!"update".equals(s))
break MISSING_BLOCK_LABEL_543;

and it seemed to work, but i think it would be better to add a label or something to the reference to 543 and maybe have it break to that line, or maybe just try a return instead of the break statement.

*** i ended up just replacing the break statement to a return statement cause the only thing at the reference to 543 was a return. this seemed to work ok.
linkpost comment

(no subject) [Aug. 31st, 2004|05:15 pm]
To have a servlet create HTML:

1.) Tell the browser that you're sending back HTML
2.) Modify the println statements to build a legal web page

To the the first step:

response.setContentType("text/html");

An HTML response consists of the status line, one of more headers, a blank line, and the actual document, IN THAT ORDER.

---------------------------------------------------

IT says that HTML 3.2 and 4.0 specs require

before the HTML tag


You can use a validator http://validator.w3.org to check for errors.

A servlet that generates HTML can be validated this way unless it uses POST data. GET data is ok because it is attached to the URL.
linkpost comment

notes [Aug. 31st, 2004|04:49 pm]
just so i dont forget, imma write this down here.

JSP & Servlets

* might need to run
c:\program files\apache group]tomcat4.1\bin\startup.bat

* to view tomcat index
http://localhost:8080/
(this port is also in use for just java, and nothing i comiple in java seems to open in the browser on my machine either)

------------------------------------------------
Compile servlets with javac
c:\sun\appserver\jdk\bin\javac.exe HelloWorldServlet.java
------------------------------------------------
When i try to start the J2EE Application Server..
Start Menu->Programs->Sun->Start Default Domain

...it takes a very long time and then says "Domain domain1 failed to startup"
------------------------------------------------
Ok, Servlets seem to work if i put them in the examples directory
http://localhost:8080/examples/servlet/HelloWorld

might be because I added c:\sun\appserver\bin to the PATH variable
------------------------------------------------
I tried changing the regular java port, i thought there might be some kind of conflict happening...
c:\sun\appserver\samples\common.properties
changed port 8080 to 8800

* didn't seem to help
** maybe im chaninging it in the wrong place??
------------------------------------------------
Make sure this is set in the CLASSPATH variable

CLASSPATH = .,dir\servlet.jar;dir\jspengine.jar

*where dir is the directory in which the servlet and jspengine classes are found
**hmm, not sure if i found these files at all??
------------------------------------------------
To change the port number on Tomcat 3.0 edit install_dir/server.xml
and change the line:

------------------------------------------------

JAVA_HOME setting

insert this line at the top of startup.bat (Tomcat)

set JAVA_HOME=C:\Sun\Appserver\jdk

------------------------------------------------
After updating servlets shutdown and then restart Tomcat.
------------------------------------------------
Invoking the Servlet
this is supposed to be common on all servers...

http://host/servlet/ServletName

even if the servlets are in a directory call /servlets/ or /classes/ or /lib/

-------------------------------------------------
Ok, I thought this would be helpful, but Apache didn't seem to like it, maybe I can check the setting on the remote server.

In server-noexamples.xml.config I found some information...

To configure the Apache side, you must ensure that you have the "ServerName" and "Port" directories defined in "httpd.conf". Then, add lines like these to the bottom of the "httpd.conf" file:

LoadModule webapp_module libexec/mod_webapp.so
WebAppConnection warpConnection warp localhost:8080
WebAppDeploy examples warpConnection /examples/

The next time you restart Apache, (after restarting Tomcat if needed) all applications you make visible via "WebAppDeploy" can be accessed with Apache.

*** Apache didn't like this for some reason...
linkpost comment

(no subject) [Aug. 30th, 2004|03:16 pm]
"you cant see me for the fact that inside of my strap"
link21 comments|post comment

(no subject) [Aug. 30th, 2004|04:25 am]
this kicks ass yo!!

http://vnfiles.ign.com/starwars/movies/ws_fettsvette.wmv

its a music video of baddd spellah's remix of fetts vette radio edit. baddd spellah won the mc chris remix contest and chris wrote the song bad(dd) runner about him as the prize. pretty dope.
link2 comments|post comment

(no subject) [Aug. 30th, 2004|04:05 am]
ha crazy, mc chris has a livejournal

http://www.livejournal.com/users/clixnwhistles/
linkpost comment

links [Aug. 29th, 2004|09:59 pm]
http://www.poopreport.com/Contests/Content/Famous/famous_all.html

http://www.flipcode.com/cgi-bin/msg.cgi?showIndex=3dtheory&page=47

http://slate.msn.com/id/2104869/?GT1=4581#ContinueArticle

http://en.wikipedia.org/wiki/John_Carmack

http://www.ubersite.com/cgi-bin/message_get.cgi?user_id=324

hahahaha http://www.ubersite.com/m/40131

http://blather.newdream.net/








Alex Trebek: Burt Reynolds?
Burt Reynolds: That's not my name.
Alex Trebek: (disgusted) All right - Turd Ferguson?
Burt Reynolds: That's just your opinion.
Alex Trebek: I hate my job!

Burt Reynolds- Why don't ya gimmie.. Ape tit for 200
Alex Trebek- It's not ape tit. It's a petit- nevermind. Just do animal sounds for 200. This is the sound a doggy makes.
Sean Connery- Moo
Alex Trebek- No.
Sean Connery- Well, that's the sound your mother made last night.

Alex Trebek- Mr. Reynolds has apparently changed his name to Turd Ferguson.






You see, there are some crybabies out there -- religious types mostly
-- who might be offended. If you are one of them, I advise you to
turn off your set now. C'mon, I dare you. Bock-bock-bock-bock-bock!
Chicken!

-- Homer Simpson
Treehouse of Horror III
linkpost comment

cooler name [Aug. 29th, 2004|08:41 pm]
i got a free webhop, so my site can now be accessed from http://pseudogod.dontexist.com/ but it pops up a little window saying webhop redirection by dyndns.org which kinda sucks but oh well its free.
linkpost comment

dope songs [Aug. 29th, 2004|08:35 pm]
check out these songs yo, i threw 'em on my server for yas

http://www.youngagainproducts.com/alex/Benefit_-_Super_Mario_Brothers_Rap.mp3

http://www.youngagainproducts.com/alex/Benefit_-_Zelda_Rap.mp3
linkpost comment

(no subject) [Aug. 29th, 2004|08:32 pm]
i am a nobody, nobody is perfect, therefore, i am perfect.

T9... Is that the one where Arnold goes back to kill Jason from Friday the 13th or the one where he goes back to protect the whale from Free Willy?

OK - I looked it up on imdb. T9 is the one where Arnold goes back in time to stop Biff from reading the sports almanac.
link1 comment|post comment

(no subject) [Aug. 5th, 2004|04:46 am]
damn, the more people that rate my on FaceTheJury, the lower my rating gets hahahaha, fuck 'em. =) i was up to 7.5 a while ago tho, not too bad i guess.

oh yeah, my uncle michael is a fooking loon...watch out for that one. i did steal his car and cell phone tho so now im mobile. maybe if they lock him in a nut house i'll just keep 'em...

and since my uncle william is all paranoid about ftp (i told him how to secure it but never heard back from him) i prolly wont be updating http://www.mightylemmings.com/cst much anymore. but i copied everything over to http://www.youngagainproducts.com/cst i figured no one would even notice or care as long as we dont use more than a few gigs of bandwidth a month. i really like the name mightylemmings better tho =) the only cool thing so far is the mouse trails. but its got PHP and mySQL alread running so some cool things can come later when i gots the time. for some reason, the youngagainproducts server will only allow one SQL database, which i am currently using for the products and articles...i guess i can just some new tables to it or something. i could move everything over to http://www.thenaturalwoman.com in a /cst folder (its got two free databases for some reason) but i dont know if that name is any better (sounds kinda gay, cause im a dood)

...maybe i can just have http://www.youngagainproducts.com/cst access a database remotely from http://www.thenaturalwoman.com 's server??

hmmm, i should check if PseudoGod.com is taken yet, i might be able to use that to point to the site for free.

*** let me know which is cooler? PseudoGod.com or CSTinteractive.com ???

i still hate these new servers tho, they made for stupid people, lunarpages tries to protect them from themselves. but i still have the root account at getyoungagain.com's server muhahahaha...i love that one cause its dedicated, and im in total control, almost like im physically sitting at the box, and its got 100 gigs that'll never be used....

hmmmm..... =) <-- evil grin

but dont buy anything form there!!

that why i was plugging http://www.thenaturalwoman.com and http://www.youngagainproducts.com cause the naturalwoman is my friends moms, so that'll be helping me and her family. and i think we gonna work out some deal so that we can get a slice of the profit from youngagainproducts (once they give me the credit card account thingie so i can add the whole shopping cart deal). should be up soon. YAP still has the logo from getyoungagain cause i've been lazy =P and naturalwoman needs work, but i've been just changing things without asking lately so it should start pseudo'ed-up soon.

well....sorry 'bout the long, boring rant but i woke up early with nothing to do.

peace out ya'll
link5 comments|post comment

(no subject) [Jul. 30th, 2004|01:54 am]
[mood | blank]

i joined that FaceTheJury thing

http://www.facethejury.com/profile.asp?user_name=pseudogod420


then like this chick said she was interested

http://www.facethejury.com/profile.asp?user_name=russiansta


and this girl sent me an IM saying "come here sexi =)"

http://www.facethejury.com/profile.asp?user_name=Legaly_Blond


...it must all be a scam or something =P

let me know what you think???
linkpost comment

(no subject) [Jul. 28th, 2004|05:14 am]
http://www.novirginsallowed.com/adultswim/articles/sealab.html

http://quizilla.com/users/yermo/quizzes/

http://rtf.phonelosers.org/murphyboard.html

http://www.geocities.com/audrahammer/hesh.html

http://www.mcchris.com/
linkpost comment

navigation
[ viewing | most recent entries ]
[ go | earlier ]

Advertisement