This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#include <unistd.h> | |
#include <string.h> | |
#include <sys/types.h> | |
#include <sys/socket.h> | |
#include <arpa/inet.h> | |
#include <netinet/in.h> | |
#include <netdb.h> | |
#include <errno.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Angular --> | |
<script src="../angular.min.js"></script> | |
<!-- jQuery --> | |
<script src="../jquery-2.1.1.min.js"></script> | |
<!-- Font Awesome --> | |
<link rel="stylesheet" type="text/css" media="screen" href="css/font-awesome.min.css"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.io.BufferedReader; | |
import java.io.IOException; | |
import java.io.InputStreamReader; | |
import java.net.HttpURLConnection; | |
import java.net.URL; | |
import java.util.regex.Matcher; | |
import java.util.regex.Pattern; | |
public class Main { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div> | |
<p id="text1"></p> | |
<p id="text2"></p> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// a simple class declaration in es6 | |
class Person { | |
constructor(fname, lname) { | |
this.fname = fname; | |
this.lname = lname; | |
} | |
toString() { | |
return (this.fname + " " + this.lname); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var ISet = function(array) { | |
this.list = array ? toSet(array) : []; | |
}; | |
ISet.prototype.add = function(inValue) { | |
if (exists(this.list, inValue) < 0) { | |
this.list.push(inValue); | |
return true; | |
} | |
return false; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
onmessage = function(event) { | |
console.debug("posting message: ", event.data); | |
postMessage(event.data); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Created by Nick on 1/28/2017. | |
*/ | |
public class BigNumber { | |
private Node head = null; | |
public BigNumber(BigNumber other) { | |
Node currentOther = other.getHead(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\b[0-9a-f]{32}\b | |
This expression will stricly match an MD5 string | |
"d41d8cd98f00b204e9800998ecf8427e" will match | |
\b[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}\b | |
This expression will stricly match a canonical UUID string |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
angular.module('affix', []).directive('affix', [function () { | |
return { | |
restrict: 'A', | |
scope: {offset: "="}, | |
link: function (scope, element, attrs) { | |
var offset = Number.isFinite(scope.offset) ? scope.offset : 300; | |
var onScroll = function () { | |
if (window.pageYOffset >= offset) { | |
element.addClass('affix'); // add affix class | |
} else { |
OlderNewer