THIS BLOG HAS MOVED

September 16, 2011

THIS BLOG HAS

MOVED

Please visitĀ http://suanaikyeo.com instead

Using Perforce merge tool (p4merge) with git on Cygwin

December 17, 2010

This guide will show you how to setup the Perforce merge tool (p4merge) as your default git mergetool on Cygwin.

  1. Download the Perforce client (p4v) from here. (Go to Clients > Visual Merge Tool, and download the appropriate installer for your machine)
  2. Perform the installation, making sure that you only check the merge tool component and cross out all other components
  3. (This step is optional)
    Open up cygwin, and create a symlink to p4merge by doing:

    ln -s /cygdrive/c/Program\ Files/Perforce/p4merge.exe /usr/bin/p4merge

    (modify the target path if you installed Perforce in a non-default folder). This way, you can open up p4merge anytime in Cygwin simply by typing “p4merge”

  4. Add the following lines to your ~/.gitconfig in Cygwin using your preferred text editor:

    [merge]
    tool = p4merge
    [mergetool “p4merge”]
    path = c:/Program Files/Perforce/p4merge.exe
    trustExitCode = true

    Again, edit the path if you used a non-default Perforce install path.

  5. Save and exit the file. If you have pending merges in the current git tree and you type git mergetool, voila, your merge will be done using the very user-friendly p4merge.

jQuery 1.3.2 from GoogleAPIs would not load in Firefox

March 15, 2010

GoogleAPI’s hosting of jQuery 1.3.2 didn’t load on Firefox for me today, but was fine on IE8 and Chrome. Specifically this link: http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js would result in a “Firefox could not find the file at…” page. Surprisingly, all other versions of jQuery that they are hosting were working. Clearing my FF cache seemed to solve this. Wonder what was the actual problem?

Mailinator and DodgeIt Don’t Work

January 14, 2010

I just tried using dodgeit and mailinator (services which let you use a throwaway email address which you can check on their websites) to register to a forum board and neither of them got the registration email, whereas a more typical yahoo mail account got the email without any hassle. I’ve come to the conclusion that these services (along with someĀ  others) are probably already well-known enough that sysadmins who care are not sending mails to them. A service which provides a checkable random email domain will be best in this scenario, and there may be sites that offer this already.

So, just don’t use one of these well-known throwaway email services to register for something and expect to actually receive the mail.

Use PHP DOM Parser for more robust screen scraping

December 5, 2009

I’d just like to put this out there, as I just “failed” a “do-at-home” interview assignment which was to implement a screen scraper using Java/PHP. I had previously (1-2 years ago) done screen scrapers in PHP, so I proceeded to do this assignment the same way – using regexes. Little did I know that using regexes would be one of the weak points of my submission – they wanted me to use a DOM parser instead. In hindsight, I guess I should have looked into that, but it just never occured to me because I already used other methods in the past.

So the moral of the story is to use DOM parsers when writing screen scrapers, they should be more robust than regex parsing in most cases. Here is an example tutorial.

POV-Ray Renderings in Space

December 4, 2009

While using POVRay in my Graphics class, stumbled upon this story where apparently Mark Shuttleworth (of digital certificates and Ubuntu fame) rendered some POVRay scenes in space on the International Space Station – awesome!

2 Different ways of iterating through a hash in Perl with different pros/cons

November 28, 2009

http://www.perlhowto.com/iterate_through_a_hash

Overview on C/C++ type promotion

September 24, 2009

These are some very helpful comments I came across from Stack Overflow. Thanks to Martin York and Adam Liss for providing these useful and concise comments.

Comment1:

Question 1: Float division

int a = 2, b = 3;
float c = static_cast(a) / b; // need to convert 1 operand to a float

Question 2: How the compiler works

Five rules of thumb to remember:

* Arithmetic operations are always performed on values of the same type.
* The result type is the same as the operands (after promotion)
* The smallest type arithmetic operations are performed on is int.
* ANSCI C (and thus C++) use value preserving integer promotion.
* Each operation is done in isolation.

The ANSI C rules are as follows:
Most of these rules also apply to C++ though not all types are officially supported (yet).

* If either operand is a long double the other is converted to a long double.
* If either operand is a double the other is converted to a double.
* If either operand is a float the other is converted to a float.
* If either operand is a unsigned long long the other is converted to unsigned long long.
* If either operand is a long long the other is converted to long long.
* If either operand is a unsigned long the other is converted to unsigned long.
* If either operand is a long the other is converted to long.
* If either operand is a unsigned int the other is converted to unsigned int.
* Otherwise both operands are converted to int.

Overflow

Overflow is always a problem. Note. The type of the result is the same as the input operands so all the operations can overflow, so yes you do need to worry about it (though the language does not provide any explicit way to catch this happening.

As a side note:
Unsigned division can not overflow but signed division can.

std::numeric_limits::max() / -1 // No Overflow
std::numeric_limits::min() / -1 // Will Overflow

==============================================================

Comment2:

In general, if operands are of different types, the compiler will promote all to the largest or most precise type:

If one number is… And the other is… The compiler will promote to…
——————- ——————- ——————————-
char int int
signed unsigned unsigned
char or int float float
float double double

Examples:

char + int ==> int
signed int + unsigned char ==> unsigned int
float + int ==> float

Beware, though, that promotion occurs only as required for each intermediate calculation, so:

4.0 + 5/3 = 4.0 + 1 = 5.0

This is because the integer division is performed first, then the result is promoted to float for the addition.

Matching new lines (\n backslash n) in grep

September 12, 2009

Spent some time getting this to work. Say you want to match “1\n;”, the way to do this is:
"1[\][n];"