01.03.2015 04:21

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








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

via LifeLong Community

Python web framework: flask http://ift.tt/1EBionV http://flask.pocoo.org/ http://www.f...

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









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

via LifeLong Community

Tips for using Pip + Virtualenv + Virtualenvwrapper http://ift.tt/1EBilZ4...

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



Tips for using Pip + Virtualenv + Virtualenvwrapper

http://ift.tt/1FJj1d9

http://ift.tt/1FJj1tm

pip - makes installing and uninstalling python packages easier than easy_install

virtualenv - let's you keep python dependencies in an isolated environment

virtualenvwrapper - makes virtualenv usable, by managing where dependencies are stored and including a bunch of convenient scripts






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

via LifeLong Community

Introduction to Docker First Steps for Containerizing Software Applications http://ift.tt/vM82ak...

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



Introduction to Docker

First Steps for Containerizing Software Applications

http://ift.tt/1tUwuam

http://ift.tt/1FJj1d3

http://ift.tt/1EBilII

http://ift.tt/1FJj4p5






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

via LifeLong Community

bash script that process input from pipeline or file redirection http://ift.tt/18zh1tR...

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



bash script that process input from pipeline or file redirection

http://ift.tt/1Ap9qDD

if [ -e $1 ] ;then read str; else str=$1;fi



http://ift.tt/18zh4pn

while read line; do echo -e "$line\n"; done < file.txt






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

via LifeLong Community

Sublime Keyboard Shortcuts - Windows/Linux http://ift.tt/18zh48W...

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



Sublime Keyboard Shortcuts - Windows/Linux

http://ift.tt/SL84Tp

Ctrl + KU Transform to Uppercase

Ctrl + KL Transform to Lowercase

Ctrl + P Quick-open files by name

Ctrl + G Goto line in current file

Ctrl + ; Goto word in current file

http://ift.tt/1ik81fu






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

via LifeLong Community

Recommend professional skills related YouTube video on Google Now

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



Recommend professional skills related YouTube video on Google Now





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

via LifeLong Community

Learning Solr: How to import CSV String into Solr Examples we find on web are usually to import csv ...

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



Learning Solr: How to import CSV String into Solr

Examples we find on web are usually to import csv files into Solr, here I want to to show how to import CSV string into Solr. Why we want to import CSV string? 1 Compared to importing csv files: importing csv string would be much faster, as no unnecessary I...






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

via LifeLong Community

Learning Solr Code: Import Data to Solr The main logic is at solr.servlet.SolrRequestParsers.parse(SolrCore...

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



Learning Solr Code: Import Data to Solr

The main logic is at solr.servlet.SolrRequestParsers.parse(SolrCore, String, HttpServletRequest) public SolrQueryRequest parse( SolrCore core, String path, HttpServletRequest req ) throws Exception

{

SolrRequestParser parser = standard;



ArrayLi...






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

via LifeLong Community

Solr: How to Shrink Index Size To reduce index size, we should try best to understand the application’s...

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



Solr: How to Shrink Index Size

To reduce index size, we should try best to understand the application’s requirement, what each field means, what type it should be(for example, tlong or tint), what tokenizer or filter should be used, what what queries user may make. Indexed and Stored If ...






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

via LifeLong Community

Part 3: Use Pack200 to Shrink Solr Application Size Part 1: Shrink Solr Application Size Part 2: Use...

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



Part 3: Use Pack200 to Shrink Solr Application Size

Part 1: Shrink Solr Application Size Part 2: Use Proguard to Shrink Solr Application Size Part 3: Use Pack200 to Shrink Solr Application Size In order to continue to reduce the installation file, I decide to use pack200 to shrink jar size. Please refer to h...






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

via LifeLong Community

Solr: Writing Solr Test Case It is important to write test cases to automate tests - even your company...

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



Solr: Writing Solr Test Case

It is important to write test cases to automate tests - even your company doesn't require to check in test cases, as it can save you a lot of time to rerun manual tests whenever you change something, also it's very common that you make some change, you thin...






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

via LifeLong Community

Start Stop Embedded Jetty Programmatically Recently I am trying to package embedded jetty, solr.war,...

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



Start Stop Embedded Jetty Programmatically

Recently I am trying to package embedded jetty, solr.war, and solr.home in one package, and start and shut the embedded jetty server dynamically. About how to package embedded jetty, solr.war, and solr.home in one package, and reduce the size, please refer ...






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

via LifeLong Community

27.02.2015 03:26

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








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

via LifeLong Community

Eclipse Compare. Ignoring Java Formatting Changes Not Only Whitespace. http://ift.tt/1Aw62eR...

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



Eclipse Compare. Ignoring Java Formatting Changes Not Only Whitespace.

http://ift.tt/17UR9r1






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

via LifeLong Community

Online sample sentence database or search engine http://ift.tt/lAicF2 http://ift.tt/LgOh6S...

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



Online sample sentence database or search engine

http://ift.tt/lAicF2

http://ift.tt/1wgPwKq






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

via LifeLong Community

Sublime Text 2 Tips and Shortcuts http://ift.tt/1DlkBTO https://gis...

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



Sublime Text 2 Tips and Shortcuts

http://ift.tt/1DlkBTO

http://ift.tt/1d7ECQT






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

via LifeLong Community

25.02.2015 16:28

25.02.2015 16:02

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








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

via LifeLong Community

Bug 422908 - [organize imports] Add 'Skip' to Organize Import dialog It's very useful to be able to ...

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



Bug 422908 - [organize imports] Add 'Skip' to Organize Import dialog

It's very useful to be able to skip some classes when adding import.



Also when we select one class to import, the import statement should be added into code immediately. So we don't have to resolve all missing import in one operation.

http://ift.tt/1zG0Lxn






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

via LifeLong Community

Eclipse: Codetrails Connect http://ift.tt/18jBKBF http://ift.tt/18jBKBJ...

Extending the Eclipse IDE - Plug-in development - Tutorial http://ift.tt/1vwIOFh...

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



Extending the Eclipse IDE - Plug-in development - Tutorial

http://ift.tt/RK82wN

4.2. Start an Eclipse IDE with your plug-in

For this, select either your project folder or your MANIFEST.MF file, right-click on it and select Run-As → Eclipse Application.

5. Local deployment of your plug-in



http://ift.tt/17UR9r1

http://ift.tt/1vwIOFl






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

via LifeLong Community

24.02.2015 20:36

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








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

via LifeLong Community

Tech Videos to kill time http://ift.tt/17sUEFl http://ift.tt/wjgBk1...

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








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

via LifeLong Community