browse by category or date

I believe this would become the first ever big-screen action movie produced by Indonesian’s Army.

“Panggilan Pertiwi” is roughly translated as “Call of Motherland” or “Motherland’s Call”. From the trailer, I can sort of guessing that the story is about a region of Indonesia that is taken over by rebels. The rebels then declared their independence and separation from Indonesia. The rebels are surely painted as cruel and evil thugs by showing them attacking market, taking down Indonesian’s Flag, and killing unarmed civilian. Then to put down the rebellion, a squad of elite Indonesian Army is sent.

I predict there would be a very huge interest from Indonesian people to this movie. Some would love it, some would hate it. Will people hate this movie because of the Indonesian Army’s past records?

I personally thinks that this is something new and very very interesting. Never before a movie narrates the story of the present-day Indonesian Army. Usually movies about Indonesian Army are narrating the famous battles against Dutch, during the struggling period defending Indonesian’s Independence. Movies like “Serangan Umum 1 Maret” and “10 November 1945” are the good example of those kind of movies.

Does this movie symbolize the changing in the Army’s culture? Changing towards more open/transparent culture? Or this is just a PR work? I don’t think I can answer that question just based on the trailer. So let’s wait for the movie to be released.

But I do hope the movie’s plot will be more than just rebels attack market, killing civilians, elite Army squad is sent, bang-boom-bang, army win, rebels killed, civilians happy. A more complicated plots would add the strength of this movie. Few plots come to my mind:

  1. One of the rebels is having blood-relation to one of the elite squad, causing struggles between personal affections and professionalism.
  2. The squad was ambushed and then the sole survivor manage to complete the mission vanquishing the rebellion in Rambo/Commando style.
  3. One of the rebels is actually a soldier in undercover. While one of the elite squad is actually a mole
  4. The rebels are actually a satan-worshipper cult. They managed to open the gate to hell. All civilians in that region become brain-eating zombies

Hehe.. all my plots are very cliché indeed:D

What do you have in mind/expectations regarding this movie?


Update:
This movie will be aired in TPI (Indonesian TV channel on 27 Dec 2008, 10:30

About Hardono

Howdy! I'm Hardono. I am working as a Software Developer. I am working mostly in Windows, dealing with .NET, conversing in C#. But I know a bit of Linux, mainly because I need to keep this blog operational. I've been working in Logistics/Transport industry for more than 11 years.

Possibly relevant:

Google

How often does in forums/groups discussion people ask things without researching (i.e. googling about) it first? The answer is surprisingly plenty 😀

Well, if you meet them, you could ask them to visit Let Me Google That For You.

So instead of asking you, they could ask the question to that website. All they REALLY need is just typing the question, and then that website will do the searching for them. And yes, the searching is through Google.

About Hardono

Howdy! I'm Hardono. I am working as a Software Developer. I am working mostly in Windows, dealing with .NET, conversing in C#. But I know a bit of Linux, mainly because I need to keep this blog operational. I've been working in Logistics/Transport industry for more than 11 years.

Possibly relevant:

Very often, my “customers” asked me to retrieve records from database and pass it to them as an Excel Document. Previously, I need to manually set the width and wrap each of the columns.

I found it tedious and time wasting (the manual formatting, not the user’s request :D)

This macro below will automatically set all columns to auto-fit and wrap those columns that are too wide.

To add macro to your Excel, follow these steps:

  1. Click Tools -> Macro -> Record New Macro
  2. Give the Macro a meaningful name and description. The shortcut key is optional. If you want to make the Macro available in any Excel in your PC, store the macro in “Personal Macro Workbook”. Click OK to continue.
    Add New Macro
  3. A small floating window will appear. Click the ‘Stop Recording’ button.
  4. Click Tools -> Macro -> Visual Basic Editor (or press Alt-F11)
  5. Complete the code as shown below
  6. Save it. The macro now will be run whenever you press the shortcut key (if you defined it), or you could find the macro through clicking Tools -> Macro -> Macros (or by pressing Alt-F8)
Sub FormatQueryResult()
'
' FormatQueryResult Macro
' To make the Database query result less irritating to the eyes
'
    Dim i As Integer 'counter
    SendKeys "^a", True 'Send Ctrl-A to select All
        
    'Make the column auto fit
    For i = 1 To Selection.Columns.Count
        ActiveSheet.Columns(i).AutoFit
    Next
    
    'Wrap columns that are too wide
    For i = 1 To Selection.Columns.Count
       If ActiveSheet.Columns(i).Width >= 250 Then
            ActiveSheet.Columns(i).ColumnWidth = 65
            ActiveSheet.Columns(i).WrapText = True
        End If
    Next
End Sub

About Hardono

Howdy! I'm Hardono. I am working as a Software Developer. I am working mostly in Windows, dealing with .NET, conversing in C#. But I know a bit of Linux, mainly because I need to keep this blog operational. I've been working in Logistics/Transport industry for more than 11 years.

Possibly relevant: