I hereby claim:
- I am shekharreddy4 on github.
- I am shekharreddy (https://keybase.io/shekharreddy) on keybase.
- I have a public key ASAESihLvlV_itMRdQYMszMqsbnvEWZdulVr6wdYp5fwsgo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
using System; | |
using System.Collections; | |
using System.Collections.Generic; | |
using System.Diagnostics; | |
using System.DirectoryServices; | |
using System.IO; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
namespace ConsoleApplication1 |
Inspired by this article. Neat tricks for speeding up integer computations.
Note: cin.sync_with_stdio(false);
disables synchronous IO and gives you a performance boost.
If used, you should only use cin
for reading input
(don't use both cin
and scanf
when sync is disabled, for example)
or you will get unexpected results.
x = x << 1; // x = x * 2
using System; | |
using System.Collections.Generic; | |
using System.IO; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
namespace ConsoleApplication9 | |
{ | |
public static class Configs |
using System; | |
using System.Collections.Generic; | |
using System.IO; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
namespace ConsoleApplication9 | |
{ | |
public static class Configs |
$runPSCommand7=Send-SSMCommand -InstanceId $InstanceID -DocumentName AWS-RunPowerShellScript -Comment 'command in execution1' -Parameter @{'commands'=@('$WUSettings = (New-Object -com "Microsoft.Update.AutoUpdate").Settings | |
$WUSettings.NotificationLevel=2 | |
$WUSettings.save')} |
A curated list of AWS resources to prepare for the AWS Certifications
A curated list of awesome AWS resources you need to prepare for the all 5 AWS Certifications. This gist will include: open source repos, blogs & blogposts, ebooks, PDF, whitepapers, video courses, free lecture, slides, sample test and many other resources.
For more about AWS and AWS Certifications and updates to this Gist you should follow me @leonardofed
a |
# |
*.pyc | |
/.vscode |