I hereby claim:
- I am kaustavdm on github.
- I am kaustavdm (https://keybase.io/kaustavdm) on keybase.
- I have a public key ASBhvAA-2Ale4eGoGUs7illLZL_TDRmbbT9JTND8lzAqPgo
To claim this, I am signing this object:
package main | |
import ( | |
"flag" | |
"log" | |
"github.com/nats-io/nats-server/v2/server" | |
nats "github.com/nats-io/nats.go" | |
) |
export PS1="\e[1;36m\u@\h\e[0m\e[1;34m:\W $ \e[0m" |
openapi: 3.0.0 | |
info: | |
title: Cat Management API | |
version: '0.1' | |
description: Hypothetical internal service API for managing database of cats in the household | |
servers: | |
- url: 'https://api.cat' | |
description: production | |
paths: | |
/cats: |
I hereby claim:
To claim this, I am signing this object:
hr:after { | |
display: block; | |
text-align: center; | |
content: "..."; | |
color: #333333; | |
font-size: 2rem; | |
height: 2rem; | |
line-height: 2rem; | |
clear: both; | |
border: none; |
#!/bin/bash | |
# Usage: e.sh <args> | |
# <args> are any valid arguments for emacsclient | |
nohup $(which emacsclient) -a "" -c "$@" &>/dev/null & disown %% |
Proposal for restructuring of Mozilla India community | |
===================================================== | |
Author : Kaustav Das Modak <[email protected]> | |
Date : Jul 24, 2016 | |
Location : Bangalore | |
Status : Proposal | |
License : CC0 1.0 [1] | |
Version : 1.0.0 |
" Kaustav's .vimrc | |
" Colorscheme | |
syntax enable | |
colorscheme monokai | |
let g:monokai_italic=1 | |
let g:monokai_thick_border=1 | |
" Tab related settings | |
set tabstop=4 |
Title: Unifying real-time communications with JavaScript
Abstract:
WebRTC was devised as one of the means to overcome platform differences in communication technology. It pushed the web as a strong alternative to proprietary platforms. The role of JavaScript is very important in this stack as the language for unifying different types of clients.
Hoever, as more and more systems move towards exchanging large amount of information in real-time, there is an ever-increasing concern over platform fragmentations. Existing communication systems are not usually built to inter-operate with others. This results in multiple silos that prevent implementation of a unified layer of communication worldwide.
This talk explores how JavaScript is being used and how it can be used to build a fragmentation-less, globally available, decentralized communications network.