Skip to content

Instantly share code, notes, and snippets.

View schatekar's full-sized avatar

Suhas Chatekar schatekar

View GitHub Profile
{
"id": 34234,
"firstname": "Suhas",
"lastname": "Chatekar",
"email": "abc@gmail.com",
"memberships": [{
"meetup_id": 2345,
"name": "London Erlang Group"
}],
"rsvps": [{
@leonardofed
leonardofed / README.md
Last active April 29, 2024 10:49
A curated list of AWS resources to prepare for the AWS Certifications


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.


anonymous
anonymous / Mongolian vowel separator
Created November 26, 2014 13:43
// What's the output of this code, and how confident are you?
// What might affect the result?
class Test
{
static void Main()
{
string stringx = "a";
string\u180ex = "b";
System.Console.WriteLine(stringx);
}