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
<!doctype html> | |
<html> | |
<head> | |
<title>The HTML5 Outline</title> | |
<meta charset="utf-8"> | |
</head> | |
<body> | |
<h1>I WANT YOU!</h1> | |
<article> | |
<h2>Backend Engineer</h2> |
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
<!doctype html> | |
<html> | |
<head> | |
<title>The HTML5 Outline</title> | |
<meta charset="utf-8"> | |
</head> | |
<body> | |
<h1>I WANT YOU!</h1> | |
<article> | |
<h2>Backend Engineer</h2> |
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
<!doctype html> | |
<html> | |
<head> | |
<title>The HTML5 Outline</title> | |
<meta charset="utf-8"> | |
</head> | |
<body> | |
<h1>I WANT YOU!</h1> | |
<article> | |
<h2>Backend Engineer</h2> |
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
<!doctype html> | |
<html> | |
<head> | |
<title>The HTML5 Outline</title> | |
<meta charset="utf-8"> | |
</head> | |
<body> | |
<h1>I WANT YOU!</h1> | |
<article> | |
<h2>Backend Engineer</h2> |
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
<!doctype html> | |
<html> | |
<head> | |
<title>The HTML5 Outline</title> | |
<meta charset="utf-8"> | |
</head> | |
<body> | |
<h1>I WANT YOU!</h1> | |
<div> | |
<h2>Backend Engineer</h2> |
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
<!doctype html> | |
<html> | |
<head> | |
<title>The HTML5 Outline</title> | |
<meta charset="utf-8"> | |
</head> | |
<body> | |
<h1>I WANT YOU!</h1> | |
<div> | |
<h2>Backend Engineer</h2> |
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
public class ConcurrentStack<E> { | |
AtomicReference<Node<E>> head = new AtomicReference<Node<E>>(); | |
public void push(E item) { | |
Node<E> newHead = new Node<E>(item); | |
Node<E> oldHead; | |
do { | |
oldHead = head.get(); | |
newHead.next = oldHead; |
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
package pig.pigtest; | |
import java.util.concurrent.atomic.AtomicLong; | |
import org.junit.Test; | |
public class AtomicTest { | |
private AtomicLong v1 = new AtomicLong(0); | |
private long v2 = 0; |
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 assert = require("assert"); | |
var async = require("async"); | |
var fs = require("fs"); | |
var files = ["node_modules/async/LICENSE", "node_modules/async/package.json"]; | |
async.map(files, fs.stat, function(err, results) { | |
console.log("map: " + JSON.stringify(results)); | |
}); |
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
<!-- Syntax Highlighter Additions START --> | |
<script src='http://alexgorbatchev.com/pub/sh/current/scripts/shCore.js' type='text/javascript'/> | |
<script src='http://alexgorbatchev.com/pub/sh/current/scripts/shAutoloader.js' type='text/javascript'/> | |
<script language='javascript' type='text/javascript'> | |
//<![CDATA[ | |
SyntaxHighlighter.defaults['toolbar'] = false; | |
SyntaxHighlighter.config.bloggerMode = true; | |
function alexgorbatchev() { | |
var args = arguments; |