http://youtube.com/user/wickedalex69 http://podblanc.ath.cx/forum1/index.php?action=recentR James aka Aryan Warlord (as admitted on VNNF and in a PM to me:
http://www.vnnforum.com/showthread.php?t=45409This forum is truly screwed up Man, I don't know what's wrong with this forum, but in recent months, I have seen anti-racists post here, Bill White who has a bad reputation with every white organization in America and all kinds of nasty, tasteless and useless comentary on this forum which is tolerated by it's so-called moderators.
The other day, someone posted some interesting info about chemtrails which do indeed exist and myself and others posted gov't documentation regarding this phenomena. So, what happens next? We get relegated to the "Nutspah lounge" and called tinhat wearers.
So, let me get this staright, it's ok to post here if you are from 4chan, destroyers of Hal Turners old site, it's ok to post here if you are Bill White, whi is obviously working with another agenda, but mention chemtrails and now you've got to be a nut?
For some reason I'm not even allowed to log onto the thread to protect my views and statements, after being insulted and called a "jew" by some nobody. VNN really needs to get itself in order. Stop making this the playground of overgrown children.
You can all believe there is a jewisg conspiracy to destroy white people, but chemtrails, now that's just too far from a possibility to be discussed right? Something seriously wrong here.
Close
Comments
R James & Iceman Jew NGO
R James & Iceman Jew NGO alliance-
If you click his Iceman name on Occidental Dissent, it leads to this blog:
http://www.freemediaproductions.info/
FREE MEDIA PRODUCTIONS WAS THE WEBSITE OF R JAMES. I DID THE RESEARCH ON THAT MATTER. IT USED TO NOT BE BEHIND A PROXY REGISTRATION.
http://vnnforum.com/showthread.php?t=55231&highlight=JAMES
http://vnnforum.com/showthread.php?t=58649&highlight=JAMES
http://vnnforum.com/showthread.php?t=55647&highlight=JAMES
Sunday, December 27, 2009
Daryl Basarab : Anti-racist Advocate
Being part Black myself, I realize that the struggle for civil rights is far from over.
Googling myself, I see I've been exposed as a person who helped defend the oppressed from racism out of moral conscience working undercover for the ADL and SPLC. I am glad that I am being recognized and hope that the world ends racism. Glory to America!
http://podblanc.com/brad-w-griffin-hot-boyz-ohopeful-eagleoccidental-dissent-aka...
http://vnnforum.com/showpost.php?p=1086428&postcount=126
Posted by Daryl Basarab at 1:05 PM
========================================================
Friday, December 26, 2008
Writing Database Triggers
First determine what type. "Before," "After," or "Instead of"
Second name the trigger. Because there is room for multiple triggers, you can have more than one execute on a single Insert or Delete command.
eg CREATE TRIGGER NewTrigger
BEFORE DELETE FROM "My_Table"
Third, determine if trigger will apply to the whole table or just to one row.
eg. FOR EACH ROW ... if for whole table but leave it out if for one Row
Forth, insert Database specific code (varies from Oracle to MsSQL) between a "Begin" and an "End" statement.
eg. dbms_output.put('Hellow world')
http://darylbasarab.blogspot.com/search?updated-min=2008-01-01T00%3A00%3A00-08%3...
A point to be made here is that unlike a stored procedure, which is an external application that is then taken into the Database for internal use, the trigger uses its own programming language.
In the c languages, an "if" statements goes like this :
if ()
{
}
but in triggers an "if" statement goes like this:
IF
ENDIF
Posted by Daryl Basarab at 11:51 PM 0 comments
Sunday, December 14, 2008