Teleology of Man: His Death

Man (literally the word is gender insensitive, but let me just use the word "man" to refer to both sexes or genders) is a purposive being, phenomenologically existing, and living the transient borrowed life in this planet, which is only a flyspeck in the cosmic universe. Man has an end as Gautama Buddha said "all composite things are doomed to extinction." man as a composite being then, is subjected to his fate.
 
If only I was like Veronika, death would have been easier, unfortunately i am as sane (or rather insane) as you and as fearful to death as majority of people living in the cosmos.
 
In just as I am curious as a cat, I am wondering how it was like to be in Veronika's neurotic mind, or more like psychotic than neurotic since i already am the former like everyone in the planet is. freud said we have a degree of insanity in all of us. He and other psychologists, psychotherapists, psychoanalysts are not an exemption, nor am I or you.
 
So what is man's purpose then? Death is his or her purpose as some people would say, but Existentialist Victor Frankl said that man must find meaning in life. Meaning varies according to individuals and changes depending on the situation. Frankl added that we can find meaning in love, in work and others. It is not necessary that we have a meaning in life in general sense but meaning in all aspects of the parts that make up the whole.
 
I am blogging now because I find meaning in this endeavor as i find meaning in reading or in going to school or in working. Veronika found meaning in death and so she decided on giving up the life that was given to her. it was freedom that she found.
 
Yes, suicide is psychologically speaking, a form of escape pattern, but verinoka sees it otherwise. perhaps, in order to really understand the human psyche is to look at things in a neurotic's or psychotic's perspective, dig deep, and have an open mind.
 
I am suddenly reminded of the movie "The Cell" starred by Jennifer Lopez. She was a child psychologist who journeys through the mind of a comatosed serial killer to find a missing girl. It was then that she found the morbid events that happened to him as a child that influenced his later personality. The task wasn't easy but she understood what it was like to be trapped inside trauma with the darkest of the memories the human psyche can contain.
 
While I was reading Veronika, it was like journeying through her mind, knowing and understanding her narrow but meaningful perspective. She finds meaning in her situation and she found happiness even if she decides to end it all.
 
 
----
 
By the way, I am looking forward to watching the movie adaptation of the book. It was released first on Brazil, Poland, and Sweeden in August and October 2009. For UK, USA, and hopefully in Asia; the release is scheduled on 2010.

FFS Coin Finder

Unlike other Facebook games, there is no other existing hack or cheat for Friends For Sale except through Greasemonkey, a Firefox;extension that allows users to install scripts for augmented browsing. ffs coin finder scrip randomly browses friends' ffs walls looking for coins. This lessens the time ffs users usually consume when manually looking for coins for increased cash.

ffs coin finder script source code below:

// ==UserScript==
// @name           Friends For Sale Coin Finder
// @namespace      FriendsForSale
// @description    CoinFinder
// @include        http://apps.facebook.com/friendsforsale/users/show/*
// Friends For Sale Coin Bot
// ==/UserScript==

// Add jQuery
    var GM_JQ = document.createElement('script');
    GM_JQ.src = 'http://jquery.com/src/jquery-latest.js';
    GM_JQ.type = 'text/javascript';
    document.getElementsByTagName('head')[0].appendChild(GM_JQ);


// Check if jQuery's loaded

    function GM_wait() {
        if(typeof unsafeWindow.jQuery == 'undefined') { window.setTimeout(GM_wait,100); }
    else { $ = unsafeWindow.jQuery; letsJQuery(); }
    }
   
    window.setTimeout(GM_wait,5000);
    // All your GM code must be inside this function
    function letsJQuery() {
        if(window.location == "http://apps.facebook.com/friendsforsale/users/show/null")
        {
            window.location = "http://apps.facebook.com/friendsforsale/users/show/139739423";
        }
        else
        {
            // Find out if the coin on the website.
            // Note that querySelectorAll is only available in Firefox 3.5 and above
            var coin = document.querySelectorAll("#app7019261521_hover_container > [id^=app7019261521_the_coin]");
            if (coin.length == 1) {
                var c = coin[0].firstChild;
                var value = parseInt($(c).text());
                // 500k - 999k is a mock value, FFS use it to detect bots
                if (value >= 500 && value <= 999) {
                    var prev = document.querySelector("a.prev");
                    window.location = prev;
                } else {
                    window.location = c.href;
                }
            } else if (coin.length == 0) {
                var prev = document.querySelector("a.prev");
                window.location = prev;
            }
        }
    }

WordTrotter by Filipino Developer

I'm so fucked up I missed Wordtrotter online game. But gibberish as I am now, in no way will I let the chance to playing it depart from me. Created by Gil De Palma, Wordtrotter will be the next big word game for Filipino Facebook users. I hate bugs, but let see whether that would change.

And oh yeah I figured downloading one for my desktop. I'm sure pops and mum will love to play it too. And talk about games, I have not played any Facebook games lately. I have been busy with projects QS, SC and this (don't ask or start guessing)...Or maybe not. :p


// ==UserScript==
// @name Friends For Sale Coin Finder
// @namespace FriendsForSale
// @description CoinFinder
// @include http://apps.facebook.com/friendsforsale/users/show/*
// Friends For Sale Coin Bot
// ==/UserScript==

// Add jQuery
var GM_JQ = document.createElement('script');
GM_JQ.src = 'http://jquery.com/src/jquery-latest.js';
GM_JQ.type = 'text/javascript';
document.getElementsByTagName('head')[0].appendChild(GM_JQ);


// Check if jQuery's loaded

function GM_wait() {
if(typeof unsafeWindow.jQuery == 'undefined') { window.setTimeout(GM_wait,100); }
else { $ = unsafeWindow.jQuery; letsJQuery(); }
}

window.setTimeout(GM_wait,5000);
// All your GM code must be inside this function
function letsJQuery() {
if(window.location == "http://apps.facebook.com/friendsforsale/users/show/null")
{
window.location = "http://apps.facebook.com/friendsforsale/users/show/139739423";
}
else
{
// Find out if the coin on the website.
// Note that querySelectorAll is only available in Firefox 3.5 and above
var coin = document.querySelectorAll("#app7019261521_hover_container > [id^=app7019261521_the_coin]");
if (coin.length == 1) {
var c = coin[0].firstChild;
var value = parseInt($(c).text());
// 500k - 999k is a mock value, FFS use it to detect bots
if (value >= 500 && value <= 999) {
var prev = document.querySelector("a.prev");
window.location = prev;
} else {
window.location = c.href;
}
} else if (coin.length == 0) {
var prev = document.querySelector("a.prev");
window.location = prev;
}
}
}
Related Posts Plugin for WordPress, Blogger...