check later

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



check later



Create Google Chrome extension in five minutes with Chrome Extension Creator. It is powerful and easy to use tool that allows to create stylish extensions for Google Chrome in minutes.







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

via LifeLong Community

Tracking changes to web page content http://ift.tt/1buSVy9 http://page2rss.com

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



Tracking changes to web page content

http://ift.tt/1buSVy9



http://page2rss.com



It is difficult enough tracking down relevant and useful sites, but keeping up with changes to the pages is an impossible task when you have more than a dozen or so to monitor. Link checkers such as Xenu Link Sleuth (http://ift.tt/pKCnYg) can alert you to pages that have ...







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

via LifeLong Community

Day 29: Yeoman Chrome Generator--Write Your First Google Chrome Extension http://ift.tt/11iDe6x...

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



Day 29: Yeoman Chrome Generator--Write Your First Google Chrome Extension

http://ift.tt/1bSXHS9



Here's how to write your first Google chrome extension using Yeoman Chrome Generator.







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

via LifeLong Community

Learning 30 Technologies in 30 Days: A Developer Challenge http://ift.tt/1m9uNUZ...

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



Learning 30 Technologies in 30 Days: A Developer Challenge

http://ift.tt/1b6hAXa



Learning 30 new technologies in 30 days. A blog series focused on JavaScript related tools, frameworks, and APIs







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

via LifeLong Community

Bloom filter Bloom filter http://ift.tt/qQh60F Guava Bloom filter http://codingjunkie.net...

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



Bloom filter

Bloom filter

http://ift.tt/qQh60F

Guava Bloom filter

http://ift.tt/GNOHlB

http://ift.tt/UzOZDg

Ruby ContinuousBloomfilter

http://ift.tt/1m9uNEn



Application

Using a bloom filter to reduce expensive operations like disk IO

http://ift.tt/1gHNvnk

Bloom Filter in Oralce

http://ift.tt/1m9uNEq

http://ift.tt/192HkTR



An empty Bloom filter is a bit array of m bits, all set to 0. There must also be k different hash functions defined, each of which maps or hashes some set element to one of the m array positions with a uniform random distribution. To add an element, feed it to each of the k hash functions to get ...







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

via LifeLong Community

Trove library: using primitive collections for performance http://ift.tt/1fpyyRl...

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



Trove library: using primitive collections for performance

http://ift.tt/17l21bM

http://ift.tt/1fpyBwv

http://ift.tt/1fhJ1zh



This article describes various ways of making your Java code faster by using Trove collections performance library (lists, maps, sets).







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

via LifeLong Community

Boost Search Relevancy Using boilerpipe, Nutch and Solr The Problem We use Nutch to crawl web sites ...

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



Boost Search Relevancy Using boilerpipe, Nutch and Solr

The Problem We use Nutch to crawl web sites and save the content into Solr for search. A website usally applies a template which defines header, footer, navigation menu. Take one faked storage related documentation site as an example. The word storage appea...



The Problem We use Nutch to crawl web sites and save the content into Solr for search. A website usally applies a template which defines header, footer, navigation menu. Take one faked storage related documentation site as ...







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

via LifeLong Community

Library: boilerpipe boilerpipe provides algorithms to detect and remove the surplus "clutter" (boilerplate...

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



Library: boilerpipe

boilerpipe provides algorithms to detect and remove the surplus "clutter" (boilerplate, templates) around the main textual content of a web page.

Can be used with Nutch and Solr when crawl web page.

Just call http://ift.tt/1haNgjf to highlight the main content of an arbitrary URL.

http://ift.tt/106wMPw

http://ift.tt/1gX4FwZ





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

via LifeLong Community

Text Mining: Integrate UIMA Regular Expression Annotator with Solr http://ift.tt/1ajReyV...

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



Text Mining: Integrate UIMA Regular Expression Annotator with Solr

http://ift.tt/NRoIjV

Introduce how to deploy RegexAnnotator as SOAP web service, add extra regex to extract other types of entities like phone number and how to integrate it with Solr.



Text Mining: Integrate UIMA Regular Expression Annotator with Solr







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

via LifeLong Community

Windows PowerShell Aliases http://ift.tt/1nkqkzx get-alias Finding...

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



Windows PowerShell Aliases

http://ift.tt/1nkqkzx get-alias

Finding Aliases

get-alias | where-object {$_.Definition -match "Get-Childitem"}



Creating Aliases

Set-Alias d Get-Date



Keeping Aliases Around - Persisting Alias

Export-Alias C:\Files\MyAliases.txt

Import-Alias MyAliases.txt



Alias Defined. Within PowerShell, an alias is another name assigned to a cmdlet, function, script, executable file, and so on. Just about anything you can run from the PowerShell command prompt can have an alias assigned to it. We'll explain how this works, and why you'd even care about it, ...







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

via LifeLong Community

Using Powershell Get-ChildItem List All Java Files in All Subfolders gci -Recurse -filter *.java | %...

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



Using Powershell Get-ChildItem

List All Java Files in All Subfolders gci -Recurse -filter *.java | % { $.FullName } Use gci | gm to check the type of $ and its properties and methods $_ is TypeName: System.IO.FileInfo, and has properties like Name,BaseName,FullName, Length. Miscs If we...



List All Java Files in All Subfolders gci -Recurse -filter *.java | % { $_.FullName } Use gci | gm to check the type of $_ and its properties and methods $_ is TypeName: System.IO.FileInfo, and has properties like Name,Base...







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

via LifeLong Community

Gmail canned response

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



Gmail canned response



How to Use Canned Responses in Gmail. If you need to send similar email responses out to a number of people, consider using a Google Lab feature called "Canned Responses." This feature allows you to save an email as a canned response and...







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

via LifeLong Community