Skip to content

Instantly share code, notes, and snippets.

View ssk910's full-sized avatar

Chris ssk910

  • South Korea
  • 14:57 (UTC +09:00)
View GitHub Profile
@ssk910
ssk910 / ObjectDeepClone.ts
Created January 8, 2020 08:13
deep cloning object
/**
* 참고 : <a href="https://bithacker.dev/compare-objects-javascript">bithacker.dev</a>
* @param first
* @param second
* @return {boolean}
*/
deepEqual(first: any, second: any): boolean {
if (first === second) {
return true;
}
@ssk910
ssk910 / stuns
Created September 29, 2019 16:20 — forked from yetithefoot/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'},
@ssk910
ssk910 / Queens.java
Created June 7, 2015 09:45
n-queens problem.
/**
* Source
* @link http://www.java.achchuthan.org/2012/02/n-queens-problem-in-java.html
* @author ACHCHUTHAN
*/
package N_Queen;
public class Queens {