Disable or enable proxy for Internet explorer or Chrome
Internet explorer and Google chrome both shares same proxy settings. So if we change setting in internet explorer, then it also effects in Google chrome. We can change proxy setting from CMD (command line prompt). Disable proxy setting : @ECHO OFF ECHO Configuring Proxy Settings! please wait... REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyEnable /t REG_DWORD /d 0 /f Enable proxy setting : @ECHO OFF ECHO Configuring Proxy Settings! please wait... REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyEnable /t REG_DWORD /d 1 /f REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyServer /t REG_SZ /d address:portNumber /f address: New proxy address portNumber: Port Number Save the commands in a batch file and execute it. It will disable/enable the proxy setting for browser.
Logic :
ReplyDelete-- Individual digits in the Output will always sum to 5
-- It would be sum of "1's" present in the previous inputs ( represented in BCD format) + what requires to make the total output sum to 5
0000 0010 0000 0011 0000 0010 5 -- Since there was no previous input so the output is 5
0001 0011 0001 0100 0000 0001 14 -- Sum of "1''s" in the previous input sequence is '4' so the output is (5-4) 4 = 14
0001 0100 0000 0101 0000 1001 464 -- Sum of "1''s" in the previous two input sequence is "6" and "4" , 6+4 =10 ,
so the output should be (5-1) 6 4 to make the total 5
Similarly Next output should be 7664