March 13th, 2008 by Dee
Now while I don’t agree with Michael Savage on everything he says, he commonly uses the term “Red Diaper Doper Baby” somehow this wasn’t in any of my history books.
The first definition I found was:
“The children of leftist intellectual baby boomers, raised from birth on Marxism and a drug tolerant environment, and now in places of political and intellectual influence.”
BUT a conversation between Michael Savage and Robert Stacy McCain of the Washington Times seemed to explain it a little better:
“Red-diaper baby” is a term used to describe children in the 1940s and ’50s who were “steeped in communism, raised by commie parents,” Mr. Savage said. “I tried to figure out what took an ordinary communist and turned him into this psychotic type of mad-dog leftist we have today. … I believe that when you take the red-diaper baby, and realize he came of age in the ’60s … and you put that drug into the mind of the red-diaper baby, presto, you have the RDDB, who is the current anti-American fanatic.”
March 13th, 2008 by Dee
I need to put together a montage of Jesus, God, the Trinity etc. in cartoons. It’s an ongoing project so any episode/time information would be awesome.
Family Guy
The Simpsons
March 13th, 2008 by Dee
Okay, so I was playing around with the previous test by the highly intelligent FSCreations, Inc (that was sarcastic their morons) and decided to take it one step further. I just inserted a simple line to convert the “kindergarten encryption” of the answers to the results. Also I think because most of the people in my class read this blog and the average grade for the test was a 100 vs. the average 85ish he no longer seems to use their services.
THEANSWERSSTRING += "\n" + (parseInt(answerIndex) + 1) + " " + newString;
if (answerIndex == 24)
{
alert(THEANSWERSSTRING);
}
Once you have done this it gives you:
March 12th, 2008 by Dee
In the same data set I was working with last week of 1 Million Lines/Records. I needed to delete every row that contained the word PointA. Here is a simple VB Excel Macro that will delete every row containing “PointA” in column A. It could easily be adjusted for any need to delete a row in excel containing a specific word.
Sub DeleteRowsCcntainingWord()
Dim c As Range
Dim SrchRng
Set SrchRng = ActiveSheet.Range("A1", ActiveSheet.Range("A65536").End(xlUp))
Do
Set c = SrchRng.Find("PointA", LookIn:=xlValues)
If Not c Is Nothing Then c.EntireRow.Delete
Loop While Not c Is Nothing
End Sub
March 12th, 2008 by Dee
Again I make no validity to this information. Everything displayed on this map was obtained from The Appalachian Trail Conservancy. More information about the Appalachian Trail can be found there as well as White Blaze (A community of Appalachian Trail Enthusiast). The Appalachian Trail is commonly referred to as the A.T. or White Blaze.
For those who don’t the A.T. stretches 2174 miles from Georgia to Maine. It is marked by 2-by-6-inch (5-by-15-cm) white paint blazes (hence White Blaze).
March 10th, 2008 by Dee
I had over 1 Million GPS Coordinates That I needed to turn In 50 thousand. Here is a simple macro that you can use to dwindle down thoes records. This macro will only delete every other row so I had to run it quite a few times, but does the trick! It takes quite a while over 50000 records to grab a good soda and sit back.
Sub everyotherrow()
For i = 50000 To 2 Step -2
Rows(i).Delete
Next i
End Sub