AI: Snake Game http://ift.tt/1Bihdcz Javascript implementation: https://github.com...

Please Visit: http://ift.tt/1ajReyV



AI: Snake Game

http://ift.tt/1Bihdcz

Javascript implementation:

http://ift.tt/1xCdcs0

http://ift.tt/1BiheND

1. Depth First Search

2. Breadth First Search

3. A* Search






from Public RSS-Feed of Jeffery yuan. Created with the PIXELMECHANICS 'GPlusRSS-Webtool' at http://gplusrss.com http://ift.tt/1xCdaAq

via LifeLong Community

Javascript Array Methods: Unshift(), Shift(), Push(), And Pop() http://ift.tt/1BihcVT...

Please Visit: http://ift.tt/1ajReyV



Javascript Array Methods: Unshift(), Shift(), Push(), And Pop()

http://ift.tt/1s9Uf3S






from Public RSS-Feed of Jeffery yuan. Created with the PIXELMECHANICS 'GPlusRSS-Webtool' at http://gplusrss.com http://ift.tt/1BihcVX

via LifeLong Community

javascript - Web worker settings for chrome - Stack Overflow You have to close all the windows of Chrome...

Please Visit: http://ift.tt/1ajReyV



javascript - Web worker settings for chrome - Stack Overflow



You have to close all the windows of Chrome before opening it with --allow-file-access-from-files flag on.

To open it in Ubuntu simply write google-chrome --allow-file-access-from-files in your terminal.

http://ift.tt/1kDZMKR

Done






from Public RSS-Feed of Jeffery yuan. Created with the PIXELMECHANICS 'GPlusRSS-Webtool' at http://gplusrss.com http://ift.tt/1xCdbUT

via LifeLong Community

Artificial Intelligence « Master Baboon http://ift.tt/1BihdJy...

Please Visit: http://ift.tt/1ajReyV



Artificial Intelligence « Master Baboon

http://ift.tt/1xCd9wn






from Public RSS-Feed of Jeffery yuan. Created with the PIXELMECHANICS 'GPlusRSS-Webtool' at http://gplusrss.com http://ift.tt/1BihdJA

via LifeLong Community

Java - Hanging Thread Detection and Handling | JavaWorld http://ift.tt/1B0BO2l...

Please Visit: http://ift.tt/1ajReyV



Java - Hanging Thread Detection and Handling | JavaWorld

http://ift.tt/15714JD






from Public RSS-Feed of Jeffery yuan. Created with the PIXELMECHANICS 'GPlusRSS-Webtool' at http://gplusrss.com http://ift.tt/1B0BO2p

via LifeLong Community

java.net.socketinputstream.socketread0 Problem patterns ~ Java EE Support Patterns Proper timeouts should...

Please Visit: http://ift.tt/1ajReyV



java.net.socketinputstream.socketread0 Problem patterns ~ Java EE Support Patterns

Proper timeouts should be implemented, when possible, in order to prevent a domino affect situation on your Java EE application server. The timeout value should be low enough to prevent your Threads to hang for too long and tested properly (negative testing).

Socket timeouts (connect, read & write operations) for Web Services via HTTP / HTTPS are quite easy to implement and can be achieved by following your proper API documentation (JAX-WS, Weblogic, WAS, JBoss WS, Apache AXIS etc.).

http://ift.tt/15714th

Done






from Public RSS-Feed of Jeffery yuan. Created with the PIXELMECHANICS 'GPlusRSS-Webtool' at http://gplusrss.com http://ift.tt/1B0BO2d

via LifeLong Community

Cassaforte, a Clojure Cassandra client: Key Cassandra concepts http://ift.tt/15eL4Vs...

Please Visit: http://ift.tt/1ajReyV



Cassaforte, a Clojure Cassandra client: Key Cassandra concepts

http://ift.tt/17QTLqH






from Public RSS-Feed of Jeffery yuan. Created with the PIXELMECHANICS 'GPlusRSS-Webtool' at http://gplusrss.com http://ift.tt/15eL4Vw

via LifeLong Community

amitph.com > Java Tutorials: Java 8 Streams API - Intermediate Operations http://ift.tt/1sazOU1...

Please Visit: http://ift.tt/1ajReyV



amitph.com > Java Tutorials: Java 8 Streams API - Intermediate Operations

http://ift.tt/1u9Vdyt






from Public RSS-Feed of Jeffery yuan. Created with the PIXELMECHANICS 'GPlusRSS-Webtool' at http://gplusrss.com http://ift.tt/1ApdkwP

via LifeLong Community

Atomic File Moves in Java | Charles Andrews http://ift.tt/1Apdkgt

Please Visit: http://ift.tt/1ajReyV



Atomic File Moves in Java | Charles Andrews

http://ift.tt/1Apdkgt






from Public RSS-Feed of Jeffery yuan. Created with the PIXELMECHANICS 'GPlusRSS-Webtool' at http://gplusrss.com http://ift.tt/1u9Vdi2

via LifeLong Community

java - Atomically move and rename a Path instance - Stack Overflow If you need it to be atomic, you...

Please Visit: http://ift.tt/1ajReyV



java - Atomically move and rename a Path instance - Stack Overflow



If you need it to be atomic, you can use the ATOMIC_MOVE option:

import static java.nio.file.StandardCopyOption.ATOMIC_MOVE;

Files.move(path, targetPath, ATOMIC_MOVE);

Note that this can fail with an AtomicMoveNotSupportedException if the option is not supported (for example if you are moving a file from a local hard drive to a network location).

http://ift.tt/1hFEhUT

Done






from Public RSS-Feed of Jeffery yuan. Created with the PIXELMECHANICS 'GPlusRSS-Webtool' at http://gplusrss.com http://ift.tt/1ApdhRG

via LifeLong Community

Spark Streaming Programming Guide - Spark 1.1.1 Documentation Discretized Stream or DStream is the basic...

Please Visit: http://ift.tt/1ajReyV



Spark Streaming Programming Guide - Spark 1.1.1 Documentation

Discretized Stream or DStream is the basic abstraction provided by Spark Streaming. It represents a continuous stream of data, either the input data stream received from source, or the processed data stream generated by transforming the input stream

http://ift.tt/1Apdkgg






from Public RSS-Feed of Jeffery yuan. Created with the PIXELMECHANICS 'GPlusRSS-Webtool' at http://gplusrss.com http://ift.tt/1u9Vd1A

via LifeLong Community

8 Practical Linux Netcat NC Command Examples http://ift.tt/1ApdhBm...

Please Visit: http://ift.tt/1ajReyV



8 Practical Linux Netcat NC Command Examples

http://ift.tt/IaIjHh






from Public RSS-Feed of Jeffery yuan. Created with the PIXELMECHANICS 'GPlusRSS-Webtool' at http://gplusrss.com http://ift.tt/1u9Vd1k

via LifeLong Community

LinkedIn Feed: Faster with Less JVM Garbage | LinkedIn Engineering 1. Be careful with Iterators 2. Estimate...

Please Visit: http://ift.tt/1ajReyV



LinkedIn Feed: Faster with Less JVM Garbage | LinkedIn Engineering

1. Be careful with Iterators

2. Estimate the size of a collection when initializing

3. Defer expression evaluation

4. Compile the regex patterns in advance

5. Cache it if you can

6. String Interns are useful but dangerous

http://ift.tt/1AgAG9Y






from Public RSS-Feed of Jeffery yuan. Created with the PIXELMECHANICS 'GPlusRSS-Webtool' at http://gplusrss.com http://ift.tt/1Alq5se

via LifeLong Community

Things Everyone Should Do: Code Review | Good Math Bad Math http://ift.tt/1x7BOK0...

Please Visit: http://ift.tt/1ajReyV



Things Everyone Should Do: Code Review | Good Math Bad Math

http://ift.tt/1C5YBve






from Public RSS-Feed of Jeffery yuan. Created with the PIXELMECHANICS 'GPlusRSS-Webtool' at http://gplusrss.com http://ift.tt/1x7BOK2

via LifeLong Community

程序员应该关注的一些事儿 | 程序师 计算机程序的构造和解释(Structures and Interpretations of Computer Programs) 代码大全2(Code Complete...

Please Visit: http://ift.tt/1ajReyV



程序员应该关注的一些事儿 | 程序师

计算机程序的构造和解释(Structures and Interpretations of Computer Programs)

代码大全2(Code Complete 2)

程序员的修炼之道(Pragmatic Programmer)

重构-改善既有代码的设计(Refactoring)

算法导论(Introduction to Algorithms)

离散数学及其应用(Discrete Mathematics and Its Applications)

人月神话(Mythical Man Month)

http://ift.tt/1AUUDVS

Done






from Public RSS-Feed of Jeffery yuan. Created with the PIXELMECHANICS 'GPlusRSS-Webtool' at http://gplusrss.com http://ift.tt/1x7BOtJ

via LifeLong Community

bash - Fastest possible grep - Stack Overflow grep -r greps recursively through directories. On multicore...

Please Visit: http://ift.tt/1ajReyV



bash - Fastest possible grep - Stack Overflow



grep -r greps recursively through directories. On multicore CPUs GNU

parallel can often speed this up.

find . -type f | parallel -k -j150% -n 1000 -m grep -H -n STRING {}





This will run 1.5 job per core, and give 1000 arguments to grep.

For big files, it can split it the input in several chunks with the --pipe and --block arguments:

parallel --pipe --block 2M grep foo < bigfile

You could also run it on several different machines through SSH (ssh-agent needed to avoid passwords):

parallel --pipe --sshlogin server.example.com,server2.example.net grep foo < bigfile

http://ift.tt/1tM4IzS

Done






from Public RSS-Feed of Jeffery yuan. Created with the PIXELMECHANICS 'GPlusRSS-Webtool' at http://gplusrss.com http://ift.tt/1x7BOtx

via LifeLong Community

Use multiple CPU Cores with your Linux commands -- awk, sed, bzip2, grep, wc, etc. | RankFocus - Systems...

Please Visit: http://ift.tt/1ajReyV



Use multiple CPU Cores with your Linux commands -- awk, sed, bzip2, grep, wc, etc. | RankFocus - Systems and Data

http://ift.tt/17wdXuB






from Public RSS-Feed of Jeffery yuan. Created with the PIXELMECHANICS 'GPlusRSS-Webtool' at http://gplusrss.com http://ift.tt/1x7BMC4

via LifeLong Community

Intro to Apache Spark Training http://ift.tt/1x7BNWF...

Please Visit: http://ift.tt/1ajReyV



Intro to Apache Spark Training

http://ift.tt/1C5YAaG






from Public RSS-Feed of Jeffery yuan. Created with the PIXELMECHANICS 'GPlusRSS-Webtool' at http://gplusrss.com http://ift.tt/1x7BMlB

via LifeLong Community

Java 8 Features http://ift.tt/1zjjun9

Please Visit: http://ift.tt/1ajReyV



Java 8 Features

http://ift.tt/1zjjun9






from Public RSS-Feed of Jeffery yuan. Created with the PIXELMECHANICS 'GPlusRSS-Webtool' at http://gplusrss.com http://ift.tt/1zjjunb

via LifeLong Community

Java 8 Tutorial: Streams by Examples - How To Do In Java Not a data structure Designed for lambdas Do...

Please Visit: http://ift.tt/1ajReyV



Java 8 Tutorial: Streams by Examples - How To Do In Java

Not a data structure

Designed for lambdas

Do not support indexed access

Can easily be outputted as arrays or lists

Lazy access supported

Parallelizable

http://ift.tt/1zjjrro

Done






from Public RSS-Feed of Jeffery yuan. Created with the PIXELMECHANICS 'GPlusRSS-Webtool' at http://gplusrss.com http://ift.tt/1zjjrrp

via LifeLong Community

Introduction to using Spark Streaming - Presented by Tathagata Das - UC Berkeley AmpLab 2013 https:/...

Please Visit: http://ift.tt/1ajReyV



Introduction to using Spark Streaming - Presented by Tathagata Das - UC Berkeley AmpLab 2013

http://ift.tt/1t0kSmJ






from Public RSS-Feed of Jeffery yuan. Created with the PIXELMECHANICS 'GPlusRSS-Webtool' at http://gplusrss.com http://ift.tt/1szcEqY

via LifeLong Community

+1 Button: Sync users +1 in multiple +1 buttons Website may place multiple +1 button in same page: left...

Please Visit: http://ift.tt/1ajReyV



+1 Button: Sync users +1 in multiple +1 buttons

Website may place multiple +1 button in same page: left side bar and header (like http://ift.tt/1yk15Uj)



When user clicks +1 in one +1 button, all other +1 button should be also updated to show user has already clicked +1.





from Public RSS-Feed of Jeffery yuan. Created with the PIXELMECHANICS 'GPlusRSS-Webtool' at http://gplusrss.com http://ift.tt/1szcDUc

via LifeLong Community

Custom Security Filtering in Solr: Based on Access Control Lists | Javalobby http://ift.tt/1ml0hcW...

Please Visit: http://ift.tt/1ajReyV



Custom Security Filtering in Solr: Based on Access Control Lists | Javalobby

http://ift.tt/1yk15Uj






from Public RSS-Feed of Jeffery yuan. Created with the PIXELMECHANICS 'GPlusRSS-Webtool' at http://gplusrss.com http://ift.tt/1yk16ax

via LifeLong Community

Matej Tymes's Weblog : Weblog http://ift.tt/1C4MYlO

Please Visit: http://ift.tt/1ajReyV



Matej Tymes's Weblog : Weblog

http://ift.tt/1C4MYlO






from Public RSS-Feed of Jeffery yuan. Created with the PIXELMECHANICS 'GPlusRSS-Webtool' at http://gplusrss.com http://ift.tt/1C4MYlS

via LifeLong Community

Linus Torvalds: Apple's HFS+ is probably the worst file system ever | ITworld http://www.itworld.com...

Please Visit: http://ift.tt/1ajReyV



Linus Torvalds: Apple's HFS+ is probably the worst file system ever | ITworld

http://ift.tt/14XPsrG






from Public RSS-Feed of Jeffery yuan. Created with the PIXELMECHANICS 'GPlusRSS-Webtool' at http://gplusrss.com http://ift.tt/1yhhBo3

via LifeLong Community

zookeeper not starting - Stack Overflow just omit the "start" parameter and call "bin\zkServer" instead...

Please Visit: http://ift.tt/1ajReyV



zookeeper not starting - Stack Overflow



just omit the "start" parameter and call "bin\zkServer" instead.

http://ift.tt/1wVXnx7

Done






from Public RSS-Feed of Jeffery yuan. Created with the PIXELMECHANICS 'GPlusRSS-Webtool' at http://gplusrss.com http://ift.tt/1BY0t9h

via LifeLong Community

Sunil's Notes: HelloWorld - Apache Storm Word Counter program http://ift.tt/1CeIAkO...

Please Visit: http://ift.tt/1ajReyV



Sunil's Notes: HelloWorld - Apache Storm Word Counter program

http://ift.tt/1CeIAB7






from Public RSS-Feed of Jeffery yuan. Created with the PIXELMECHANICS 'GPlusRSS-Webtool' at http://gplusrss.com http://ift.tt/1y7OshT

via LifeLong Community

(1) How can I become an Apache committer? - Quora http://ift.tt/14OylJl...

Please Visit: http://ift.tt/1ajReyV



(1) How can I become an Apache committer? - Quora

http://ift.tt/14OylJl






from Public RSS-Feed of Jeffery yuan. Created with the PIXELMECHANICS 'GPlusRSS-Webtool' at http://gplusrss.com http://ift.tt/14Oymgt

via LifeLong Community

AngularJS Tutorial | tutorials.jenkov.com http://ift.tt/1fuesGn Done

Please Visit: http://ift.tt/1ajReyV



AngularJS Tutorial | tutorials.jenkov.com

http://ift.tt/1fuesGn

Done






from Public RSS-Feed of Jeffery yuan. Created with the PIXELMECHANICS 'GPlusRSS-Webtool' at http://gplusrss.com http://ift.tt/17yDZ3y

via LifeLong Community

Dev Time: Cope with Failure - Actor Supervision in Akka http://ift.tt/1y3sQDz...

Please Visit: http://ift.tt/1ajReyV



Dev Time: Cope with Failure - Actor Supervision in Akka

http://ift.tt/14Ls68A






from Public RSS-Feed of Jeffery yuan. Created with the PIXELMECHANICS 'GPlusRSS-Webtool' at http://gplusrss.com http://ift.tt/1y3sQDB

via LifeLong Community

Dev Time: Getting rid of synchronized: Using Akka from Java http://ift.tt/1y3sQn5...

Please Visit: http://ift.tt/1ajReyV



Dev Time: Getting rid of synchronized: Using Akka from Java

http://ift.tt/1y3sOvm






from Public RSS-Feed of Jeffery yuan. Created with the PIXELMECHANICS 'GPlusRSS-Webtool' at http://gplusrss.com http://ift.tt/14Ls80h

via LifeLong Community