How to Make Windows 7 Search File Contents

How to Make Windows 7 Search File Contents

http://www.wikihow.com/Make-Windows-7-Search-File-Contents



from Google Plus RSS Feed for 101157854606139706613 http://www.wikihow.com/Make-Windows-7-Search-File-Contents

via LifeLong Community

Linux Netcat command - The swiss army knife of networking - MyLinuxBook

Linux Netcat NC Command

http://mylinuxbook.com/linux-netcat-command/

http://www.thegeekstuff.com/2012/04/nc-command-examples/

1. Port scanning

$nc -z -v -n 172.31.100.7 21-25

z option tell netcat to use zero IO .i.e the connection is closed as soon as it opens and no actual data exchange take place.

n option tell netcat not to use the DNS lookup for the address.



The netcat utility can be run in the server mode on a specified port listening for incoming connections.

$ nc -l 2389

Also, it can be used in client mode trying to connect on the port(2389) just opened

$ nc localhost 2389



Use Netcat to Transfer Files

we run the server as :

$ nc -l 2389 > test

and run the client as :

cat testfile | nc localhost 2389



Server

$nc -l 1567 < file.txt

Client

$nc -n 172.31.100.7 1567 > file.txt



Server

$nc -l 1567 > file.txt

Client

$nc 172.31.100.23 1567 < file.txt



4. Directory transfer

Server

$tar -cvf – dir_name | nc -l 1567

Client

$nc -n 172.31.100.7 1567 | tar -xvf



Server

$tar -cvf – dir_name| bzip2 -z | nc -l 1567

Compress the archive using the bzip2 utility.

Client

$nc -n 172.31.100.7 1567 | bzip2 -d |tar -xvf -



7. Cloning a device

Server

$dd if=/dev/sda | nc -l 1567

Client

$nc -n 172.31.100.7 1567 | dd of=/dev/sda

dd is a tool which reads the raw data from the disk



8. Opening a shell

Server

$nc -l 1567 -e /bin/bash -i

Client

$nc 172.31.100.7 1567



$nc 172.31.100.7 1567 -p 25

$nc -u 172.31.100.7 1567 -s 172.31.100.5 > file.txt



Netcat Supports Timeouts

nc -w 10 localhost 2389

The connection above would be terminated after 10 seconds.



Force Netcat Server to Stay Up

This behavior can be controlled by using the -k flag at the server side to force the server to stay up even after the client has disconnected.

$ nc -k -l 2389



from Google Plus RSS Feed for 101157854606139706613 http://mylinuxbook.com/linux-netcat-command

via LifeLong Community

.





Jeffery yuan (https://plus.google.com/101157854606139706613/posts/NVqxqH3m7N4) via Christian jofre silva (https://plus.google.com/108949932154834297673/posts/3GRmTmoSxur)



from Google Plus RSS Feed for 101157854606139706613 https://lh4.googleusercontent.com/-wki56cfNc28/UryIIMwDgUI/AAAAAAABD6Y/yBqQ7WhZde4/w267-h200/tumblr-my8m65kioc1s9sszto1-400.gif

via LifeLong Community

“People You May Know” Friendship Recommendation with Hadoop | Important Fish

People You May Know” Friendship Recommendation with Hadoop

http://importantfish.com/people-you-may-know-friendship-recommendation-with-hadoop/



from Google Plus RSS Feed for 101157854606139706613 http://importantfish.com/people-you-may-know-friendship-recommendation-with-hadoop

via LifeLong Community

Maven - Introduction to the Dependency Mechanism

Differences between dependencymanagement and dependencies in maven

The dependency management section is a mechanism for centralizing dependency information. When you have a set of projects that inherits a common parent it's possible to put all information about the dependency in the common POM and have simpler references to the artifacts in the child POMs.



It can used to pull all the dependency information into a common POM file, simplifying the references in the child POM file.

It becomes useful when you have multiple attributes that you don't want to retype in under multiple children projects.

http://maven.apache.org/guides/introduction/introduction-to-dependency-mechanism.html#Dependency_Management

http://stackoverflow.com/questions/2619598/differences-between-dependencymanagement-and-dependencies-in-maven



from Google Plus RSS Feed for 101157854606139706613 http://maven.apache.org/guides/introduction/introduction-to-dependency-mechanism.html#Dependency_Management

via LifeLong Community

I’m sorry, can I have one?



I’m sorry, can I have one?

Jeffery yuan (https://plus.google.com/101157854606139706613/posts/TQZqb5DyyhA) via Funny GIF (https://plus.google.com/105436005014426447387/posts/UGhA3zi3LPs)



from Google Plus RSS Feed for 101157854606139706613 https://lh5.googleusercontent.com/-vR4kXMiNj2M/UrlvO7ZYZBI/AAAAAAABhjM/1rWMvVQ4Q8w/w250-h234/377.gif

via LifeLong Community

Remote Debugging of Hadoop Job with Eclipse

REMOTE DEBUGGING OF HADOOP JOB WITH ECLIPSE

http://pravinchavan.wordpress.com/2013/04/05/remote-debugging-of-hadoop-job-with-eclipse/

edit hadoop-env.sh

YARN_OPTS="-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=9999 $YARN_OPTS"

HADOOP_OPTS="-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=9999 $HADOOP_OPTS"



from Google Plus RSS Feed for 101157854606139706613 http://pravinchavan.wordpress.com/2013/04/05/remote-debugging-of-hadoop-job-with-eclipse

via LifeLong Community

WordCount - Hadoop Wiki

WordCount Example in MapReduce, Pig and Hive

WordCount Example in Hadoop

http://wiki.apache.org/hadoop/WordCount



WordCount Example in Pig

http://salsahpc.indiana.edu/ScienceCloud/pig_word_count_tutorial.htm#IV._Cluster

input = load 'mary' as (line);

words = foreach input generate flatten(TOKENIZE(line)) as word;

grpd = group words by word;

cntd = foreach grpd generate group, COUNT(words);

dump cntd;



WordCount Example in Hive

http://www.amazon.com/Programming-Hive-Edward-Capriolo/dp/1449319335/ref=sr_1_2?s=books&ie=UTF8&qid=1387858046&sr=1-2&keywords=hive

CREATE TABLE docs (line STRING);

LOAD DATA INPATH 'docs' OVERWRITE INTO TABLE docs;

CREATE TABLE word_counts AS

SELECT word, count(1) AS count FROM

(SELECT explode(split(line, '\s')) AS word FROM docs) w

GROUP BY word

ORDER BY word;



from Google Plus RSS Feed for 101157854606139706613 http://wiki.apache.org/hadoop/WordCount

via LifeLong Community

Windows PowerShell Management Cmdlets

PowerShell Resources

http://technet.microsoft.com/en-us/library/hh849827.aspx

http://ss64.com/ps/

http://searchwindowsserver.techtarget.com/tip/Top-25-Windows-PowerShell-commands-for-administrators



from Google Plus RSS Feed for 101157854606139706613 http://technet.microsoft.com/en-us/library/hh849827.aspx

via LifeLong Community

How to Create a PowerShell Profile

How to Create a PowerShell Profile

to add custom functions to profile.

Test-Path $Profile

New-Item –Path $Profile –Type File –Force

http://www.howtogeek.com/126469/how-to-create-a-powershell-profile/



from Google Plus RSS Feed for 101157854606139706613 http://www.howtogeek.com/126469/how-to-create-a-powershell-profile

via LifeLong Community

How to Extract ZIP Files Using PowerShell

How to Extract ZIP Files Using PowerShell via com

function Expand-ZIPFile($file, $destination)

{

$shell = new-object -com shell.application

$zip = $shell.NameSpace($file)

foreach($item in $zip.items())

{

$shell.Namespace($destination).copyhere($item)

}

}

Expand-ZIPFile –File "C:\howtogeeksite.zip" –Destination "C:\temp\howtogeek"

http://www.howtogeek.com/tips/how-to-extract-zip-files-using-powershell/



from Google Plus RSS Feed for 101157854606139706613 http://www.howtogeek.com/tips/how-to-extract-zip-files-using-powershell

via LifeLong Community

And the 2013 award for "Robber of the year " goes to...



And the 2013 award for "Robber of the year " goes to...

Jeffery yuan (https://plus.google.com/101157854606139706613/posts/i92SVFyHeEb) via Lorenz Lammens (https://plus.google.com/105566470114506135090/posts/ZsSjAktUMjZ)



from Google Plus RSS Feed for 101157854606139706613 https://lh5.googleusercontent.com/-YNfIMg1nfa4/UrW8Lvz15gI/AAAAAAAASn8/yP3N5ENYUgM/w250-h178/Robber%2Bof%2Bthe%2Byear%2B...gif

via LifeLong Community

Dog going for sleep…



Dog going for sleep…

Jeffery yuan (https://plus.google.com/101157854606139706613/posts/UJouguz4RHc) via Funny GIF (https://plus.google.com/105436005014426447387/posts/gnEdyGsehFz)



from Google Plus RSS Feed for 101157854606139706613 https://lh4.googleusercontent.com/-6RygAAE3dyk/UrWVYOUaR8I/AAAAAAABgiE/aaaDZLU1EE4/w216-h150/371.gif

via LifeLong Community

Google+ will make an Auto Awesome year-end video for you if you have u



Google+ will make an Auto Awesome year-end video for you if you have uploaded enough photos.



http://tnw.co/1hrDHLo

Jeffery yuan (https://plus.google.com/101157854606139706613/posts/GG9TZ2zP7Dh) via The Next Web (https://plus.google.com/115081025762845243709/posts/hj2BER1zvuu)



from Google Plus RSS Feed for 101157854606139706613 https://lh3.googleusercontent.com/-vhOLcIrnQo4/UrSTh4Rzz9I/AAAAAAABDJY/OdFF64w13yE/w786-h305/googleplus2-786x305.jpg

via LifeLong Community

Solr - User - Result order when score is the same

How Solr sort works when vaule on sort field is same

When there are several items have same value in sort field, and there's nothing to sort on, the result set will be ordered according to Lucene DocID's.

http://lucene.472066.n3.nabble.com/Result-order-when-score-is-the-same-td2816127.html



from Google Plus RSS Feed for 101157854606139706613 http://lucene.472066.n3.nabble.com/Result-order-when-score-is-the-same-td2816127.html

via LifeLong Community

Solr Resources https://cwiki.apache.org/confluence/display/solr/How+So

Solr Resources

https://cwiki.apache.org/confluence/display/solr/How+SolrCloud+Works

http://archive.apache.org/dist/lucene/solr/ref-guide/



from Google Plus RSS Feed for 101157854606139706613 https://plus.google.com/101157854606139706613/posts/Zsr1VVEsm1S

via LifeLong Community

A very special message from Chuck and I, for the G+ universe.



A very special message from Chuck and I, for the G+ universe.

Jeffery yuan (https://plus.google.com/101157854606139706613/posts/gkSXfhFiXUn) via Darrell Lee (https://plus.google.com/100010333593843286118/posts/hzjCSTRcMxK)



from Google Plus RSS Feed for 101157854606139706613 https://lh6.googleusercontent.com/-6o0ORLpRJK0/UrMqi6nbH7I/AAAAAAABXzU/_phy2AQw7Gw/w500-h279/chuck%2Bxmas.gif

via LifeLong Community

The Best Movies of 2013



Can't wait to see Her.

Jeffery yuan (https://plus.google.com/101157854606139706613/posts/HHDLrz8VvZY) via Anthony Tordillos (https://plus.google.com/101113744005755058100/posts/L1yuxnkq5bH)



from Google Plus RSS Feed for 101157854606139706613 http://www.theatlantic.com/entertainment/archive/2013/12/the-best-movies-of-2013/282451/

via LifeLong Community

What is point release?

What is a Point release

A point release is referred to as small, or minor, release of the software. The point release typically fixes bugs or cleans up minor issues. They can include new features one more rare occasions, but feature release is usually reserved for major software releases instead. Point releases are often made available fairly frequently, unlike major releases, which may occur once every few months or years.

http://www.computerhope.com/jargon/p/point-release.htm



from Google Plus RSS Feed for 101157854606139706613 http://www.computerhope.com/jargon/p/point-release.htm

via LifeLong Community

Front-end view generation with Hadoop | Datasalt

Hadoop and Solr

Front-end view generation with Hadoop

http://www.datasalt.com/2011/10/front-end-view-generation-with-hadoop/

Add a Solr contrib that allows for building Solr indexes via Hadoop's Map-Reduce.

https://issues.apache.org/jira/browse/SOLR-1301



from Google Plus RSS Feed for 101157854606139706613 http://www.datasalt.com/2011/10/front-end-view-generation-with-hadoop/

via LifeLong Community

http://whisper.sh/ seems funny :)

http://whisper.sh/ seems funny :)



from Google Plus RSS Feed for 101157854606139706613 https://plus.google.com/101157854606139706613/posts/Wi5JPo8RCtL

via LifeLong Community

Using Decompiler JDEclipse-Realign to Debug Classes without Source in Eclipse

Using Decompiler JDEclipse-Realign to Debug Classes without Source in Eclipse

http://lifelongprogrammer.blogspot.com/2013/12/using-decompiler-to-debug-classes-without-source-in-eclipse.html

1. Install and Configure JDEclipse-Realign in eclipse

2. Find jars contained classes which we want to debug

3. Create a java project with the jars

4. Enable remote debug

Other tools

JD-GUI from http://jd.benow.ca/



from Google Plus RSS Feed for 101157854606139706613 http://lifelongprogrammer.blogspot.com/2013/12/using-decompiler-to-debug-classes-without-source-in-eclipse.html

via LifeLong Community

HURRY UP!!!!



HURRY UP!!!!

Jeffery yuan (https://plus.google.com/101157854606139706613/posts/7AU14kQeAqM) via Stephanie Owens (https://plus.google.com/115741367049985639068/posts/d626r5C9TVX)



from Google Plus RSS Feed for 101157854606139706613 https://lh5.googleusercontent.com/-Uzz7ckHPitA/UrB6EwDVKEI/AAAAAAAACKc/x-3iR5KesSI/w500-h350/1zmf1hd.gif

via LifeLong Community

Here is an incredible GIF of an airport security agent catching a baby



Here is an incredible GIF of an airport security agent catching a baby that fell off of a table

Jeffery yuan (https://plus.google.com/101157854606139706613/posts/3n6mdQH84Cv) via BuzzFeed (https://plus.google.com/108807575261328575617/posts/aEUd8TRUKcz)



from Google Plus RSS Feed for 101157854606139706613 https://lh6.googleusercontent.com/-xXGFAWCbLrw/UrCFcW8cUHI/AAAAAAAAaug/M5x_sxSzU68/w400-h345/anigif_enhanced-buzz-9212-1387297766-3.gif

via LifeLong Community

How not to cat



How not to cat

Jeffery yuan (https://plus.google.com/101157854606139706613/posts/7UPUxNNSH6j) via Sergiu Gatlan (https://plus.google.com/113174899095029964471/posts/GuR3WXc384q)



from Google Plus RSS Feed for 101157854606139706613 https://lh3.googleusercontent.com/-hXq609S6-RI/Uq8oH6n8NxI/AAAAAAAAE4Y/vtLzIwqSg90/w400-h225/dEd7bFG.gif

via LifeLong Community

Using Decompiler JDEclipse-Realign to Debug Classes without Source in Eclipse

Using Decompiler JDEclipse-Realign to Debug Classes without Source in Eclipse

(Remote) debug is a great way to trouble-shooting, to figure out how the code works. But sometimes we only have the jars, no source code. For example the code is closed or proprietary, no where to get the sourc code. Luckily, we can use JDEclipse-Realign to...



from Google Plus RSS Feed for 101157854606139706613 http://lifelongprogrammer.blogspot.com/2013/12/using-decompiler-to-debug-classes-without-source-in-eclipse.html

via LifeLong Community

Advanced Usage of Linux Grep Command

Advanced Usage of Linux Grep Command

Grep recursively: -R, -r, --recursive grep -r "127" /etc Use grep to search words only: -w, --word-regexp Select only those lines containing matches that form whole words grep -w "boo" file -s, --no-messages Suppress error messages about nonexistent or unre...



from Google Plus RSS Feed for 101157854606139706613 http://lifelongprogrammer.blogspot.com/2013/12/advanced-usage-of-linux-grep-command.html

via LifeLong Community

A Great Deal, Just bought one!!! Office Depot offering 16GB Google Nex

A Great Deal, Just bought one!!! Office Depot offering 16GB Google Nexus 7 tablet for $179.99 through December 21 http://www.zdnet.com/office-depot-offering-16gb-google-nexus-7-tablet-for-179-99-through-december-21-7000024266/



from Google Plus RSS Feed for 101157854606139706613 https://plus.google.com/101157854606139706613/posts/JHETt2Amz8W

via LifeLong Community

Epic Gif of the Day! Science has the Solution.



Epic Gif of the Day!

Science has the Solution.

Jeffery yuan (https://plus.google.com/101157854606139706613/posts/b64t3skw5cn) via Bikash Das (https://plus.google.com/111572266130840576014/posts/ihLSmML22BU)



from Google Plus RSS Feed for 101157854606139706613 https://lh5.googleusercontent.com/-LUazjU7eBlw/UqnZEDDjTHI/AAAAAAAAwjY/EsqAr7SmU-4/w460-h260/Troll-science-has-the-solution.gif

via LifeLong Community

How to Disable SELinux

How to Enable/Disable SELinux

Temporarily switch off enforcement

echo 0 >/selinux/enforce

echo 1 >/selinux/enforce



Permanently Disable

vi /etc/selinux/config

SELINUX=disabled

SELINUXTYPE=targeted

http://www.crypt.gen.nz/selinux/disable_selinux.html



from Google Plus RSS Feed for 101157854606139706613 http://www.crypt.gen.nz/selinux/disable_selinux.html

via LifeLong Community

Linux DNS Setup

http://www.redhat.com/magazine/025nov06/features/dns/
http://www.redhat.com/magazine/026dec06/features/dns/
http://ostechnix.wordpress.com/2013/01/25/setup-dns-server-step-by-step-in-centos-6-3-rhel-6-3-scientific-linux-6-3-3/

yum install bind  bind-utils bind-libs bind-chroot caching-nameserver -y
vi /var/named/chroot/etc/named.conf 
acl localdomain-com { 172.19/16; };
options {
directory "/var/named";
  allow-query { localdomain-com; };
forwarders { 172.19.59.7; 172.19.218.7; }; #IP of upstream ISP nameserver(s)
#forward only; #rely completely on our upstream nameservers
};
zone "localdomain.com" IN {
        type master;
        file "localdomain.com.zone";
};
zone "19.172.in-addr.arpa" IN {
        type master;
        file "172.19.zone";            
};

cd /var/named/chroot/var/named
touch localdomain.com.zone
chown named:named localdomain.com.zone
chmod 644 localdomain.com.zone
touch 172.19.zone
chown named:named 172.19.zone
chmod 644 172.19.zone

vi localdomain.com.zone
$TTL 1D
localdomain.com.             IN      SOA     bigdata0.localdomain.com. foo.bar.tld. (
                                200612060                 ; serial
                                2H                        ; refresh slaves
                                5M                        ; retry
                                1W                        ; expire
                                1M                        ; Negative TTL
                                )

@                       IN      NS      bigdata0.localdomain.com.

bigdata0.localdomain.com.       IN      A       172.19.97.141 
bigdata1.localdomain.com.        IN      A       172.19.101.66 
bigdata2.localdomain.com.      IN      A       172.19.102.56

bigdata0 172.19.97.141
bigdata1 172.19.101.66
bigdata2  172.19.102.56

vi 172.19.zone
$TTL 1D
$ORIGIN 19.172.IN-ADDR.ARPA.

@       IN      SOA     bigdata0.localdomain.com. foo.bar.tld. (
200612060       ; serial
2H              ; refresh slaves
5M              ; retry
1W              ; expire
1M              ; Negative TTL
)

        IN      NS      bigdata0.localdomain.com.
141.197      IN      PTR     bigdata0.localdomain.com.
66.101       IN      PTR     bigdata1.localdomain.com.
56.102       IN      PTR     bigdata2.localdomain.com.


bigdata0 172.19.97.141
bigdata1 172.19.101.66
bigdata2  172.19.102.56

vi /etc/resolv.conf
search localdomain.com
nameserver 172.19.97.141

chmod 644 /var/named/chroot/etc/named.conf 
named-checkconf /var/named/chroot/etc/named.conf 

Prevent get overwritten
vi /etc/sysconfig/network-scripts/ifcfg-eth0
PEERDNS=no

service named restart 
chkconfig named on
/etc/init.d/network restart

rndc reload
rndc querylog

/etc/init.d/iptables stop
chkconfig iptables off
host -v -t A `hostname`

Disable SELinux
setenforce 0
vi /etc/selinux/config
SELINUX=disabled
SELINUXTYPE=targeted

Making the Most Of Google Drive With Integrated Apps http://www.makeus

Making the Most Of Google Drive With Integrated Apps http://www.makeuseof.com/tag/making-the-most-of-google-drive-with-integrated-apps/



from Google Plus RSS Feed for 101157854606139706613 https://plus.google.com/101157854606139706613/posts/38HJLcZazui

via LifeLong Community

GDrive + PdfZen is perfect I have one account storing all my pdfs. I l

GDrive + PdfZen is perfect

I have one account storing all my pdfs. I like to read them and while read pdf, I will make some change, such as mark or highlight.



GDrive + PdfZen solves my problem perfectly.

It allows me to read them anywhere and edit them anywhere. Life is better :)



One Example:

https://pdfzen.com/1914b7



from Google Plus RSS Feed for 101157854606139706613 https://plus.google.com/101157854606139706613/posts/8pc26Svj2bm

via LifeLong Community

Synchronize the system clock to Network Time Protocol (NTP) under Fedora or Red Hat Linux

Synchronize Linux System Clock

yum install ntp

/etc/init.d/ntpd start

ntpdate pool.ntp.org

http://www.cyberciti.biz/tips/synchronize-the-system-clock-to-network-time-protocol-ntp-under-fedora-or-red-hat-linux.html



from Google Plus RSS Feed for 101157854606139706613 http://www.cyberciti.biz/tips/synchronize-the-system-clock-to-network-time-protocol-ntp-under-fedora-or-red-hat-linux.html

via LifeLong Community

Raspberry Pi is Hot, so just bought this Ultimate Starter Kit--Include

Raspberry Pi is Hot, so just bought this Ultimate Starter Kit--Includes Raspberry Pi Board+11 Essential Accessories from Amazon. Expecting..



from Google Plus RSS Feed for 101157854606139706613 https://plus.google.com/101157854606139706613/posts/XwnbJVWnysp

via LifeLong Community

HowTo Disable The Iptables Firewall in Linux

HowTo Enable/Disable The Iptables Firewall in Linux( #linux , #lifelongprogrammer )

http://www.cyberciti.biz/faq/turn-on-turn-off-firewall-in-linux/

# /etc/init.d/iptables save

# /etc/init.d/iptables stop

# chkconfig iptables off



# /etc/init.d/iptables start

# chkconfig iptables on



from Google Plus RSS Feed for 101157854606139706613 http://www.cyberciti.biz/faq/turn-on-turn-off-firewall-in-linux/

via LifeLong Community

Learning R Language

RStudio
http://www.rstudio.com/

RevolutionAnalytics / RHadoop
https://github.com/RevolutionAnalytics/RHadoop/wiki

Enabling R on Hadoop
http://www.slideshare.net/Hadoop_Summit/enabling-r-on-hadoop

R and Hadoop Data Analysis – RHadoop
http://bighadoop.wordpress.com/2013/02/25/r-and-hadoop-data-analysis-rhadoop/

*Save Your Plots*
http://www.r-bloggers.com/automatically-save-your-plots-to-a-folder/
jpeg(file = "C://R//SAVEHERE//myplot.jpg")
plot(x,y)
dev.off()

Videos
http://www.youtube.com/watch?v=enVcKR9RMzQ

solr

Solr and R language ( #solr , #lifelongprogrammer )

https://github.com/ropensci/solr require('solr')

require('RJSONIO'

a <- solr_search(q='*:*', rows=2, fl='id', url=url, key=key)

a$response



Via https://github.com/ropensci/solr via http://grss.magentariver.com/feed?gid=101157854606139706613

truth

Truth framework for Junit(#lifelongprogrammer)

https://github.com/truth0/truth

ASSERT.that(blah).isMoreThan(5);

ASSERT.that(m).isEqualTo(expected);

ASSERT.that(collectionA).has().item(q);



Via https://github.com/truth0/truth via http://grss.magentariver.com/feed?gid=101157854606139706613

SAX Error – MalformedByteSequenceException: Invalid byte 1 of 1-byte UTF-8 sequence. via http://www.mkyong.com/java/sax-error-malformedbytesequenceexception-invalid-byte-1-of-1-byte-utf-8-sequence/

SAX Error – MalformedByteSequenceException: Invalid Byte 1 Of 1-Byte UTF-8 Sequence. ( #lifelongprogrammer )

InputSource is = new InputSource(reader);

is.setEncoding("UTF-8");

http://www.mkyong.com/java/sax-error-malformedbytesequenceexception-invalid-byte-1-of-1-byte-utf-8-sequence/



Via http://www.mkyong.com/java/sax-error-malformedbytesequenceexception-invalid-byte-1-of-1-byte-utf-8-sequence/

Advanced ListenableFuture capabilities via http://nurkiewicz.blogspot.com/2013/02/advanced-listenablefuture-capabilities.html?m=1

Advanced ListenableFuture capabilities (#lifelongprogrammer)



Via http://nurkiewicz.blogspot.com/2013/02/advanced-listenablefuture-capabilities.html?m=1

Improve Your Java Code, Functional-Style—Now! ( #lifelongprogrammer ) via https://plus.google.com/101157854606139706613/posts/eF2itUpxJBY

Improve Your Java Code, Functional-Style—Now! ( #lifelongprogrammer )

Improve Your Java Code, Functional-Style—Now!



Via https://plus.google.com/101157854606139706613/posts/eF2itUpxJBY

Git Tip of the Week: Detached Heads - AlBlue’s Blog via http://alblue.bandlem.com/2011/08/git-tip-of-week-detached-heads.html

Git Detached Heads ( #lifelongprogrammer )

http://alblue.bandlem.com/2011/08/git-tip-of-week-detached-heads.html

http://gitolite.com/concepts/detached-head.html



Via http://alblue.bandlem.com/2011/08/git-tip-of-week-detached-heads.html

Google Guava Quickie: Clean toString methods « EclipseSource Blog via http://eclipsesource.com/blogs/2012/07/24/google-guava-quickie-clean-tostring-methods/

Google Guava Quickie: Clean toString methods (#lifelongprogrammer)



Via http://eclipsesource.com/blogs/2012/07/24/google-guava-quickie-clean-tostring-methods/

Guava - simple recipes to make your Java code cleaner, 1st part

#lifelongprogrammer

Guava - simple recipes to make your Java code cleaner, 1st part


Solr Search Result (attribute-to-tag) customization using XsltResponseWriter | myjeeva blog

Remove The Fluff With Google Guava

(#lifelongprogrammer) Remive the fluff with Google Guava


Split string and trim every element

Guava rocks.Use CharMatcher and Splitter.
static Splitter split = Splitter.on(CharMatcher.anyOf("#")).trimResults().omitEmptyStrings();
static Joiner join = Joiner.on(", ");
System.out.println(join.join(split.split(test)));
http://stackoverflow.com/questions/7987149/split-string-and-trim-every-element