Saturday, November 19, 2011

Multiculturalism != segregation

This article covers the major differences between multiculturalism as it's practised in Canada versus elsewhere; specifically Europe.

Friday, November 18, 2011

The Commuter


We will absolutely need a car for life in California, as much as I would love to avoid the expense, hassle, and environmental knock-ons. We looked at prices on both sides of the border, and while it was a little more expensive to buy in Canada due to taxes, the added convenience of having a ride from day-one was worth it.

General Government

"Canada's Parliament is more dysfunctional than any of the other Westminster parliaments. No prime minister in any Commonwealth country with a governor general, until Harper, has ever sought prorogation to avoid a vote of confidence. Only in Canada has a government secured the prorogation of Parliament to save itself from political defeat and only in Canada has the governor general been party to it."

Wednesday, November 2, 2011

Inhuman Alien

This is what drives me the most nuts about Japan's attitude towards foreigners: if this had happened to a Japanese person there would be an international firestorm.

In fact it happened to another African in the UK and there is already a proper investigation there. Japan is so disappointing on a human level sometimes.

Monday, September 5, 2011

Eurabia

The myth of "Eurabia".

Saturday, July 23, 2011

Unhappiness

Unhappiness in general is an evolved mechanism to tell us when a change is necessary. For more primitive societies this meant getting up and moving on from where you are, and expanding somewhere new. This is probably how humans were able to conquer the globe so completely in such a remarkably short period of time.

For modern humans, we cannot just pick up and make changes arbitrarily. There is no more space left, and social obligations keep us tied down. We can simulate some of this by changing jobs, getting more exercise, getting a divorce, etc.; but fundamentally yes unhappiness is a modern disease -- one there is no obvious cure for.

Monday, June 6, 2011

Word

Thursday, May 26, 2011

Rationalizing; not Rational

It used to be a giant mystery how many people could be just so completely wrong without ever realizing it. Surely a fact is a fact, and when confronted with contradictory information, a rational person must necessarily change their opinion.

Sadly, it seems that such confrontation appears to only further polarize their opposition. We are not in fact a rational people at all. It also mean that arguing with anyone who holds an opinion, especially when it's not face-to-face where we might hesitate from becoming overly aggressive, is a hopeless waste of time and in fact damaging to your original objective.

So where does that leave us as an "intelligent" race? Are we doomed to forever peer at ourselves from across a chasm of disjoint reality?

Saturday, May 14, 2011

Perspective

Friday, February 11, 2011

Way Back Home

Tuesday, February 8, 2011

Freedom

Monday, January 31, 2011

"Socialism" is the opposite of Capitalism

Anyone who uses the phrase "socialism" as a slur, or "knows" taxes are destructive to "growth", should be forced to discover how contrary their opinions are to established fact in most other developed countries.

It drives me so mad the hear the talking heads spend so much more time on rhetoric when the answer to their questions are only a plane ride (or an internet click) away.

The fact is I've lived in a number of these places, and seen directly how public policy affects peoples' daily lives; and all the number quoting of right-wing think-tanks doesn't remove the fact that societies that work towards social justice and equality are simply better places to live in all regards.

If the US has been successful at creating a dynamic, competitive economy, it's because of hungry, driven immigrant entrepreneurs; not any of the usual right-wing canards.

Thursday, January 20, 2011

User-space C++ application tracing on Fedora using Systemtap

Ever since DTrace came out I realized how much that was what I really wanted to do whenever my program was doing something other than what I assumed it was doing. "Tracing" -- I want that.

Debugging is fine; but you need to have debug symbols, you need to pick the right spot in the code to break at, you have to keep manual track if you're tracing a long-running execution, and real-time applications may not play nice when paused for arbitrary periods. Often I would want to not follow a thread of execution up and down its call stack -- rather I'd be interested in the "cross-cutting concerns" -- how a certain variable changes over time.

DTrace will never be coming to my favorite platform (GNU/Linux), but there is a similar library called SystemTap for Linux, which has had the Linux kernel instrumented for a while, but just recent has allowed tracing in user-space programs. I think you will need Fedora 14 to run user-space traces; at least that is what I am using. With the appropriate setup you can start tracing your own C++ applications without modifying the source.

SystemTap uses "static" (preprocessor macro-based source code) probes that are compatible with DTrace; so if you decide to mark-up your source with these macros (as Java, Python, MySQL, et al. are) you can use DTrace or SystemTap depending on your platform. These probes are turned into no-ops when not in use, so they are very fast. However the usage that I am interested in is ad-hoc tracing for the purpose of debugging or simple profiling. Thankfully for this case all you need is debug symbols.

Once you have SystemTap installed, and your program compiled with symbols, you can write your custom probes. The syntax of the probes is beyond our scope, but you can read about it here. Instead I will post a simple "hello world" demo as follows:


#include < iostream >
#include < vector >

using namespace std;

namespace Baz
{
struct Foo
{
int i; int n; float f;

Foo() : i (0), n (0), f (3.14) {}
Foo(int a, float b) : i (a), n (0), f (b) {}
Foo(Foo const &c) : i (c.i), n (c.n), f (c.f) {}
~Foo() {}

int dolart () { f += i; f /= 3.14; return 0; }
int dofizz (int a) { n = a; i += n; return n; }
};
}

int main()
{
vector < int > test;
vector < Baz::Foo > list;

for (int i=0; i<5; ++i)
{
test.push_back (i);
list.push_back (Baz::Foo (i, 1.1));
}

vector < Baz::Foo >::iterator i = list.begin();
vector < Baz::Foo >::iterator e = list.end();

for (int n=0; i != e; ++i)
i->dolart (), i->dofizz (++n);

return 0;
}

And if we use the following "tapset" on the code

global lart_count
global fizz_count
global push_back_count

probe process("a.out").function("Baz::Foo::do*").return
{ if ($return == 2) printf("Foo returned 2!\n"); }

probe process("a.out").function("Baz::Foo::dolart")
{ ++lart_count; }

probe process("a.out").function("Baz::Foo::dofizz")
{ ++fizz_count; }

probe process("a.out").function("vector < * >::push_back")
{ ++push_back_count; }

probe process("a.out").function("main").return
{
printf("dolart was called %d times.\n", lart_count);
printf("dofizz was called %d times.\n", fizz_count);
printf("vector::push_back was called %d times.\n", push_back_count);
}

And run it as follows:

$ g++ -g test.cpp
$ sudo stap probe.stp -c ./a.out

Then we should get the following result:

Foo returned a 2!
dolart was called 5 times.
dofizz was called 5 times.
vector::push_back was called 10 times.

A couple issues I noticed
  • You must run this as root. This is because stap has to compile and load a kernel module that has enormous power to probe your system.
  • Seems to run a bit slow on the simple example. This could be one-time start-up due to compiling a kernel module, or it could be a real-time overhead of not using the cheaper static probes.
  • It seems to spew a lot of strange mangled C++ names for an unknown reason.
  • Constantly respecifying process("a.out") seems redundant. There's probably a way to get around this overhead.