Quote

"For like a shaft, clear and cold, the thought pierced him that in the end the Shadow was only a small and passing thing: there was light and high beauty for ever beyond its reach." -- J.R.R. Tolkien

Wednesday, August 27, 2014

Mauldin: A Nation of Shopkeepers


John Mauldin has another piece relevant to the philosophical side of the discussion amongst Keynesianism and Austrianism (or neoliberalism, from Adam Smith's point of view).  The most important point that I picked out of this piece is the distinction between productive and unproductive labor.  In order for growth of a nation to occur, the labors of the people must be productive towards the end of increasing efficiency and productivity, such that objects which form the core of a higher standard of living can be produced at lessened cost.  If technology can be a catalyst for making this happen, then it is a positive thing regardless of the chaos that it sows in the short term.  Also by extension, any government policy which does not further this end by supporting and encouraging (or at the very least, not inhibiting) productive labors is a worthless political pursuit and should be abandoned immediately.   Programs like welfare, which breed torpor and stupidity into the very core of a population, should not be supported on a federal level.  Similarly, rules that provide special privilege for businesses and corporations also should be removed, as these breed complacency and stupidity on a corporate scale.  Capitalism only works when it is free to weed out failure in a society.  People, businesses, and nations must innovate or die.

Wednesday, July 30, 2014

Financial War

Bloomberg posted a curious article on economic and financial warfare as the new mode of preference for warfare today.  It's effects are limited to globally-minded and globally-integrated nations, but it can be very effective in certain circumstances.

 The original article is here: http://www.bloomberg.com/quicktake/financial-war/

Saturday, June 21, 2014

What's God got to Do with Religion?

I found an excellent article in "American Interest" written by Charles Mathewes.  It addresses the rough relationship between religion and modern liberal society.  Be prepared to use Google support for definitions though for words like "ebullient."


Saturday, May 31, 2014

The real Middle Earth

I found a great article in the BBC about Tolkien's inspiration for Middle Earth, and it is in Switzerland.


http://www.bbc.com/travel/feature/20140523-in-alpine-villages-hobbits-lurk

Friday, May 23, 2014

ESAPI properties in Eclipse

Since I could not find any clear direction on where the place the all-important "ESAPI.properties" file, for the Enterprise Security Application Program Interface Java library, I am going to post an image here in the hopes of making it easier for folks.

It goes in the "src" folder (and NOT inside any package in the src folder)

ESAPI, security, Java, properties, location, directory, file, filepath, path: see below:


Saturday, May 17, 2014

Environmentalists Rejoice

Here is a company that has an idea that if it takes off could revolutionize the green energy movement.  This company is green and economically feasible.

Their idea is to use manufactured panels integrated with solar cells to make new roads, highways, and city streets.  The price is still a bit more than concrete, I believe, but this company has incredible potential.  This would turn surface area of the Earth that is presently unused for energy production into usable energy production, among other benefits.

If you believe in practical green energy that does not stifle economic growth, this is the project for you.  This is a project that I would invest in if I was not already pouring time and money into my own startup.

Editors note: I miscommunicated some here.  The point is to spread the good idea, not to press you to invest yourself!  If you feel so inclined, invest, but do not feel obligated to do anything more than share this idea with more people.

http://www.fastcoexist.com/3029874/fund-this/these-solar-roads-could-power-the-entire-country
https://www.indiegogo.com/projects/solar-roadways#home

Saturday, April 12, 2014

Largely Unreported Snowden Interview

As a Libertarian, I feel that it is necessary to forward this information in a public forum, as it is imperative that all sides be heard in the matter of Edward Snowden and the NSA.

Not that I have changed my opinion of Mr. Snowden, for he did violate his integrity and word regardless of his intention, but I do believe that good will come of this, despite the immediate damage that his leaks did to the NSA's capabilities and reputation.

I have often asked myself over the past few months, "What would I do in Edward Snowden's shoes?"  And I know that I would not put my intellectual effort toward such an ignoble goal, and as such I would resign quietly without violating whatever agreements would bind me.  Sadly, that would not result in the profound change that Mr. Snowden sought, but my integrity is worth more to me than public good.

Sunday, April 6, 2014

John Mauldin: When Income Inequality Isn't

Here is another incredibly impressive article by John Mauldin.  This man has more access to data than almost anyone I know of.


Saturday, April 5, 2014

Afghan Elections

I found a news article on Fox News that contains some very encouraging news.  There is one Afghani woman in particular that this article quotes that I want to honor in particular.

"I'm not afraid of Taliban threats, we will die one day anyway. I want my vote to be a slap in the face of the Taliban," Laila Neyazi of Kabul told AFP.
This is the kind of attitude that contains the raw and potent power to change a nation.  Sadly, I don't know any Afghani people to encourage with this, but this woman is a forebearer of better times for Afghanistan.


Monday, March 31, 2014

Charles Murray's Advice for a Happy Life


I found this charming article in a Wall Street Journal essay section.  I don't normally post fluffy stuff on life, but this has it's serious shades also.  It is an altogether well-written article with some good advice that I need to take to heart.



Tuesday, March 18, 2014

Income Inequality

Another article by John Mauldin citing a large amount of research data that covers a broad spectrum of economics and is not geared towards any one policy paradigm.

I edited out the more personal sections of his letter.  If you want all of the URLs in this article, you will have to run through John's original paper here.


Sunday, February 23, 2014

Cast Java Map to ConcurrentMap

I couldn't find a quick and easy example of this on Google, so here you go:

Using Google Guava:

Map<String, String> map;
ConcurrentMap<String, String> ccMap = new MapMaker().weakKeys().weakValues().makeMap();
ccMap.putAll(map);