Skip to content

Instantly share code, notes, and snippets.

View schatekar's full-sized avatar

Suhas Chatekar schatekar

View GitHub Profile
Verifying my Blockstack ID is secured with the address 1JtWPCMwdFS7fLzHRoxnsj7a1gRAvp9Y4F https://explorer.blockstack.org/address/1JtWPCMwdFS7fLzHRoxnsj7a1gRAvp9Y4F
//IATA terminal is split into multiple terminals e.g. PEK terminal 3
// Reason -
var lb1 = {
code: "3",
name: "Terminal 3"
};
var fd1 = [{
{
"href": "https://myapi.com/v1/member/34234",
"id": 34234,
"firstname": "Suhas",
"lastname": "Chatekar",
"email": "abc@gmail.com",
"memberships": [{
"href": "https://myapi.com/v1/meetup/2345",
"meetup_id": 2345,
"name": "London Erlang Group"
{
"id": 34234,
"firstname": "Suhas",
"lastname": "Chatekar",
"email": "abc@gmail.com",
"memberships": [{
"meetup_id": 2345,
"name": "London Erlang Group"
}],
"rsvps": [{
{
"id": 34234,
"firstname": "Suhas",
"lastname": "Chatekar",
"email": "abc@gmail.com",
"memberships": [{
"meetup_id": 2345,
"name": "London Erlang Group"
}],
"rsvps": [{
{
member(id: 34342),
{
hash,
}
}
{
member(id: 34342),
{
href,
hash,
id,
firstname,
lastname,
email
}
public abstract class Shape
{
void Draw();
}
public class Rectangle : Shape
{
public void Draw()
{
//Draw a rectangle here
public interface IShootable
{
void Shoot();
}
public class Camera : IShootable
{
public void Shoot()
{
//Take a picture here
public class Camera
{
public void Shoot()
{
//Take a picture here
}
}
public class Gun
{