Skip to content

Instantly share code, notes, and snippets.

View mvenkatesh431's full-sized avatar
🎯
Focusing

Venkatesh Macha mvenkatesh431

🎯
Focusing
View GitHub Profile
#
# $Id$
#
# OpenSIPS residential configuration script
# by OpenSIPS Solutions <team@opensips-solutions.com>
#
# This script was generated via "make menuconfig", from
# the "Residential" scenario.
# You can enable / disable more features / functionalities by
# re-generating the scenario with different options.#
Hi all ,
I am Venkatesh Macha, Graduated in Telecommunication Engineering i am very much Interested in Opensource
Technologies and Networking. Presently Working as VOIP Engineer and WebRTC Dev at Hyderabad, Andra pradesh, India.
Venkatesh Macha,
http://www.sillycodes.com
#!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: <sr-users@lists.sip-router.org>
#
# Refer to the Core CookBook at http://www.kamailio.org/wiki/
# for an explanation of possible statements, functions and parameters.
#!/bin/bash
#http://linux.autostatic.com/installing-webrtc2sip-on-ubuntu-1204#install_packages
sudo su
# install
apt-get update
apt-get install -y python-software-properties
add-apt-repository ppa:autostatic/doubango
#!KAMAILIO
#
# Simple/sample kamailio.cfg for running a proxy/registrar with TLS and
# WebSockets support.
###!substdef "!DBURL!sqlite:///etc/kamailio/db.sqlite!g"
#!substdef "!DBURL!mysql://kamailio:kamailiorw@localhost/kamailio!g"
#!substdef "!MY_IP_ADDR!10.0.11.175!g"
#!substdef "!MY_DOMAIN!ubukam.lan!g"
#!substdef "!MY_WS_PORT!5065!g"
@mvenkatesh431
mvenkatesh431 / webrtc client
Created July 8, 2015 07:29
doubango sipml5 demo
<Head>
<Title> Navaismo's ElastixCC-WebRTC </ title>
<! - SIPMl5 APIs for WebRTC calls ->
<Script src = "js / SIPml-api.js" > </ script>
<Link href = "css / bootstrap.min.css" media = "screen" rel = "stylesheet" > </ link>
</ Head>
<Script>
@mvenkatesh431
mvenkatesh431 / Webrtc.html
Last active August 31, 2015 11:00 — forked from xeoncross/Webrtc.html
Simple webrtc demo script
<h1>WebRTC</h1>
<script>
// This is only needed for browser testing
window.RTCPeerConnection = window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
window.RTCSessionDescription = window.mozRTCSessionDescription || window.RTCSessionDescription;
window.RTCIceCandidate = window.mozRTCIceCandidate || window.RTCIceCandidate;
navigator.getUserMedia = navigator.mozGetUserMedia || navigator.webkitGetUserMedia;
#include<stdio.h>
int main()
{
printf("Hello World \n");
return 0;
}
#include<stdio.h>
int main()
{
int i,j,k,n;
printf("Enter Number : ");
scanf("%d",&n);
for(i=1;i<=n;i++)
{
for(j=1;j<=i;j++)
/*
C Program to print mirrored right angle triangle
Author : Venkatesh Macha.
Visit www.SillyCodes.com for more C programming tutorials.
*/
#include<stdio.h>
int main()
{
int i,j,k,n;