Monday, November 14, 2011

Why Floyd MayWeather is Ducking Manny Pacquiao?

Someone I know re-posted this article:

You Be The Judge : Why Manny Won

In a 10-point system, the boxer­ who wins a round is given 10 points, and the other ­boxer gets nine points. (10 -9)
If there was a ­ knockdown in the round (10-8)
2 knock downs (10-7)
If a­ judge can't decide who won the round, it is­ scored 10-10.
Now if you are the challenger, you must be­ the aggressor (Pacquiao vs Cotto) in very close­ rounds the­ Champion gets the 10. For example if­ Pacquiao would just stay still and Marquez does not­ attack, Pacquiao gets the 10 and Marquez 9. In this­ case Manny (champion) was always aggressive while­ Marquez (challenger) waits for an attack and­ counters.
Marquez's body language fooled a lot of­ people. Making people feel that he was the winner or­ at least it was a draw. It may look like he was­ landing more punches but the tricky part here is he­ was on the defensive, luring Pacquiao into his ­tactical traps (remember the challenger must be the one­ who is aggressive to be awarded 10 ). So even if ­Marquez did connect more punches, he gets only 9 for ­ being defensive and Manny gets the 10 for being the ­attacker.
Pacquiao got more "10"s than ­Marquez. Manny wins.
Why Manny won? "Manny knows..."


 So now I know why The Duck King GayWeather doesn't want to fight the PacMan. He will be the challenger and he is a counter-puncher while PacMan will always be the aggressor. There's no way that The Duck King can win the fight with Pacman.

The Duck King wants the undefeated record, not the sports for Boxing.

Wednesday, June 08, 2011

Create CAB files

You can use the makecab.exe by using the interface built-in on Windows.

1. Go to Start Menu
2. Select "Run" command
3. Type "iexpress.exe".
4. Press Enter key

Happy Cabbing!

Sunday, May 15, 2011

Sparx Enterprise Architect - SQL Server 2008

To add database type "SQL Server 2008":

1. Download the DDL xml file from Sparx resource website.
2. On EA, go to Tools -> Import Reference Data
3. On "Import File" tab, select the xml file.
4. On "Select Database to Import", click on "Model Data Types - Code and DDL"
5. Click "Import" button.




Monday, May 02, 2011

Osama Bin Laden Maybe Dead.. but not terrorism...

I believe that Osama Bin Laden's death won't put terrorism to halt. As long as his ideas are alive on his followers, his legacy will continue.

Chopping only the top of the tree could only allow more branches to grow. Chopping from the roots could kill thousands and even  fall to your side. Chop a very huge tree from top to roots to minimize damage.

Monday, April 04, 2011

Windows Installer - Bootable USB

1. Copy bootsect.exe from your Windows DVD installer from "boot" folder.
2. Paste the file on drive C:
3. Insert your usb drive
4. Go to start -> run and type "cmd". Press enter key
5. Assuming your usb drive is "e:", then type this command on the console "c:\bootsect /nt60 e:". Press Enter.
6. Copy all files from your Windows DVD installer to your usb drive.

That's it pancit!

Tuesday, March 29, 2011

Thursday, February 03, 2011

IIS 7 - Add bindings to existing site programatically

To add bindings to an existing site such as add new subdomain, all you have to do is use the AppCmd tool. You may create a bat file and have this command:

%windir%\system32\inetsrv\AppCmd set site /site.name: (yoursitename)/+[bindings.protocol='(protocoltouse)',bindingInformation='(ipaddress):(port):(hostheader)']

For example your IIS 7 is configured for www.markglibres.com with name as "markg" on site listing, and you wanted to add the subdomain "me.markglibres.com" at any IP to port 80, then you must have this command:

%windir%\system32\inetsrv\AppCmd set site /site.name: markg /+bindings.[protocol='http',bindingInformation='*:80:me.markglibres.com']


Tuesday, January 18, 2011

IIS7 Multiple Headers Error "401 - Unauthorized: Access is denied due to invalid credentials."

If you setup your site on IIS7 with multiple headers and you get this error "401 - Unauthorized: Access is denied due to invalid credentials.", you need to set the Windows Authentication on the site. To do this, follow the following steps:

1.On IIS Manager, select the website
2. Select "Authentication" under Feature View
3. Select "Windows Authentication"
4. Hit Ok


If "Windows Authentication" is not found on the list of providers, you must add that role to Web Server (IIS). To do so, follow this link