<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:media="http://search.yahoo.com/mrss/"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>读书笔记 - 四号程序员</title>
	<atom:link href="https://www.coder4.com/archives/tag/%E8%AF%BB%E4%B9%A6%E7%AC%94%E8%AE%B0/feed" rel="self" type="application/rss+xml" />
	<link>https://www.coder4.com</link>
	<description>Keep It Simple and Stupid</description>
	<lastBuildDate>Wed, 26 Feb 2014 14:46:53 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.3</generator>
	<item>
		<title>Android Programming The Big Nerd Ranch Guide 第11-15章</title>
		<link>https://www.coder4.com/archives/4130</link>
					<comments>https://www.coder4.com/archives/4130#respond</comments>
		
		<dc:creator><![CDATA[coder4]]></dc:creator>
		<pubDate>Sat, 15 Feb 2014 14:37:28 +0000</pubDate>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Android Programming The Big Nerd Ranch Guide]]></category>
		<category><![CDATA[读书笔记]]></category>
		<guid isPermaLink="false">http://www.coder4.com/?p=4130</guid>

					<description><![CDATA[第11章 1、Android基本的左右滑屏（Swipe），是通过ViewPager组件实现的。 2、ViewPager需要关联一个PagerAdapter。由后者提供滑动时所需要展现的Fragment。 3、PagerAdapter大致有2种：FragmentStatePagerAdapter、FragmentPagerAdapter。 前者的用法如下： mViewPager.setAdapter(new FragmentStatePagerAdapter(fm) {[......] 继续阅读]]></description>
		
					<wfw:commentRss>https://www.coder4.com/archives/4130/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Android Programming The Big Nerd Ranch Guide 第1-5章</title>
		<link>https://www.coder4.com/archives/4122</link>
					<comments>https://www.coder4.com/archives/4122#respond</comments>
		
		<dc:creator><![CDATA[coder4]]></dc:creator>
		<pubDate>Fri, 31 Jan 2014 14:29:07 +0000</pubDate>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[读书笔记]]></category>
		<guid isPermaLink="false">http://www.coder4.com/?p=4122</guid>

					<description><![CDATA[第一章 1、Activity：Android中负责与屏幕、用户等进行交互。可以通过继承Activity，并在其子类中实现程序的逻辑功能。格式例如QuizActivity。 2、layout文件存放在res/layout下，格式例如activity_quiz.xml。 3、layout一般由布局(Layout)、组件(Widgets)等组成。 常见布局：RelativeLayout、LinearLayout(竖排列的vertical、横排列的horizontal)。 [......] 继续阅读]]></description>
		
					<wfw:commentRss>https://www.coder4.com/archives/4122/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Perl读书笔记(2)</title>
		<link>https://www.coder4.com/archives/3913</link>
					<comments>https://www.coder4.com/archives/3913#respond</comments>
		
		<dc:creator><![CDATA[coder4]]></dc:creator>
		<pubDate>Sun, 16 Jun 2013 13:11:53 +0000</pubDate>
				<category><![CDATA[Perl]]></category>
		<category><![CDATA[读书笔记]]></category>
		<guid isPermaLink="false">http://www.coder4.com/?p=3913</guid>

					<description><![CDATA[Learning Perl 6th Chapter 3 and Chapter 4 1、List是Scalar变量的有序集合，Array是List集合所对应的具体变量（List是数据，Array是对应的存储空间）。 2、与Python类似，Perl的List中变量可以是不同的Scalar元素。 3、Array的定义、下标访问如下： #!/usr/bin/perl $a[0] = 1; $a[1] = &#34;2&#34;; $a[2] = 3; print[......] 继续阅读]]></description>
		
					<wfw:commentRss>https://www.coder4.com/archives/3913/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Perl读书笔记(1)</title>
		<link>https://www.coder4.com/archives/3901</link>
					<comments>https://www.coder4.com/archives/3901#respond</comments>
		
		<dc:creator><![CDATA[coder4]]></dc:creator>
		<pubDate>Fri, 07 Jun 2013 15:14:03 +0000</pubDate>
				<category><![CDATA[Perl]]></category>
		<category><![CDATA[读书笔记]]></category>
		<guid isPermaLink="false">http://www.coder4.com/?p=3901</guid>

					<description><![CDATA[Learning Perl 6th Chapter 1 and Chapter 2 1、Perl的优点：开发相对快速（比较于C），功能强大，执行效率较高（相对于Python），可移植性。 2、Perl脚本中，直接用`cmd`执行其他Shell命令，类似于SH脚本。 #!/usr/bin/perl $result=`ls -alh`; print $result; 3、上述$是scalar变量（标量，单一变量），而@表示Array变量（数组）。 4、Perl支持In[......] 继续阅读]]></description>
		
					<wfw:commentRss>https://www.coder4.com/archives/3901/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>读书笔记：Hibernate基本用法(JavaEE 企业应用实战，3rd)</title>
		<link>https://www.coder4.com/archives/3722</link>
					<comments>https://www.coder4.com/archives/3722#respond</comments>
		
		<dc:creator><![CDATA[coder4]]></dc:creator>
		<pubDate>Mon, 24 Dec 2012 02:54:11 +0000</pubDate>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[HIbernate]]></category>
		<category><![CDATA[基本用法]]></category>
		<category><![CDATA[读书笔记]]></category>
		<guid isPermaLink="false">http://www.coder4.com/?p=3722</guid>

					<description><![CDATA[李刚的书写的很晦涩，不知道那么多人捧是为什么……对照着官方Document看了一下，基本就是把那文档翻译过来了，只不过裁剪了一些废话。 但是很多翻译的都不明白。 以下是结合书中第五章《Hibernate基本用法》和官方文档中所述，学习所得。 1、Hibernate的第一个例子。 使用Hibernate ORM框架开发的程序一般是四个部分组成： POJO(代表一个实体) 实体的hbm映射 Hibernate总体配置(数据库连接等) Java代码，用于驱动[......] 继续阅读]]></description>
		
					<wfw:commentRss>https://www.coder4.com/archives/3722/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Search Engines: Information Retrieval in Practice – 第7章</title>
		<link>https://www.coder4.com/archives/3672</link>
					<comments>https://www.coder4.com/archives/3672#respond</comments>
		
		<dc:creator><![CDATA[coder4]]></dc:creator>
		<pubDate>Thu, 01 Nov 2012 12:42:52 +0000</pubDate>
				<category><![CDATA[搜索技术]]></category>
		<category><![CDATA[Information Retrieval in Practice]]></category>
		<category><![CDATA[Search Engines]]></category>
		<category><![CDATA[信息检索实践]]></category>
		<category><![CDATA[检索模型]]></category>
		<category><![CDATA[第7章]]></category>
		<category><![CDATA[第七章]]></category>
		<category><![CDATA[读书笔记]]></category>
		<guid isPermaLink="false">http://www.coder4.com/?p=3672</guid>

					<description><![CDATA[这章想看很久了，信息检索最核心的东西：检索模型(Retrieval Models)！ 1、信息检索发展45年来的核心问题：让人们找到所需要的信息。 2、理想很丰满，但现实很骨感，我们现在只能做好一件事情：对文档进行排序，让最相关的排在前面----这就是信息检索模型。 3、检索模型的成功应用，让1990s间，检索效果提升了100%以上。 4、说到“文档相关”，有两组需要区分的概念： (1)话题相关 or 用户相关。用户相关显然是最理想的情况，但一般很难实现，多数情况，还是[......] 继续阅读]]></description>
		
					<wfw:commentRss>https://www.coder4.com/archives/3672/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>轻量级JavaEE企业应用实战(SSH框架) - 读书笔记 - 第一章</title>
		<link>https://www.coder4.com/archives/3389</link>
					<comments>https://www.coder4.com/archives/3389#respond</comments>
		
		<dc:creator><![CDATA[coder4]]></dc:creator>
		<pubDate>Thu, 07 Jun 2012 13:39:35 +0000</pubDate>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[JavaEE]]></category>
		<category><![CDATA[SSH框架]]></category>
		<category><![CDATA[第一章]]></category>
		<category><![CDATA[读书笔记]]></category>
		<category><![CDATA[轻量级]]></category>
		<guid isPermaLink="false">http://www.coder4.com/?p=3389</guid>

					<description><![CDATA[本章主要是JSP和Servlet，很多细节以前真没注意过。 1、JSP同Servlet本质是一样的。JSP最终必须编译成Servlet才能运行。 2、早期的J2EE应用，都是JSP为主组成的。但随着业务逻辑不断复杂，JSP充当过多角色就显得不合适了。如今J2EE应用中，JSP已经变成单一的表现层计数，不再包含逻辑组件和持久层逻辑。 3、构建Web应用，一个构建的应用目录应该如下： &#60;xxxx&#62; - Web应用名称、可以改变 &#124; -  &#60;a.jsp&#038;[......] 继续阅读]]></description>
		
					<wfw:commentRss>https://www.coder4.com/archives/3389/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Java核心技术卷II(第8版) – 读书笔记 – 第12章</title>
		<link>https://www.coder4.com/archives/3014</link>
					<comments>https://www.coder4.com/archives/3014#respond</comments>
		
		<dc:creator><![CDATA[coder4]]></dc:creator>
		<pubDate>Sun, 08 Apr 2012 14:52:23 +0000</pubDate>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Java && J2EE]]></category>
		<category><![CDATA[Java核心技术]]></category>
		<category><![CDATA[分布式对象]]></category>
		<category><![CDATA[卷2]]></category>
		<category><![CDATA[核心技术]]></category>
		<category><![CDATA[第12章]]></category>
		<category><![CDATA[读书笔记]]></category>
		<guid isPermaLink="false">http://www.coder4.com/?p=3014</guid>

					<description><![CDATA[本章的内容是JNI(Java Native Interface)，即从Java中访问本地方法（其他语言）。 1、当需要在Java中嵌入其他语言编写的代码，如C时，后者称为本地代码。 2、一般来说，Java虽然在单纯运算方面效率慢于C等，但这往往不是性能瓶颈。例如密码运算在某C/S中占用的时间为10%，网络、I/O速度占90%，用C比Java快两倍，则speedup只有1+0.1*2=1.2，只提升了20%（阿姆达尔定律）。 3、当然，如果项目是遗留的，之前已经有了大量，无法被迁[......] 继续阅读]]></description>
		
					<wfw:commentRss>https://www.coder4.com/archives/3014/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Java核心技术卷II(第8版) – 读书笔记 – 第11章</title>
		<link>https://www.coder4.com/archives/3002</link>
					<comments>https://www.coder4.com/archives/3002#respond</comments>
		
		<dc:creator><![CDATA[coder4]]></dc:creator>
		<pubDate>Fri, 30 Mar 2012 15:23:40 +0000</pubDate>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Java && J2EE]]></category>
		<category><![CDATA[Java核心技术]]></category>
		<category><![CDATA[卷2]]></category>
		<category><![CDATA[核心技术]]></category>
		<category><![CDATA[第11章]]></category>
		<category><![CDATA[读书笔记]]></category>
		<guid isPermaLink="false">http://www.coder4.com/?p=3002</guid>

					<description><![CDATA[1、Java已经逐渐支持在源代码中内嵌调用其他脚本语言，如Javascript / Groovy等。此外，也支持源代码注解，以上这些都是通过编译器API完成的。 2、要内嵌脚本，首先要获取脚本引擎： // Make manager first ScriptEngineManager manager = new ScriptEngineManager(); // name could be js/groovy/schema ... ScriptEngine engine = mana[......] 继续阅读]]></description>
		
					<wfw:commentRss>https://www.coder4.com/archives/3002/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Java核心技术卷II(第8版) – 读书笔记 – 第10章</title>
		<link>https://www.coder4.com/archives/2997</link>
					<comments>https://www.coder4.com/archives/2997#respond</comments>
		
		<dc:creator><![CDATA[coder4]]></dc:creator>
		<pubDate>Thu, 29 Mar 2012 12:31:53 +0000</pubDate>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Java && J2EE]]></category>
		<category><![CDATA[Java核心技术]]></category>
		<category><![CDATA[分布式对象]]></category>
		<category><![CDATA[卷2]]></category>
		<category><![CDATA[核心技术]]></category>
		<category><![CDATA[第9章]]></category>
		<category><![CDATA[读书笔记]]></category>
		<guid isPermaLink="false">http://www.coder4.com/?p=2997</guid>

					<description><![CDATA[1、本章关注Java分布式技术，特别是用于两个Java虚拟机之间的远程方法调用RMI。 2、我们想要这样一种机制：客户端的程序员以常规方式进行方法调用，而无需关心在数据在网络上传输或者解析响应的问题（解决方法是在客户端上安装一个代理类，由他处理技术细节）。 3、类似的，服务器端也需要有这样的功能，让传输和业务逻辑分离，于是有了如下的结构： 客户端 &#60;-调用本地方法、返回-&#62; 代理 &#60;--&#62;代理 &#60;-调用本地方法，返回-&#62; 服务器 4、代[......] 继续阅读]]></description>
		
					<wfw:commentRss>https://www.coder4.com/archives/2997/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
