Saturday, November 8, 2008

Some Post-Election Thoughts

I wrote this to my sister a few days ago. I won't paste the mail in its entirety, but it pretty much sums up my thoughts regarding the debacle that was our 2008 Presidential election:

Last night was an utter abomination for those of us who are conservative in our politics. It seems like our country is giving so-called "right-wingers" an ultimatum (or perhaps, just the finger) regarding our views. The amendment in Colorado which would have made the definition of "human" as starting at fertilization was TROUNCED (27% support), and the other governmental reforms were overturned. It was pretty sad. In addition, we now have a socialist-controlled government. We'll see what happen over the next few months/years. It's likely to get harder.

We Christians (the right-wing voters, including myself) have always assumed we have a "safety net" in our life here. Let's face it: this is the land of the free. We have First Amendment rights, don't we? We have freedom to worship as we please, and to tell people the truth without any consequences. This is America--we are a Constitution-led federal republic. But these words (the Bill of Rights and Constitution) are only words, unless they are truly believed by those who enforce them. The new government doesn't (and I'm not convinced the Republicans do either). We often hear about the Constitution as the be-all and end-all for our life, liberty, and pursuit of happiness. It's an amazing document, but...it's still just a document. The Constitution gives us no more rights than the government is willing to provide. Unfortunately, the new government will likely revoke what liberties we have.

For Christians, however, the Constitution, though a wonderful example of what God-fearing men can do with a government in a depraved world, is of middling importance. Will we face higher taxes over the next few years? Yep. Will we face increasing energy costs? Yep. Will we see our "free speech" rights restricted? Yep. But what does this mean for us as God's children? Well, it means life is going to be harder...no doubts about that. But our calling from the Lord remains: "'...make disciples of all the nations, baptizing them in the name of the Father, Son, and the Holy Spirit.'"

But let's face it, we have no guarantee in life which says we will get the majority of our earnings, or have access to cheap energy, or have local grocery stores filled with food. Our prosperity in this country has given Christians (and believe me, I'm 100% included in this) a false sense of security regarding our life and comfort here. Yeah, we might have some opposition when talking to people about Jesus, but this is America. We can still attend the church of our choice without penalty. We can still talk to people on the street without getting arrested. We can still shop at the local store and buy what we need for our existence. We can work and take home the fruits of our labor. We live in America--we can say we trust the Lord to provide, but...we don't necessarily need to back it up with real faith because...this is America.

Please don't misunderstand, I'm not knocking America. I don't want to live anywhere else, and I think the Founding Fathers had insight into the nature of power-based corruption and did what they could to minimize it. Unfortunately, their dream of America is flawed and unsustainable. Depraved mankind will not allow it.

I think American Christians have viewed their lives here as a form of "heaven on earth," where "live and let live" has been the norm. There's nothing wrong with prosperity and wealth--America has done more for helping raise the standard of living worldwide than any other country. America has also sent out more missionaries than any other nation. We have a rich heritage to be thankful for. But...this isn't heaven and we can't assume it will always be this way. And when life takes a turn for the worse, we should respond with faith and trust in the Lord's ultimate provision for our families and for the time when He will finally put to death all evil and sin. This is our hope and our

There's a law in physics which says, "everything is moving toward decay." Entropy is built into our reality--the heat given off by the sun for the growth of our crops (and for boiling Las Vegas ;) reveals the reality of its terminal state. Our world is dying and will continually move toward chaos and evil. The only real force in place stemming the tide is the Lord--not lower taxes, First Amendment rights, or limited government.

This is something which has slapped me hard in the face over the last 24 hours; the verse in Psalm 20:7 says, "Some boast in chariots, some in horses, but we boast in the name of the Lord our God." This has really challenged me to abandon my preconceived disposition to a comfortable life here. I don't think it's wrong to desire a peaceful life, but the Lord is ultimately in control...not our government.

Anyway, don't be troubled. The Lord is OUR shepherd and He will provide for our needs. The government will tear away every pound of flesh it can, but we have a future HOPE which cannot be taken from us.

Friday, October 17, 2008

Everlasting Lovingkindness

Reading Psalm 136 (ESV), I see this:

Give thanks to the LORD, for he is good, for his steadfast love endures forever.
Give thanks to the God of gods, for his steadfast love endures forever.
Give thanks to the Lord of lords, for his steadfast love endures forever;
to him who alone does great wonders, for his steadfast love endures forever;
to him who by understanding made the heavens, for his steadfast love endures forever;
to him who spread out the earth above the waters, for his steadfast love endures forever;
to him who made the great lights, for his steadfast love endures forever;
the sun to rule over the day, for his steadfast love endures forever;
the moon and stars to rule over the night, for his steadfast love endures forever;
to him who struck down the firstborn of Egypt, for his steadfast love endures forever;
and brought Israel out from among them, for his steadfast love endures forever;
with a strong hand and an outstretched arm, for his steadfast love endures forever;
to him who divided the Red Sea in two, for his steadfast love endures forever;
and made Israel pass through the midst of it, for his steadfast love endures forever;
but overthrew Pharaoh and his host in the Red Sea, for his steadfast love endures forever;
to him who led his people through the wilderness, for his steadfast love endures forever;
to him who struck down great kings, for his steadfast love endures forever;
and killed mighty kings, for his steadfast love endures forever;
Sihon, king of the Amorites, for his steadfast love endures forever;
and Og, king of Bashan, for his steadfast love endures forever;
and gave their land as a heritage, for his steadfast love endures forever;
a heritage to Israel his servant, for his steadfast love endures forever.
It is he who remembered us in our low estate, for his steadfast love endures forever;
and rescued us from our foes, for his steadfast love endures forever;
he who gives food to all flesh, for his steadfast love endures forever.
Give thanks to the God of heaven, for his steadfast love endures forever



Think about these statements for a second: ...to him who struck down the firstborn of Egypt, for his steadfast love endures forever...

This doesn't sound like our definition of love, does it? Here we see God enacting judgment against the Egyptians, by striking down their firstborn. Here's how Webster defines love (the first of several): strong affection for another arising out of kinship or personal ties

Do you ever wonder if our definition of love falls dramatically short of reality?

Saturday, October 11, 2008

Dynamic Inheritance in Perl

Ok, I discovered this little tidbit while working on a relatively extensive project in Perl. I came across an issue where I had several OS-based "abstract" classes written in Perl (yeah, I know -- OOP in Perl is nothing but trouble), and I needed to inherit from one of them. The trick, however, was to do it dynamically, depending on the OS I was currently working on.

Casting scalars to functions and even classes is a pretty simple thing.

Consider the following example in foo.pl:

#!/usr/bin/perl

my $func = shift;
my $result = &$func(@ARGV);
print "$result\n";

sub add {
my ($x, $y) = @_;
return $x + $y;
}

sub subtract {
my ($x, $y) = @_;
return $x - $y;
}


The result of executing this code is fairly simple:

# perl foo.pl add 1 2
3
# perl foo.pl subtract 2 1
1

It's also possible to cast a scalar to a package/class type, allowing more flexibility on which objects or modules are called at run time.

Consider the following two files, foo.pl, bar.pm, baz.pm:

foo.pl:

#!/usr/bin/perl

my $pkg = shift @ARGV;
require "$pkg.pm"; # only load the package specified on the command line

my $class_ref = $pkg->new();

$class_ref->to_string();

bar.pm:

#!/usr/bin/perl
package bar;

sub new {
my $proto = shift;
my $class = ref $proto || $proto;
my $self = {};
bless ($self, $class);
return $self;
}

sub to_string {
my $self = shift;
return "bar says hello!\n";
}

1;

and baz.pm:

#!/usr/bin/perl
package bar;

sub new {
my $proto = shift;
my $class = ref $proto || $proto;
my $self = {};
bless ($self, $class);
return $self;
}

sub to_string {
my $self = shift;
return "baz says hello!\n";
}

1;


Now, execution looks like this:

# perl foo.pl bar
bar says hello!
# perl foo.pl baz
baz says hello!


Of course, there are some severe consequences of doing such practices. But, in my opinion, none of them compare to what else you can do with Perl's "cast-ability."


Consider the following hiearchy: Class linuxFoo is a class, specific to the Linux OS. Class solarisFoo is also a class, specific to the Solaris OS. Class Foo wants to inherit from either, but only does so in accordance to the OS it's currently running from. Here's the code:
linuxFoo.pm:

#!/usr/bin/perl
package linuxFoo;

sub new {
my $proto = shift;
my $class = ref $proto || $proto;
my $self = {};
bless ($self, $class);
return $self;
}

sub to_string {
return "This is Linux-based functionality!\n";
}

1;

solarisFoo.pm:

#!/usr/bin/perl
package solarisFoo;

sub new {
my $proto = shift;
my $class = ref $proto || $proto;
my $self = {};
bless ($self, $class);
return $self;
}

sub to_string {
return "This is Solaris-based functionality!\n";
}

1;

Foo.pm:

#!/usr/bin/perl
package Foo;

sub new {
my $class = shift;
my $os = $^O; # this gets the OS, in case you don't know

# require the correct module, and use it as the parent
my $pkg = $os . "Foo";

require "$pkg.pm";
our @ISA = $pkg;

my $self = $class->SUPER::new();

bless ($self, $class);
return $self;
}

sub to_string {
my $self = shift;
return $self->SUPER::to_string();
}

1;


and test.pl:

#!/usr/bin/perl

use Foo;

my $class_ref = Foo->new();

print $class_ref->to_string();


The result of running this script on two different operating systems (linux and solaris) is as follows:

# perl test.pl # on linux
This is Linux-based functionality!
# perl test.pl # on solaris
This is Solaris-based functionality!


Now, why is this a bad idea??


Creating function references on the fly via string values is always iffy. It requires a full-knowledge of the underlying code in order to correctly identify which methods are required. Though it's possible to abstract this out to some extent (forcing function/method names to use a value which is immutable for the system--e.g. the OS type), it still creates a brittle interface in which to work.


Dynamically creating and using modules is likewise a bit iffy as well. Should a module need to be refactored in the future (or is replaced with a different one), this forces the programmer to update the string which is used to create it.


Either way, the ability to use a string value to execute a function or use a module is tenuous at best. Dynamic inheritance, however, is downright dangerous. Users can take objects and randomly redefine their hierarchical structure however and whenever they want. Languages such as Java and C++ (to name a few) prevent this by statically typing their classes at compile-time. This forces the contracts imposed by inheritance and interfaces (e.g. interface methods are always implemented, inherited methods are always present via the parent, etc.).


Dynamic inheritance throws it all out the window. If you have a Dog object, it can randomly inherit from a Wheel object. Not only this, it can inherit from a Wheel after it's already inherited from a Fire Hydrant. Ok, the rule of odd and bizarre inheritance structures is present in all languages. But redefining the structure at any point in the code, without compile-time checks, makes Perl a fun, but screwy and dangerous language to program in.


...of course...some would say not to do OOP in Perl, which is why I'm transitioning to Python...

Reformation Technologies

Well, I've done a few other blogs in a few other places, and this is probably my final resting place. It hasn't been worth paying for the previous services, so I'll work with something free for once.

This blog is devoted specifically to discussing issues of technology and religion, specifically, Christianity.

While I don't necessarily consider myself to be "Reformed," I have been steadily deriving more and more of my theology (as a born-again Christian) from the Protestant Reformation and the early church fathers. Issues such as Calvinism, Amillenialism, Covenant Theology, and other such issues are fair game here.

I'm also a programming junkie, so I will use this blog for discussing various technologies and programming tips, tools, and techniques.

Other posts might be devoted to my family occurrences and whatnot, for those in my family who live farther away.