Skip to content

Instantly share code, notes, and snippets.

@yetithefoot
yetithefoot / stuns
Last active January 20, 2025 15:25 — forked from zziuni/stuns
STUN+TURN servers list
{url:'stun:stun01.sipphone.com'},
{url:'stun:stun.ekiga.net'},
{url:'stun:stun.fwdnet.net'},
{url:'stun:stun.ideasip.com'},
{url:'stun:stun.iptel.org'},
{url:'stun:stun.rixtelecom.se'},
{url:'stun:stun.schlund.de'},
{url:'stun:stun.l.google.com:19302'},
{url:'stun:stun1.l.google.com:19302'},
{url:'stun:stun2.l.google.com:19302'},
@CezaryDanielNowak
CezaryDanielNowak / javascript-is-funny.js
Last active May 31, 2017 20:13
Javascript is funny
// run test in you javascript console.
var info = console.log, test = (function() {
var result = function(code) {
return result.codePad(code, eval(code));
},
strPad = function(str, pad) {
var len = str.length;
return len >= pad ? str : Array(pad - len + 1).join(' ') + str;
}