As configured in my dotfiles.
start new:
tmux
start new with session name:
| # Author: Pieter Noordhuis | |
| # Description: Simple demo to showcase Redis PubSub with EventMachine | |
| # | |
| # Update 7 Oct 2010: | |
| # - This example does *not* appear to work with Chrome >=6.0. Apparently, | |
| # the WebSocket protocol implementation in the cramp gem does not work | |
| # well with Chrome's (newer) WebSocket implementation. | |
| # | |
| # Requirements: | |
| # - rubygems: eventmachine, thin, cramp, sinatra, yajl-ruby |
| # vi: ft=dosini | |
| [user] | |
| name = Pavan Kumar Sunkara | |
| email = [email protected] | |
| username = pksunkara | |
| [core] | |
| editor = nvim | |
| whitespace = fix,-indent-with-non-tab,trailing-space,cr-at-eol | |
| pager = delta | |
| [column] |
| " ----------------------------------------------------------------------------- | |
| " VIM Configuration for Janus (https://github.com/carlhuda/janus.git) | |
| " Lars Smit [email protected] | |
| " ----------------------------------------------------------------------------- | |
| " ----------------------------------------------------------------------------- | |
| " Basics | |
| " ----------------------------------------------------------------------------- | |
| set encoding=utf8 |
As configured in my dotfiles.
start new:
tmux
start new with session name:
| {$mode objfpc}{$M+} | |
| program test; | |
| type | |
| TMyClass = class | |
| // Must be with RTTI view | |
| procedure SayHi; | |
| end; | |
| procedure TMyClass.SayHi; |
| #!/bin/bash | |
| # bash generate random alphanumeric string | |
| # | |
| # bash generate random 32 character alphanumeric string (upper and lowercase) and | |
| NEW_UUID=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1) | |
| # bash generate random 32 character alphanumeric string (lowercase only) | |
| cat /dev/urandom | tr -dc 'a-z0-9' | fold -w 32 | head -n 1 |
| # source : http://code.google.com/p/natvpn/source/browse/trunk/stun_server_list | |
| # A list of available STUN server. | |
| stun.l.google.com:19302 | |
| stun1.l.google.com:19302 | |
| stun2.l.google.com:19302 | |
| stun3.l.google.com:19302 | |
| stun4.l.google.com:19302 | |
| stun01.sipphone.com | |
| stun.ekiga.net |
| #!KAMAILIO | |
| # | |
| # Kamailio (OpenSER) SIP Server v4.1 - default configuration script | |
| # - web: http://www.kamailio.org | |
| # - git: http://sip-router.org | |
| # | |
| # Direct your questions about this file to: <[email protected]> | |
| # | |
| # Refer to the Core CookBook at http://www.kamailio.org/wiki/ | |
| # for an explanation of possible statements, functions and parameters. |