<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title type="html">Abner's Postgraduate Days</title>
<link rel="alternate" type="text/html" href="http://algorithm.cs.nthu.edu.tw/~abnercyh/blog"/>
<link rel="self" type="application/atom+xml" href="http://algorithm.cs.nthu.edu.tw/~abnercyh/blog/atom.xml"/>
<updated>2007-03-26T18:19:30+08:00</updated>
<author>
<name>Abner Chih Yi Huang</name>
<uri>http://algorithm.cs.nthu.edu.tw/~abnercyh/blog</uri>
</author>
<id>http://algorithm.cs.nthu.edu.tw/~abnercyh/blog/</id>
<generator uri="http://nanoblogger.sourceforge.net" version="3.3 RC5">
NanoBlogger
</generator>

<entry>
<title type="html">Dynamic Optimization</title>
<author>
<name>Abner Chih Yi Huang</name>
</author>
<link rel="alternate" type="text/html" href="http://algorithm.cs.nthu.edu.tw/~abnercyh/blog/archives/2007/03/index.html#e2007-03-10T02_50_12.txt"/>
<id>http://algorithm.cs.nthu.edu.tw/~abnercyh/blog/archives/2007/03/index.html#e2007-03-10T02_50_12.txt</id>
<published>2007-03-10T02:50:12+08:00</published>
<updated>2007-03-10T02:50:12+08:00</updated>
<category term="Notes" />
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
Ref.: <a href="http://algorithm.cs.nthu.edu.tw/~abnercyh/blog/archives/2006/09/index.html#e2006-09-06T04_04_39.txt">Optimization Theory</a>
<br /><br />
For optimimzation of intertemporal allocation of resources, there are two usual appraoches, optimal control and dynamic programming. The former one is good for analysis and the later one is good for simulation.
<br /><br />
Ref. Dynamic optimization problems:<p class="q">Dynamic optimization problems involve dynamic variables whose values change in time. Such problems exist in the areas of optimal control, parameter estimation for dynamic models, reactor network synthesis where the dynamic models arise from the differential modeling of the tubular reactors (plug flow reactors), and for dynamic simulation and optimization.</p>Some links<ul>
<li>MIT OCW <a href="http://ocw.mit.edu/OcwWeb/Economics/14-128Dynamic-Optimization---Economic-Applications--Recursive-Methods-Spring2003/CourseHome/index.htm">14.128 Dynamic Optimization &amp; Economic Applications (Recursive Methods)</a>, Spring 2003</li>
<li>Texas A&amp;M University. Agec 637 <a href="http://agecon2.tamu.edu/people/faculty/woodward-richard/637/">Production Economics and Dynamic Optimization</a>, Prof. Woodward.</li>
<li><a href="http://www2.imm.dtu.dk/courses/02711/">Course 02711: Static and Dynamic Optimization</a></li>
</ul>
<h2>Dynamic Programming</h2>
<br /><br />
<br /><br />
<h2>Optimal Control Theory</h2>:
<br /><br />
Ref. : <a href="http://en.wikipedia.org/wiki/Optimal_control">Optimal control</a> From Wikipedia, the free encyclopedia.<p class="q">Optimal control theory is a mathematical field that is concerned with control policies that can be deduced using optimization algorithms.
<br /><br />
The control that minimizes a certain cost functional is called the optimal control. It can be derived using Pontryagin's maximum principle, or by solving the Hamilton-Jacobi-Bellman equation.</p>
<br /><br />
Ref. : The Mathematical Atlas <a href="http://www.math.niu.edu/~rusin/known-math/index/49-XX.html">49: Calculus of variations and optimal control; optimization</a>
<br /><br />
Reference book:<ul>
<li /><a href="http://www.amazon.com/Elements-Dynamic-Optimization-Alpha-Chiang/dp/157766096X">Elements of Dynamic Optimization</a> by Alpha C. Chiang.
<li />Stokey, Nancy L., and Robert E. Lucas, Jr., with Edward C. Prescott. Recursive Methods in Economic Dynamics. Cambridge, MA: Harvard University Press, 1989.
<li />Optimal Control Theory: An Introduction, by Donald E. Kirk
<li />Optimal Control and Estimation (Dover Books on Advanced Mathematics), by Robert F. Stengel 
<li />Optimal Control Theory and Static Optimization in Economics by Daniel Leonard, Ngo van Long
</ul>
</div>
</content>

</entry>
<entry>
<title type="html">SubGemini: Identifying Subcircuits using a Fast Subgraph Isomorphism Algorithm</title>
<author>
<name>Abner Chih Yi Huang</name>
</author>
<link rel="alternate" type="text/html" href="http://algorithm.cs.nthu.edu.tw/~abnercyh/blog/archives/2007/03/index.html#e2007-03-09T23_24_21.txt"/>
<id>http://algorithm.cs.nthu.edu.tw/~abnercyh/blog/archives/2007/03/index.html#e2007-03-09T23_24_21.txt</id>
<published>2007-03-09T23:24:21+08:00</published>
<updated>2007-03-09T23:24:21+08:00</updated>
<category term="Seminar" />
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<ul><li />Title: SubGemini: Identifying Subcircuits using a Fast Subgraph Isomorphism Algorithm
<li />Authors: Miles Ohlrich, Carl Ebeling, Eka Ginting, and Lisa Sather
<li />Source: Proceedings of IEEE/ACM Design Automation Conference,Dallas,1993:31-37
<li />Speaker: C. S. Ou
<li />Time: 03.09 (Friday) 19:30-21:00
<li />Place: Room 550, Department of Computer Science, NTHU
</ul>
The authors proposed the heuristic algorithm to solve the problem Subgraph Isomorphism which is in NP-C.
<br /><br />
Since the citcuit of VLSI design is a complicated network as hypergraph representation, for simplicity, they defined some kinds of vertices, P node for pMOS, C node for cMOS, etc. And they define the bubble node to represent the wire of IC circuit which is a hyperedge.
<br /><br />
They labelled some informations on each vertex. Those informations about connection configuration will help them to find some ``key vertex'' as candidate for starting to check subgraph isomorphism.
<br /><br />
That is the first phase of SubGemini.
<br /><br />
The second phase is the procedure of checking subgraph isomorphism as traditional appraoch like BFS. Since we got those special ``key vertices'' as starting point, this algorithm will find subgraph isomorphism very fast. However this algorithm is not guarantee to find every isomorphic subgraph if those subgraphs coupled very close.
<br /><br />
<br /><br />
After the introduction of SubGemini, the speaker C. S. Ou also introduces his research that solve this problem by a very large matrix consisting of many small connection configuration matrices, e.g. one pMOS P1 and one CMOS C3 is connected by source of P1 and drain of C3, then its connection configuration matrix is look like the 3X3 0-1 matrix M which all entries are zero besides M(s,d).
<br /><br />
They code thus connection configurations for some possible cases and set up some rules to filter most useless cases, eventually reduce such very large matrix  into a much smaller one.
<br /><br />
Finally they solve this reduced matrix as the problem SUBMATRIX which is also in NP-C. And the experimental results show that this algorthm got better performance.
</div>
</content>

</entry>
<entry>
<title type="html">An Important Connection Between Network Motifs and Parsimony Models</title>
<author>
<name>Abner Chih Yi Huang</name>
</author>
<link rel="alternate" type="text/html" href="http://algorithm.cs.nthu.edu.tw/~abnercyh/blog/archives/2007/03/index.html#e2007-03-08T03_27_32.txt"/>
<id>http://algorithm.cs.nthu.edu.tw/~abnercyh/blog/archives/2007/03/index.html#e2007-03-08T03_27_32.txt</id>
<published>2007-03-08T03:27:32+08:00</published>
<updated>2007-03-08T03:27:32+08:00</updated>
<category term="Papers" />
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
ef.: Teresa M. Przytycka: <a href="http://www.springerlink.com/content/r165q239477351qm/">An Important Connection Between Network Motifs and Parsimony Models</a>. RECOMB 2006: 321-335<p class="q">We demonstrate an important connection between <span style="font-weight:bold;">network motifs</span> in certain biological networks and validity of evolutionary trees constructed using parsimony methods.</p><p class="q">We introduce a graph theoretical characterization that helps to select correct characters. Given a set of characters and a set of taxa, we construct a network called <span style="font-weight:bold;">character overlap graph</span>.</p>
Here "<a href="http://en.wikipedia.org/wiki/Taxon">taxa</a>" means a grouping or classifing of organisms. It does not implies the specific biological class of organisms.
<br /><br />
Given a set of taxa and a set of characters, one could constcut the character overlap graph, that the vertices are characters and the edge exists iff. there exists a taxon contains both characters.
<br /><br />
Each taxon is described by a binary vector of attributes. Those attributes so called characters. If a taxon has a attributes, then it assigns 1 to the attribute in the binary vector, otherwise assgins 0.
<br /><br />
Therefore we could use those informations like taxon to build an evolution tree using parsimony approach, i.e., Maximum Parsimony Tree Problem. Most variations of it are in NP-C. In spite of it, the correctness problem, i.e., the correctness of the bulit evolution tree, is also open. 
<br /><br />
Intuitively, its correctness depends strongly on choosing appropriately charactors and taxa. The goal of this paper is to give a method to improve the correctness of evolution tree which is contructed by parsimony approach.
<br /><br />
First, author defined "persistent," i.e., a charactor is persistent if it is gained exactly once and lost at most once, and persistent parsimony means all charactors are persistent.
<br /><br />
The author found that the hole, chordless cycle of length at least four, is rare in charactor overlap graph  whose charactors are chose as protein domains. In contrast, the hole is  abundant in charactor overlap graph  whose charactors are chose as introns. Furthermore the correctness of tree built by domain overlap graph is better than built by intron overlap graph. (refers the references [11], [27], [10], [29] of this paper.)
<br /><br />
The author believe this phenomenon is meaningful. He prove that<p class="q">If all charactors are persistent then corresponding charactor overlap graph is chordal.</p>
Therefore we could measure whether the chosen charactors lead to incorrect evolutionary tree by the Edge-Deletion Problem of chordal graph.  Unfortunately it is in NP-C.
<br /><br />
The author adapt the idea of network motif. He just counts the number of squares, the chordless cycles with length 4, of the charactor overlap graph, and compare it to the number of squares of charactor overlap graph whose charactors gain or loss randomly.
<br /><br />
Although the relation between non-persistent charactors and the number of squares is not so clear. Few non-persistent charactors might lead to large number of squares, and large number of squares might have small non-persistent charactors. We still could benefit from it by finding the charactors involved in a large number of squares. It is a significant noise of the data. (In domain overlap graph, those charactors, that involved in a large number of squares, are the promiscuous domains which are known to appear in many diverse multidomain proteins.)
</div>
</content>

</entry>
<entry>
<title type="html">Chordal Graphs in Computational Biology - New Insights &amp; Applications</title>
<author>
<name>Abner Chih Yi Huang</name>
</author>
<link rel="alternate" type="text/html" href="http://algorithm.cs.nthu.edu.tw/~abnercyh/blog/archives/2007/03/index.html#e2007-03-08T03_26_31.txt"/>
<id>http://algorithm.cs.nthu.edu.tw/~abnercyh/blog/archives/2007/03/index.html#e2007-03-08T03_26_31.txt</id>
<published>2007-03-08T03:26:31+08:00</published>
<updated>2007-03-08T03:26:31+08:00</updated>
<category term="Papers" />
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
Ref.: Teresa M. Przytycka, <a href="http://www.cs.sfu.ca/news/index.cgi/events/2006-06-26-1.html">Chordal Graphs in Computational Biology - New Insights & Applications</a>, Seminars, Computing Science,  Simon Fraser University.<p class="q">we introduced and studied graph theoretical representation of multidomain proteins called domain overlap graph. In the domain overlap graph, the vertices are protein domains and two domains are connected by an edge if there is a protein that contains both domains.</p>This leads the studies of a graph-theoretical framework, based on properties of chordal graphs and cographs [3].
<br /><br />
References:<ol><li />Teresa M. Przytycka, George Davis, Nan Song, Dannie Durand: <a href="http://www.springerlink.com/content/uxy3mxth02h8dab4/">Graph Theoretical Insights into Evolution of Multidomain Proteins</a>. RECOMB 2005: 311-325
<li />Teresa M. Przytycka. <a href="http://www.springerlink.com/content/r165q239477351qm/">An important connection between network motifs and parsimony models</a>. RECOMB 2006, Lecture Notes in Computational Biology, 2006. (<a href="http://barrosh-notes.blogspot.com/2007/03/important-connection-between-network.html">My Note</a>)
<li /><a href="http://www.almob.org/content/1/1/7">Decomposition of overlapping protein complexes: A graph theoretical method for analyzing static and dynamic protein associations</a>, Zotenko E, Guimaraes KS, Jothi R, Przytycka TM.  Algorithms for Molecular Biology 2006, 1:7
</ol>
</div>
</content>

</entry>
<entry>
<title type="html">Theory Seminars of ALADDIN</title>
<author>
<name>Abner Chih Yi Huang</name>
</author>
<link rel="alternate" type="text/html" href="http://algorithm.cs.nthu.edu.tw/~abnercyh/blog/archives/2007/02/index.html#e2007-02-23T22_54_01.txt"/>
<id>http://algorithm.cs.nthu.edu.tw/~abnercyh/blog/archives/2007/02/index.html#e2007-02-23T22_54_01.txt</id>
<published>2007-02-23T22:54:01+08:00</published>
<updated>2007-02-23T22:54:01+08:00</updated>

<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
The blog, <a href="http://magic.aladdin.cs.cmu.edu/">[Lowerbounds, Upperbounds]</a>, is to build a community among the Theory group members of CMU. 
<br /><br />
There are two entries catching my eyes. The first one is the <a href="http://magic.aladdin.cs.cmu.edu/2007/02/14/theory-seminar-2007-02-16">Theory Seminar 2007-02-16: Adaptive Analysis of Algorithms</a>, Erik D. Demaine, MIT.
<br /><br />
It is common sense that worst-case analysis of algorithms is not good enough, and Average-case analysis is hard to do.<p class="q">verage-case analysis gives a better sense about possible performance, but requires some knowledge about the distribution of inputs, making results more specific. In contrast, adaptive analysis parameterizes the input space by one or more additional parameters beyond the problem size, and the goal becomes to optimize simultaneously for all values of those parameters, which is a substantially stronger form of worst-case analysis. When possible, strong adaptive bounds give a fine sense of the intrinsic difficulty of inputs and a better sense of which algorithms are better than which others.</p>The most promising direction might be "<a href="http://www.cs.yale.edu/homes/spielman/SmoothedAnalysis/">Smoothed Analysis</a>". However it seems also tough and doesn't get the corresponding success.(I am not sure!?)
<br /><br />
Erik D. Demaine talked about adaptive analysis of algorithms that I didn't hear before, but there is no slides and bibliography in such entry. I found some articles, that seem to be related to adaptive analysis, on prof. Demaine's homepage.
<br /><br />
Ref.: Ilya Baran and Erik D. Demaine, ``<a href="http://theory.csail.mit.edu/~edemaine/papers/Curves_SoCG2004/">Optimal Adaptive Algorithms for Finding the Nearest and Farthest Point on a Parametric Black-Box Curve</a>,'' in Proceedings of the 20th Annual ACM Symposium on Computational Geometry (SoCG 2004), Brooklyn, New York, June 9-11, 2004, pages 220-229.
<br /><br />
Ref.: Ilya Baran, Erik D. Demaine, and Dmitriy A. Katz, ``<a href="http://theory.csail.mit.edu/~edemaine/papers/Integration_LATIN2006/">Optimally Adaptive Integration of Univariate Lipschitz Functions</a>,'' in Proceedings of the 7th Latin American Symposium on Theoretical Informatics (LATIN 2006), Valdivia, Chile, March 20-24, 2006, pages 142-153.
<br /><br />
<br /><br />
The other is <a href="http://magic.aladdin.cs.cmu.edu/2007/02/22/theory-seminar-2007-02-23/">Theory Seminar 2007-02-23: The Price of Privacy and the Limits of LP Decoding</a>, Kunal Talwar, Microsoft Research.
<br /><br />
But there is no material, too. But this result is accepted for presentation in STOC 2000.
</div>
</content>

</entry>
<entry>
<title type="html">Brain Drain</title>
<author>
<name>Abner Chih Yi Huang</name>
</author>
<link rel="alternate" type="text/html" href="http://algorithm.cs.nthu.edu.tw/~abnercyh/blog/archives/2007/02/index.html#e2007-02-13T17_08_19.txt"/>
<id>http://algorithm.cs.nthu.edu.tw/~abnercyh/blog/archives/2007/02/index.html#e2007-02-13T17_08_19.txt</id>
<published>2007-02-13T17:08:19+08:00</published>
<updated>2007-02-13T17:08:19+08:00</updated>

<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
Nature has <a href="http://www.nature.com/news/2007/070205/full/070205-10.html">a short article</a> about Brain Drain of Italian. And two italian researchers Luca Trevisan and Luca Aceto gave comments "<a href="http://in-theory.blogspot.com/2007/02/runaway-brains.html">The Runaway Brains</a>" and "<a href="http://processalgebra.blogspot.com/2007/02/brain-drain-and-brain-gain.html">Brain Drain and Brain Gain</a>", respectively.
<br /><br />
It discuss the bad phenomenon that Italian universities and research institutions can't keep the good Italian researchers and appeal foreign researchers.
<br /><br />
Taiwan got the same problem. We all need introspections!
</div>
</content>

</entry>
<entry>
<title type="html">Write A Draft</title>
<author>
<name>Abner Chih Yi Huang</name>
</author>
<link rel="alternate" type="text/html" href="http://algorithm.cs.nthu.edu.tw/~abnercyh/blog/archives/2007/02/index.html#e2007-02-13T16_44_47.txt"/>
<id>http://algorithm.cs.nthu.edu.tw/~abnercyh/blog/archives/2007/02/index.html#e2007-02-13T16_44_47.txt</id>
<published>2007-02-13T16:44:47+08:00</published>
<updated>2007-02-13T16:44:47+08:00</updated>

<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
Currently I am writing a draft for <a href="http://alg.csie.ncnu.edu.tw/algo2007/">the 24th workshop on combinatorial mathematics and computation theory</a>.
<br /><br />
I found that the author ordering tradition of TCS, i.e., alpha-by-author ordering, is not always satisfied.
<br /><br />
Ref.: Machine Learning (Theory) <a href="http://hunch.net/?p=251">Best Practices for Collaboration</a>
</div>
</content>

</entry>
<entry>
<title type="html">Internet Mathematics</title>
<author>
<name>Abner Chih Yi Huang</name>
</author>
<link rel="alternate" type="text/html" href="http://algorithm.cs.nthu.edu.tw/~abnercyh/blog/archives/2007/02/index.html#e2007-02-08T13_01_02.txt"/>
<id>http://algorithm.cs.nthu.edu.tw/~abnercyh/blog/archives/2007/02/index.html#e2007-02-08T13_01_02.txt</id>
<published>2007-02-08T13:01:02+08:00</published>
<updated>2007-02-08T13:01:02+08:00</updated>

<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
I found a new journal ``<a href="http://www.internetmathematics.org/">Internet Mathematics</a>'' which publishes research papers that address fundamental problems in dealing with large complex information networks such as the Internet. 
<br /><br />
This journal seems not famous yet, but its Editorial Board impresses me. Many big heads on it such as Fan Chung Graham, Noga Alon, Jon Kleinberg.
<br /><br />
It has short history, but there are many interesting papers:
<br /><br />
Volume 1 (2003¡V2004)
<ul>
<li />Coupling Scale-Free and Classical Random Graphs by Bela Bollobas and Oliver Riordan
<li />Graph Clustering and Minimum Cut Trees by Gary William Flake, Robert E. Tarjan, and Kostas Tsioutsiouliklis
<li />Coupling Online and Offline Analyses for Random Power Law Graphs by Fan Chung and Linyuan Lu
<li />Network Applications of Bloom Filters: A Survey by Andrei Broder and Michael Mitzenmacher
</ul>
<br /><br />
Volume 2 (2005¡V2006)
<ul>
<li />Lower Bounds and Algorithms for Dominating Sets in Web Graphs by Colin Cooper, Ralf Klasing, and Michele Zito
</ul>
<br /><br />
Volume 3
<ul>
<li />Estimating Entropy and Entropy Norm on Data Streams by Amit Chakrabarti, Khanh Do Ba, and S. Muthukrishnan
<li />Concentration Inequalities and Martingale Inequalities: A Survey by Fan Chung and Lincoln Lu
<li />
</ul>
</div>
</content>

</entry>
<entry>
<title type="html">Hashing</title>
<author>
<name>Abner Chih Yi Huang</name>
</author>
<link rel="alternate" type="text/html" href="http://algorithm.cs.nthu.edu.tw/~abnercyh/blog/archives/2007/02/index.html#e2007-02-07T20_52_21.txt"/>
<id>http://algorithm.cs.nthu.edu.tw/~abnercyh/blog/archives/2007/02/index.html#e2007-02-07T20_52_21.txt</id>
<published>2007-02-07T20:52:21+08:00</published>
<updated>2007-02-07T20:52:21+08:00</updated>
<category term="Notes" />
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
Prof. Tang required me to prepare the slides about hashing for the course Data Structure. Actually the idea of hashing is applied to many different fields, e.g., Cryptography, Error correction, Identification and verification.
<br /><br />
Wikipedia:: The origins of the term<p class="q">The term "hash" comes by way of analogy with its standard meaning in the physical world, to "chop and mix." Knuth notes that Hans Peter Luhn of IBM appears to have been the first to use the concept, in a memo dated January 1953; the term hash came into use some ten years later.</p>
The following is some resources about hashing
<ul>
<li /><a href="http://en.wikipedia.org/wiki/Linear_hash">Linear hash</a> From Wikipedia, the free encyclopedia
<li /><a href="http://en.wikipedia.org/wiki/Trie">Trie</a> From Wikipedia, the free encyclopedia
<li /><a href="http://portal.acm.org/citation.cfm?id=42410">Dynamic hash tables</a>, Communications of the ACM
<li /><a href="http://www.burtleburtle.net/bob/hash/">Hash Functions and Block Ciphers</a>
<li /><a href="http://en.wikipedia.org/wiki/Distributed_hash_table">Distributed hash table</a> From Wikipedia, the free encyclopedia
<li /><a href="http://en.wikipedia.org/wiki/Hash_table">Hash table</a> From Wikipedia, the free encyclopedia
<li /><a href="http://en.wikipedia.org/wiki/MapReduce">MapReduce</a> From Wikipedia, the free encyclopedia
<li /><a href="http://alamode.mines.edu/fdscpp/PPT/index.shtml">Powerpoint presentations</a> for Fundamentals of Data Structures in C++, Second Edition, prepared by Prof Sartaj Sahni using Powerpoint 2000.
<li />J. Rufino, A. Pina, Albano Alves and J. Exposto, <a href="http://sire.estig.ipb.pt/pub/vecpar2002.ps">Distributed Paged Hash Tables</a>, "5th International Meeting on High Performance Computing for Computational Science (VECPAR '02) - Selected Papers and Invited Talks, Springer, 679-692, Porto, Portugal, June 2002
<li />M. Bienkowski, M. Korzeniowski, and F. M. auf der Heide. <a href="http://citeseer.ist.psu.edu/723885.html">Dynamic load balancing in distributed hash tables</a>. Manuscript, 2004.
<li /><a href="http://doi.acm.org/10.1145/872035.872054">Routing Networks for Distributed Hash Tables</a>, Gurmeet Singh Manku
<li /><a href="http://en.wikipedia.org/wiki/Bloom_filter">Bloom filter</a> From Wikipedia, the free encyclopedia
</ul>
<br /><br />
And <a href="http://algorithm.cs.nthu.edu.tw/~abnercyh/DS.Slides.Hashing.ppt">Here</a> is the slides I made. 
</div>
</content>

</entry>
<entry>
<title type="html">Tao Jiang</title>
<author>
<name>Abner Chih Yi Huang</name>
</author>
<link rel="alternate" type="text/html" href="http://algorithm.cs.nthu.edu.tw/~abnercyh/blog/archives/2006/12/index.html#e2006-12-08T01_36_09.txt"/>
<id>http://algorithm.cs.nthu.edu.tw/~abnercyh/blog/archives/2006/12/index.html#e2006-12-08T01_36_09.txt</id>
<published>2006-12-08T01:36:09+08:00</published>
<updated>2006-12-08T01:36:09+08:00</updated>
<category term="Scholars" />
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
Department of Computer Science and College of Life Science, National Tsing Hua University, collaberate to host <a href="http://algorithm.cs.nthu.edu.tw/2006CSBLS/">a talk series about Systems Biology and Computational Biology</a>.
<br /><br />
The speaker of this week is Professor <a href="http://www.cs.ucr.edu/~jiang/">Tao Jiang</a>. He is real a nice guy!
<br /><br />
<a href="http://www.cs.ucr.edu/~jiang/"><img src="http://www.cs.ucr.edu/~jiang/jt-06-4.jpg" border="0" alt="" width="30%"/></a>
<br /><br />
I was assigned the job to serve Professor Tao Jiang in this period. I have written <a href="http://barrosh-life.blogspot.com/2006/12/professor-tao-jiang.html">a note about it</a> in chinese.
</div>
</content>

</entry>

</feed>
