Thursday, May 1, 2014

My experience with Shaun T's insanity workout with bodybuilding.






If you are the one who is confused about whether to do insanity along with bodybuilding this article might help you. First thing i want to tell you guys that i am not associated with beachbody.com in any way, i really dont care whether you should purchase it or not. This article might help those guy who already bought it or thinking of buying.


Now my experience with the Insanity + bodybuilding. 

I was already doing bodybuilding (natural and vegetarian) for about 5 year so thought to challenge myself with this program after watching the commercials (which states that it is the toughest workout ever put on the DVD). With the first day of exercise (after fit test) i come to know that the statement was indeed true. To acclimatize myself with the program and to include it into my current bodybuilding plan i started doing it in the night (gym in the morning). After doing it for 3 weeks, i started doing it in the morning following gym session. I started doing it to reduce some body fat percentage, after 2 week itself there were reduction in the fat from abdominal region but i didnt observed any weight loss till 5 weeks into the program. (It is important to mention i dont have much weight to reduce i was 4 kg overweight than BMI chart suggession ). 

I followed 2 body a day program in the gym and for the cardio session i was doing insanity, which on the total was taking around 2 hours a day. Almost everyday after insanity session i was rolling on the floor drenching in the sweat and gasping for the air (most of the time i was not able to complete the session). At the end of 1 month i started doing the complete session.But when the next month started it kicked my ass again as time and difficulty level got increased with the start of new month. Some how i managed to complete the 2 months of the program.

Result: -

1) Have seen some serious loss of fat (along with some muscle also which is inevitable).
2) My flexibility, endurance and energy level increased dramatically.
3) I have seen gains in the gym also, i started squatting and bench pressing heavy.
4) Program is very good if your main motive is to reduce weight or fat, not much helpful in gaining 
muscle ( i have observed reduction in my bicep size during this program but overall i achieved toning).


Note:-
If you are starting such program, please ensure following.

1) Consult your doctor before starting it.
2) Purchase some good shoes and \ or purchase exercise mat as insanity is heavy on the joints.you will
start feeling pain in the knees and  ankles
3) If doing insanity just after gym first take some protein supplement or some energy drink to survive the
whole session.
4) i have not taken their shakeology supplement. Instead eat plenty of clean food (if you don't want to loose your hard gained muscles). Try to eat 5-6 small portion of meal though out the day.


Sunday, February 12, 2012

Solution to Some problems in VC++ MFC in Dialog Based Application


1. 5 Steps for using Accelerators keys for processing keyboard Messages in Dialog Based Application :



Dialogs do not process accelerator tables, but support of them can easily be added. The following describes how to revise your MFC CDialog-derived class to process an accelerator table for a dialog. Code must be added to CDialog::OnInitDialog to load the accelerator table and CDialog::PreTranslateMessage must be overridden to process accelerator keys.
  • If OnInitDialog for the dialog has not yet been overridden, use ClassWizard to add an override for it. Then, after the call to the base class OnInitDialog, add:


              m_hAccel = ::LoadAccelerators(AfxGetResourceHandle(),
                                                               MAKEINTRESOURCE(IDR_ACCELERATOR1);
  • Then, in the dialog's header, add:

                    HACCEL m_hAccel; // accelerator table

  • Then, use ClassWizard to add an override for PreTranslateMessage. Add the following to it:

                 if (WM_KEYFIRST <= pMsg->message && pMsg->message <= WM_KEYLAST)
                    if (m_hAccel && ::TranslateAccelerator
                              (m_hWnd, m_hAccel, pMsg))
                                      return TRUE;
You now have a dialog class that processes accelerator keys.
The next thing to do is to 
  • create an accelerator table resource  (id should be IDR_ACCELERATOR1 or change ID in the step 1 ). In the table specify a key (combination) and a corresponding command id.

  • After creating the accelerator table, use ClassWizard to add a handler for the id(s) you provided in the accelerator table (or Right click on Accelerator table and add handler). Then, you can do most anything in the handler that you need to do when the key is typed.

Saturday, October 31, 2009

Friday, October 16, 2009

How to hack series 60 mobile and install n-gage application (tested for Eseries (E63 , E71) mobiles)

Hacking the Symbian phone (series 60 v3 and v5 mobile) :-


               Obtaining your certificate:
  The following URLs can be used to get your certificate generated
      (i) http://cer.opda.cn/en/index.php?module=index&action=
     (ii) http://allnokia.ru/symb_cert/
    (iii) http://isign.imobile.com.cn
        
   Here I will explain how to get your certificate from (i) http://cer.opda.cn .
1. Go to http://cer.opda.cn/en/index.php?module=index&action=
2. Click on "Register" at the upper right corner.
   Fill in the Account (username), Password, Confirm Password, Email and Code. You get registered immediately.
3. Login with your username and password. Click on "Apply Cer" (see Pic 1)





4. Fill in the details (see Pic 2). Click on "Apply"



5. Once applied, it will show the status as "Applying" (Pic 3).




6. Now wait for (8-48) hours and login. Click on "My Certificate". If it is generated, the status shows "Normal" (see Pic 4)



7. Now download the certificate (.cer) and save it as "My Certificate.cer" (You will have to change the extension to .cer)
8. Similarly download the key (.key) file and save it as "Certificate.key" (You will have to change the extension to .key)


  Signing the hacking tool with your certificate and key:
1. Copy the folder "Tools" to your desktop.
   (Please do not skip this because then you will have to redownload the file if anything goes wrong).
2. Open Tools and double click "Copier.bat" to copy files to your Windows directory else nothing will work.
   Now double click "Signer.exe".
3. In "Select SIS file", browse to Desktop/Tools/HelloOX2.sis
4. In "Select Certificate file", select the .cer file you got in the previous column.
5. In "Selct Key file", select the .key file you got in the previous column.
6. Leave "Key File Password" blank. Now click on "Sign!"

Now Desktop/Tools/HelloOX2.sis is signed and can be used to hack your phone. Install HelloOX2 to your phone.


  Using the HelloOX on Phone:
1. Once installed (disconnect it from USB if you used PCSuite to install), go to application menu and open HelloOX (bull).
2. It will automatically start to:
  (i) Map drive
 (ii) Unpack Hacking files to the virtual drive
(iii) Activate file system
 (iv) Unmap drive
  (v) Install root certificate (takes some time at "installing root certificate", give it some time.)
 (vi) Install RomPatcher+
(vii) Optional Install Modo (select yes when it aks to install it)

Wednesday, July 8, 2009

how to see and recover hidden folder or files

1. click start>>run>>type in "cmd"
2. type the location of your flash drive.. e.g. "d:", "e:", "f:", etc..
3. type "dir /ah"
*you will now see the files/folders with hidden attributes
4. type "attrib [name of file/folder] -r -a -s -h"
*if you're going to unhide files, you should type the whole name plus the extension (format).. example "attrib party.jpg -r -a -s -h"
**if you have folders with 6 characters and above, type the first 6 characters then "~1".. example for folder named "birthday"
"attrib birthd~1 -r -a -s -h"
5. you should repeatedly type dir /ah after unhiding some files/folders so you'll know if they're now working or not..
6. now check you flash drive.. it should be there..

Dell XPS M1530 Laptop-Download Vista to Windows XP Drivers

Drivers for Dell XPS M1530 Laptop - Free Drivers for Windows XP
Download Windows XP drivers for Graphics, Bluetooth, LAN, Launch buttons, touchpad, audio, camera etc. Complete package to downgrade from Vista to XP. Windows XP is faster and more user friendly than Vista. If you want Windows XP back on your machine, download these drivers to run your laptop smoothly on XP.

Dell XPS M1530 Laptop
Vista to Windows XP Drivers for Dell XPS M1530 Laptop
Dell XPS M1530
Driver Installation Package
Windows XP (SP2 recommended)
Instructions
——————————–
1. AHCI SATA support (IMPORTANT!)
Installation technique:
First step is to turn off SATA AHCI mode in BIOS (you’ll switch it from AHCI to ATA). Search through BIOS until you find it. It will advise that you have to disable “Flash Cache” first, do this, and then set SATA mode to ATA instead of AHCI. Then, save your settings, reboot and install XP as usual. Once XP is installed, install the AHCI driver yourself via the file in the folder /AHCI. After this has been done successfully, you can go back into the BIOS and re-enable SATA AHCI mode and Flash Cache.
Instruction:
Please install the driver in sequence below. Most drivers will require installation through Windows Device Manager’s “Have Disk” method (indicate it to the INF in the appropriate driver’s folder).
1. Chipset (1.1.15.0) compulsory
2. Audio (5.10.5210.0) compulsory
3. Video (174.31, DELL) compulsory
4. Card Reader (6.00.01.05) 3 separate drivers compulsory
5. Ethernet (10.60.6.3) compulsory
6. Touchpad (7.1.102.7, DELL) compulsory
7. Fingerprint Reader (1.9.2.0111) compulsory
8. Wireless (11.5.1.15) compulsory
9. Bluetooth (6.1.0.300, 5.0.1.2609, DELL) optional
10. Webcam (2.0, DELL) optional
11. Quickset (8.3.11, DELL) optional
12. Winamp Plugin (1.0) optional
If you install all the mandatory drivers that will left you with no “unknown devices” in Device Manager. Note that for the winamp plugin, you can place it in your /Winamp/Plugins folder to allow the M1530’s media controls (as well as the remote control) to work in Winamp. Also note that quickset isn’t necessary for the special keyboard and media control functions to work (eg. brightness/volume controls), all it does is provide the on-screen display. I didn’t install it.
Quick Install:
1. Start
2. Run and type “location of file” -s
so in my case it is c:\1530drivers\Quickset\setup.exe -s
Driver for Windows XP - Dell XPS M1530 Intel Chipset Utility
Size: 2 MB
Description: Windows XP - Intel Mobile Chipset Utility Driver
Download: Intel-Mobile-Chipset.zip
Driver for Windows XP - Dell XPS M1530 AHCI Sata RAID Controller
Size: 4.68 MB
Description: Windows XP - Intel AHCI SATA RAID Controller Storage Manager Driver
Download: AHCI.zip
Driver for Windows XP - Dell XPS M1530 Sigmatel Audio
Size: 7.87 MB
Description: Windows XP - SIGMATEL STAC 92XX C-Major HD Audio Driver
Download: Audio.zip
Driver for Windows XP - Dell XPS M1530 Card Reader,Lan Card,Touchpad,FingerPrint Reader
Size: 3.96 MB
Description: Windows XP - Ricoh R5C833 Card Reader, Marvell Lan Card, Finger Print Reader, Touchpad Driver
Download: LanCard-CardReader-Touchpad-FingerPrint.zip
Driver for Windows XP - Dell XPS M1530 Conexant Modem
Size: 1 MB
Description: Windows XP - Conexant D400 External USB Modem Driver
Download: CONEXANT_D400-EXTERNAL-USB-5_A04_R197197.EXE
Driver for Windows XP - Dell XPS M1530 Creative Labs Webcam
Size: 6 MB
Description: Windows XP - Creative Labs Laptop Integrated Webcam Driver
Download: Creative.exe
Driver for Windows XP - Dell XPS M1530 Dell Wireless WLAN
Size: 89 MB
Description: Windows XP - Dell Wireless 1395/1490/1390/1505 Wifi WLAN Driver
Download: Dell_multi-device_A17_R174291.exe
Driver for Windows XP - Dell XPS M1530 Intel Wireless WLAN
Size: 4.74 MB
Description: Windows XP - Intel PRO/Wireless 3945ABG Wifi WLAN Driver
Download: Intel_WLAN.zip
Driver for Windows XP - Dell XPS M1530 Bluetooth
Size: 34.23 MB
Description: Windows XP - Dell Wireless 355 Bluetooth Module (Bluetooth 2.0 + EDR) Driver
Download: Bluetooth.zip
Driver for Windows XP - Dell XPS M1530 Nvidia Graphics Display
Size: 58 MB
Description: Windows XP - Nvidia 8400M 8600M VGA Graphics Display Driver
Download: Nvidia-8400M-8600M-XP.zip

Sunday, July 5, 2009

Clean your RAM by notepad

Clean Yer RAM & Make Your Comp Speed Better
credit goes to sid for sharing this trick with us


Clean Ur RAM
U may recognize that ur system gets slower and slower when playing and working a lot with ur pc. That's cause ur RAM is full of remaining progress pieces u do not need any more.

So create a new text file on ur desktop and call it .. uhm.. "RAMcleaner" or something...

Type

FreeMem=Space(64000000)
in this file and save it as RAMcleaner.vbs [ You may choose the "All Files" option when u save it ]

Run the file and ur RAM may be cleaned :>
Of course u can edit the code in the file for a greater "cleaning-progress".


FreeMem=Space(1280000000)