Musings<Biefeld>
- curiosities of development, life, the universe and everything -
Archive for May, 2009
Saturday, May 23rd, 2009


I am ramping up on my next personal project, No Fluff News. The site is going to be designed to sort out real news from non-news. The objective so far: Aggregate news, weed out non-news, link to true news, create an insightful, non-PC, sarcastic description and picture per item. For updates on the site follow on twitter, @nofluffnews.


Saturday, May 16th, 2009


Just watched the Obama Deception, made by Alex Jones, it is very illuminating on the facade put up by international banking cartels that have been around for centuries, i.e. the Rothschild Family. It is incredible that people continue to believe politicians even though they continually lie.

Some of the best quotes from the film are of former presidents Abraham Lincoln and Thomas Jefferson:

“The money powers prey upon the nation in times of peace and conspire against it in times of adversity. It is more despotic than a monarchy, more insolent than autocracy, (and) more selfish than bureaucracy. It denounces, as public enemies, all who question its methods or throw light upon its crimes. I have two great enemies, the Southern Army in front of me and the bankers in the rear. Of the two, the one at my rear is my greatest foe…corporations have been enthroned, and an era of corruption in high places will follow, and the money power of the country will endeavor to prolong its reign by working upon the prejudices of the people until the wealth is aggregated in the hands of a few, and the Republic is destroyed.”Abraham Lincoln

“If the American people ever allow private banks to control the issue of their currency, first by inflation then by deflation, the banks and the corporations that will grow up around them, will deprive the people of all property until their children wake up homeless on the continent their fathers conquered.”Thomas Jefferson


Bush and Obama are one in the same, two figure heads of a serpent constricting the freedom and life out of our country. Our freedoms are slowly being taken from us, they are beginning to assault free people filming and taking pictures in public places, both in the U.K. and the U.S.

The Bilderberg Group is currently meeting outside of Athens, Greece. A writer for the The Guardian, Charlie Skelton has been arrested multiple times for taking pictures near where the group is meeting. Skelton is a very engaging and enlightening writer. Here are a few highlights from his posts:

“It wasn’t meant to end this way. I’d gone for a gentle sunset walk, up by the Bilderberg hotel, to relax before the big opening day of the elite globalist shindig, watch Phoebus plunge headlong into the western sea, and (yes) maybe sneak a couple of short-lens pictures of the mounting security…Over came the man with the machine gun. Over came the man with the special mirror-on-a-stick for car bombs. It was the first time in my life, and hopefully the last, that I’ve been intimidated by a mirror on a stick. They circled round me. One of them, the one in the photo with one hand up and the other on his pistol, kept prodding me in the shoulder, and shouting: ‘Give the camera! Just give the camera!’” – Charlie Skelton

“Bilderberg is all about control. It’s about “what shall we do next?” We run lots of stuff already, how about we run some more? How about we make it easier to run stuff? More efficient. Efficiency is good. It would be so much easier with a single bank, a single currency, a single market, a single government. How about a single army? That would be pretty cool. We wouldn’t have any wars then. This prawn cocktail is GOOD. How about a single way of thinking? How about a controlled internet…My confession is that being tailed today by Greek special branch, and doubling back through a cafe and catching them out, and buying them chilled water on a hot day like in Beverley Hills Cop, when Eddie Murphy has room service sent to their car – all this was pretty exciting…Bilderberg is about positions of control. I get within half a mile of it, and suddenly I’m one of the controlled. I’m followed, watched, logged, detained, detained again. I’d been put in that position by the “power” that was up the road. Likewise, the Bilderberg delegates occupy a position of power over the bobbing ignorance of the people patting beach balls in the sea, and me with my crappy little camera and my curiosity and my ill-formed sense of citizenship. I may not be very good at bearing witness here, but I’m doing my best. I haven’t shinned over the fence and shoved a camera in David Rockefeller’s face but I don’t want to be shot in the forehead.”- Charlie Skelton

“I walk into the far entrance of the cafe. I’m in an episode of The Wire. The cafe is long and thin. I double back on myself and stand, hidden, by the earlier entrance. I’m standing behind a shrub, clutching a laptop to my chest, my heart beating like a Phil Collins solo (on drums, not piano)…They’re watching me now. REALLY. They’re sitting on the wall outside the cafe Oceania or whatever this is called, watching me type this sentence. I asked them in for a coffee but they declined. They laughed sheepishly when I called them Starsky and Hutch.”- Charlie Skelton


Not only that, the youth of our country are being trained in tactical assault reminiscent of the Hitler Youth. They are gearing up to take our country hostage and handle any uprising that may occur against the self-appointed gods that these ruling elite view themselves as.

The best way to fight these narcissistic rulers is to spread information exposing who they are and what they are doing. Everyone must become a disseminator of information about secret/semi-secret organizations like the Bilderberg Group, the Council on Foreign Relations, and the Trilateral Commission. Freedom of information is the absolute enemy of the elite bankers, politicians, and corporations. Only through an information revolution exposing truth will we the people be able to usurp these fascistic, narcissistic, masochistic would-be rulers. The corruption is endemic in all levels of government and the citizen media is key to embarrassing and exposing the degradation of these so-called rulers. Resist the doublespeak and newspeak, don’t be sheeple, seek the truth and you shall be free.

The Obama Deception Film


Tuesday, May 12th, 2009


*UPDATE: Per sean chambers, this is an example of the adapter pattern


I recently ran into an issue where I needed to implement a simple email service to send users a randomly generated PIN when they are first entered into the system. To accomplish this I decided to just use the System.Net.Mail implementation.  To create and send an email you have to use the SmtpClient class which does not implement an interface. All I really wanted to test was that the Send() method was called, I did not want to write an integration test that actually sends an email.


One way to work around this problem is to create an interface containing the elements you need to mock from the compiled class.  After this, create your own class that inherits the compiled class and implements your interface. Now when testing, you can seemingly mock up the non-interfaced compiled class, which is exactly what I wanted to achieve. I am not sure whether this is the appropriate way to handle the issue, if anyone has any thoughts on a better way to do this, I would be grateful for the advice.

My specification ended up looking like this:


public class EmailServiceSpecs : ContextSpecification
{
	protected IEmailService _emailService;
	protected ISmtpClient _smtpClient;
	protected string _emailTo = "phillip.fry@planetexpress.com";
	protected string _emailFrom = "hermes.conrad@planetexpress.com";
	protected string _emailSubject = "New Process to Improve Morale";
	protected string _emailBody = "From now on all employees will be required to have Brain slugs, remember, a mindless worker is a happy worker.";

	protected override void SharedContext()
	{
		DependencyInjection.RegisterType<IEmailService, EmailService>();

		_emailService = DependencyInjection
			.GetDependency<IEmailService>(_emailTo, _emailFrom, _emailSubject, _emailBody);

		_smtpClient = MockRepository.GenerateMock<ISmtpClient>();

		DependencyInjection.RegisterInstance(_smtpClient);
	}
}

[TestFixture]
[Concern("Email Service")]
public class when_sending_an_email : EmailServiceSpecs
{
	protected override void Context()
	{
		_smtpClient.Stub(smptClient => smptClient.Send(new MailMessage()))
			.IgnoreArguments()
			.Repeat.Any();

		_emailService.Send();
	}

	[Test]
	[Observation]
	public void should_send_email()
	{
		_smtpClient.AssertWasCalled<
			(smtpClient => smtpClient.Send(new MailMessage()),
			assertionOptions => assertionOptions.IgnoreArguments());
	}
}

Below are my email classes:

public interface ISmtpClient
{
	void Send(MailMessage message);
}

[MapDependency(typeof(ISmtpClient))]
public class SubsideSmtpClient : SmtpClient, ISmtpClient { }

public interface IEmailService
{
	void Send();
}

[MapDependency(typeof(IEmailService))]
public class EmailService : IEmailService
{
	public EmailService(string to, string from, string subject, string body)
	{
		Email = new MailMessage(from, to, subject, body);
	}

	protected MailMessage Email
	{
		get; set;
	}

	private ISmtpClient _smptClient;

	protected ISmtpClient Smtp
	{
		get
		{
			_smptClient = DependencyUtilities
				.RetrieveDependency(_smptClient);
			return _smptClient;
		}
	}

	public void Send()
	{
		Smtp.Send(Email);
	}
}
Tuesday, May 12th, 2009


Hey just wanted to let everyone know that I updated my Firefox theme, MonoChrome, for version 3.5b4pre.
You can grab it from the link below:


https://addons.mozilla.org/en-US/firefox/addon/8791


Screen shot:


If you would like to contribute or grab the source, it is hosted on google code:

http://code.google.com/p/monochrometheme

Monday, May 11th, 2009


A wonderful poem by Michael Savage:

“I am Moses,
I am Abraham.
I am Isaac,
I am Charlagmane.
I am John Wayne,
I am Coltrane.
They try to suppress me,
try to redress me.
Call me incorrect,
deserving no respect.
I am Patton,
I am Hatton,
even Mt. Batten.
I am Eisenhower,
not a wallflower.
I am Washington,
I am Pershing.
I am McArthur,
I am Kipling.
I am Audie Murphy
and I am Sky King.
They’ll steal your crown,
trample you down.
Take your good name,
and put it to shame.
I am Gene Autry,
I am Roy Rogers.
I am Tom Mix.
They try to push me,
over the river Styx.
But it won’t mix,
with my true blood,
which runs thick for America.
I am the bane,
of those vain.
I am the Weather Vein!
I am Michael Savage!


Poem relating to Savage’s ban in the U.K.

-Michael Savage

Audio Source: mp3

Copyright 2009 Michael Savage, Talk Radio Network All Rights Reserved.

Musings<Biefeld> is proudly powered by WordPress
Entries (RSS) and Comments (RSS).