/***\n!Metadata:\n|''Name:''|XMLReader|\n|''Description:''||\n|''Version:''|1.2.0|\n|''Date:''|Jul 20, 2006|\n|''Source:''|http://sourceforge.net/project/showfiles.php?group_id=150646|\n|''Author:''|BramChen (bram.chen (at) gmail (dot) com)|\n|''License:''|[[Creative Commons Attribution-ShareAlike 2.5 License]]|\n|''~CoreVersion:''|2.1.0|\n|''Browser:''|Firefox 1.5+; InternetExplorer 6.0|\n!Syntax:\n{{{<<xmlreader withDesc|noDesc|asHtml rssfeed.xml|http://www.example.com/rssfeed.rdf>>}}}\n!Revision History:\n|''Version''|''Date''|''Note''|\n|1.2.0|Jul 20, 2006|Runs compatibly with TW 2.1.0 (rev #403+)|\n|1.1.0|Jul 10, 2006)|change xmlhttp.send(null)/send() to xmlhttp.send("") for more compatibility for some browsers|\n|1.0.0|Mar 11, 2006|Initial release|\n|~|~|This macro is reworked from RssNewsMacro, but it can be easy to extended to support different structure of xml document from rss feeds|\n|~|~|You could uninstall the RssNewsMacro, but still use the original syntax,<<br>>{{{<<rssfeed withDesc|noDesc|asHtml rssfeed.xml|http://www.example.com/rssfeed.rdf>>}}}|\n\n!Code section:\n***/\n\n//{{{\nversion.extensions.xmlreader = {major: 1, minor: 2, revision: 0,\n date: new Date("Jul 20, 2006"),\n name: "XMLReader",\n type: "Macro",\n author: "BramChen",\n source: "http://sourceforge.net/project/showfiles.php?group_id=150646"\n};\nconfig.macros.xmlreader= {\n itemStructure:{title:'Title',link:'Link',pubDate:'PubDate',description:'Desc'},\n// rsTemplate:function(){var t='';for (var i in itemStructure){t+='_'+itemStructure[i]}},\n rsTemplate:'_pubDate\sn**[[_title|_link]]_description',\n items: {Elm: "lm", Text: "_%0"},\n keyItem: "item",\n dateFormat: "DDD, DD MMM YYYY",\n msg:{\n permissionDenied: "Permission to read preferences was denied.",\n errorInDataRetriveing: "Problem retrieving XML data: %0",\n invalidXML: "Invalid XML retrieved from: %0",\n urlNotAccessible: "Access to %0 is not allowed,\snPlease check the setting of your browser:\sn1.For Gecko based, you should set the 'signed.applets.codebase_principal_support' to be true, in about:config.\sn2.For IE, you should add this web site to your trust list."\n },\n cache: [], // url => request\n withDesc: null,\n xmlURL: null,\n groupBy: null,\n xmlhttp: null,\n place:null\n};\n\nconfig.macros.xmlreader.handler = function(place,macroName,params){\n this.withDesc = params[0];\n this.xmlURL = params[1];\n this.place=place;\n if (this.cache[this.xmlURL]) {\n wikify("^^(//from cache//)^^\sn",place);\n this.processResponse(this.xmlURL,this.cache[this.xmlURL]);\n }\n else {\n this.asyncGet(this.xmlURL,this.processResponse);\n }\n};\n\nconfig.macros.xmlreader.asyncGet = function (xmlURL,callback){\n var xmlhttp;\n try {xmlhttp=new XMLHttpRequest();}\n catch (e) {\n try {xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");}\n catch (e) {\n try {xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");}\n catch (e) { displayMessage(e.description?e.description:e.toString());}\n }\n }\n if (!xmlhttp){\n return;\n }\n this.xmlhttp = xmlhttp;\n if (window.netscape){\n if (!this.testURL(xmlURL)){\n try {netscape.security.PrivilegeManager.enablePrivilege("UniversalBrowserRead");}\n catch (e) { displayMessage(e.description?e.description:e.toString()); }\n }\n }\n// if (xmlhttp.overrideMimeType) {xmlhttp.overrideMimeType('text/xml');}\n\n xmlhttp.onreadystatechange=function(){\n var xmlhttp = config.macros.xmlreader.xmlhttp;\n if (xmlhttp.readyState==4) {\n if (xmlhttp.status==200 || xmlhttp.status===0) {\n if (callback) callback(xmlURL,xmlhttp);\n }\n else {\n displayMessage(config.macros.xmlreader.msg.errorInDataRetriveing.format([xmlhttp.statusText]));\n }\n }\n };\n try {\n var url=xmlURL+(xmlURL.indexOf('?')<0?'?':'&')+'nocache='+Math.random();\n xmlhttp.open("GET",url,true);\n xmlhttp.send("");\n }\n catch (e) {\n wikify(e.toString()+this.msg.urlNotAccessible.format([xmlURL]), this.place);\n }\n};\n\nconfig.macros.xmlreader.processResponse = function(xmlURL,xmlhttp){\n if (window.netscape){\n if (!config.macros.xmlreader.testURL(xmlURL)){\n try {netscape.security.PrivilegeManager.enablePrivilege("UniversalBrowserRead");}\n catch (e) { displayMessage(e.description?e.description:e.toString()); }\n }\n }\n if (xmlhttp.responseXML){\n config.macros.xmlreader.cache[xmlURL] = xmlhttp;\n config.macros.xmlreader.genLists(xmlhttp.responseXML);\n }\n else {\n wikify("<html>"+xmlhttp.responseText+"</html>", this.place);\n displayMessage(this.msg.invalidXML.format([xmlURL]));\n }\n};\n \nconfig.macros.xmlreader.genLists = function(xml){\n var itemList = xml.getElementsByTagName(this.keyItem);\n var itemStructure = this.itemStructure;\n var items = this.items;\n var rsLists='', rssItem; this.groupBy='';\n for (var i=0; i<itemList.length; i++){\n var itemElms=[],itemTexts=[];\n var rsTemplate=this.rsTemplate;\n for (var j in itemStructure){\n var itemElm = items.Elm.format([j]);\n var itemText = items.Text.format([j]);\n itemElms[itemElm] = itemList[i].getElementsByTagName(j).item(0);\n if(itemElms[itemElm]){\n var theTitle = itemStructure[j];\n var theText = (itemElms[itemElm].firstChild)?itemElms[itemElm].firstChild.nodeValue:'';\n rsTemplate=this.convertTemplate(rsTemplate,j,theText);\n }\n else {\n rsTemplate = rsTemplate.replace('_'+j, '');\n }\n }\n rsLists += rsTemplate;\n }\n wikify(rsLists,this.place);\n};\n \nconfig.macros.xmlreader.convertTemplate = function(rsTemplate,j,theText){\n switch (j){\n case 'title':\n rsTemplate = rsTemplate.replace(/_title/,theText.replace(/\s[|\s]/g,''));\n break;\n case 'link':\n rsTemplate = rsTemplate.replace(/_link/, theText);\n break;\n case 'pubDate':\n theText = this.formatString(this.dateFormat, theText);\n if (this.groupBy == theText){\n rsTemplate = rsTemplate.replace(/_pubDate/, '');\n }\n else{\n rsTemplate = rsTemplate.replace(/_pubDate/, '\sn* '+theText);\n this.groupBy = theText;\n }\n break;\n case 'description':\n var regexpDesc = new RegExp("withDesc|asHtml","g");\n if (regexpDesc.exec(this.withDesc) && theText){\n var _description = theText.replace(/\sn/g,' ');\n _description =_description.replace(/<br \s/>/ig,'\sn'); \n if (version.extensions.nestedSliders){\n _description = ((this.withDesc == "asHtml")?"<html>"+_description+"</html>":_description);\n rsTemplate = rsTemplate.replace(/_description/,'+++[...]'+_description+'\sn===\sn');\n }\n else {\n rsTemplate = rsTemplate.replace(/_description/,_description+'\sn');\n }\n }\n else {\n rsTemplate = rsTemplate.replace(/_description/,'');\n }\n break;\n }\n return (rsTemplate);\n};\n \nconfig.macros.xmlreader.formatString = function(template, theDate){\n var dateString = new Date(theDate);\n template = template.replace(/hh|mm|ss/g,'');\n return dateString.formatString(template);\n};\nconfig.macros.xmlreader.testURL = function (url){\n var rsURL={protocol: '', host: '', hostname:'', port:'', path: ''};\n if (url.indexOf(':') == -1) {\n return true;\n }\n rsURL.protocol = url.substr(0,url.indexOf(":")+1);\n var s1 = url.substr(url.lastIndexOf("//")+2);\n var i = s1.indexOf(':');\n if (i != -1){\n rsURL.host=s1.substr(0,s1.indexOf("/"));\n rsURL.hostname = s1.substr(0,i);\n var s2 = s1.substr(i+1);\n var j = s2.indexOf("/");\n if ( j != -1){\n rsURL.port = s2.substr(0, j);\n rsURL.path = s2.substr(j);\n }\n else {\n rsURL.port = s2;\n }\n }\n else {\n if (s1.indexOf("/") != -1){\n rsURL.host = s1.substr(0,s1.indexOf("/"));\n rsURL.hostname = rsURL.host;\n rsURL.path = s1.substr(s1.indexOf("/"));\n }\n else {\n rsURL.host = s1;\n rsURL.hostname = s1;\n }\n }\n var curLoc = document.location;\n// var curPort = curLoc.host.substr(curLoc.host.indexOf(":")+1);\n var result = (curLoc.protocol == rsURL.protocol && curLoc.host == rsURL.host);\n return (result);\n};\n//}}}\n// // ''Redefine RssNewsMacro''\n//{{{\nconfig.macros.rssfeed=config.macros.xmlreader;\n//}}}
! Tex 文件\n* [[LaTeX Wikibooks|http://en.wikibooks.org/wiki/LaTeX]]\n\n! PHP 文件\n*[[PHP Manual|http://www.php.net/manual/en/]]\n*[[PHP5新功能初探系列|http://itzone.hk/article/article.php?aid=200407291438586077]]\n*[[PHP5 Exception handling|http://www.andreashalter.ch/phpug/20040115/]]\n*[[PHPRPC 用戶指南|http://www.phprpc.org/]]\n*[[PHP分頁顯示製作詳細講解|http://www.phpchina.com/html/85/38985.html]]\n*[[PEAR|http://pear.php.net/]] :: [[DB|http://pear.php.net/package/DB]] -- Database Abstraction Layer\n*[[Smarty|http://www.smarty.net/manual/en/]] - - the compiling PHP template engine\n*[[CakePHP|http://cakephp.org/]] -- a rapid development framework for PHP \n\n! Javascript 文件\n*[[JavaScript Note|http://irw.ncit.edu.tw/peterju/jscript.html]]\n*[[JavaScript 入門|http://web.nchu.edu.tw/~jlu/classes/www/examples/javascript/javascript.html]]\n*[[Protovis|http://vis.stanford.edu/protovis/]] -- uses JavaScript and SVG for web-native visualizations\n*[[The hierarchy of JavaScript Objects|http://www.sislands.com/coin70/week1/dom.htm]]\n*[[W3Schools JavaScript Tutorial|http://www.w3schools.com/js/default.asp]]\n*[[W3Schools JavaScript Reference|http://www.w3schools.com/jsref/default.asp]]\n*[[The New Coolest DHTML Calendar|http://www.dynarch.com/projects/calendar/]]\n*[[JavaScript: OS detection|http://www.javascripter.net/faq/operatin.htm]]\n!!! Ajax 文件\n**[[Ajax程式設計--使用xajax|http://phorum.study-area.org/printview.php?t=39586&start=0&sid=7902db0ca97848bd0de29d06afdeec24]]\n**[[使用PHPRPC寫Ajax|http://www.tuzaiz.idv.tw/archives/90]]\n**[[xajax|http://www.xajaxproject.org/]]\n**[[Sajax|http://www.modernmethod.com/sajax/]]\n**[[Ajax 學習筆記|http://caterpillar.onlyfun.net/Gossip/AjaxGossip/AjaxGossip.html]]\n**[[jQuery 學習筆記|http://blog.ericsk.org/archives/tag/jquery-tut]]\n\n! Java 文件\n*[[The Java Tutorials|http://java.sun.com/docs/books/tutorial/]]\n*[[java 入門|http://java.fromtw.com/java/java1.html]]\n*[[Java 程式語言教學|http://programming.im.ncnu.edu.tw/J_index.html]]\n\n! HTML & CSS\n*[[Cascading Style Sheets (CSS)|http://www.w3.org/Style/CSS/]]\n*[[HTML 4.01 Specification|http://www.w3.org/TR/html401/]]\n*[[HTML Tutorial|http://www.w3schools.com/html/default.asp]]\n*[[CSS實務排版技巧、秘訣與技術|http://ccca.nctu.edu.tw/~hlb/trans/practicalcss/]]\n*[[Open Source Web Design|http://www.oswd.org/]]\n*[[W3Schools HTML DOM Reference|http://www.w3schools.com/htmldom/dom_reference.asp]]\n\n! SQL\n*[[MS SQL教學 - *熊熊遊戲資訊*|http://www.uun.us/bl/bbs.asp?classid=362&blid=15]]\n*[[MSSQL语法整理|http://www.helpso.cn/blog/article.asp?id=269]]\n*[[一些暴强的SQL语句|http://www.citt.org.cn/Article.aspx?AID=340821f5-45ee-4a68-b778-1d2c7357a540]]\n*[[String functions in MS SQL SERVER 2000|http://www.sqlbooks.ru/readarticle.aspx?part=09&file=addition09]]\n*[[MySQL中文參考手冊|http://linux.tnc.edu.tw/techdoc/mysql/mysql_doc/manual_toc.html]]\n*[[PHP + MySQL 程式設計研習|http://chensh.loxa.edu.tw/php/C_1.php]]\n*[[用SQL合併資料表|http://www.study-area.org/coobila/tutorial_381.html]]\n*[[ADOdb Database Abstraction Library|http://adodb.sourceforge.net/]]\n*[[SQL語法教學|http://www.1keydata.com/tw/sql/sql.html]]\n\n! ASP\n* [[ASP(Active Server Page) Note|http://irw.ncut.edu.tw/peterju/asp.html]]\n* [[VBScript Tutorial|http://www.w3schools.com/vbscript/default.asp]]\n* [[ADO Tutorial|http://www.w3schools.com/ado/default.asp]]\n* [[ASP Tutorial|http://www.w3schools.com/asp/default.asp]]\n* [[Recordset 語法及相關運作|http://blog.blueshop.com.tw/mars/archive/2004/09/08/177.aspx]]\n* MSDN: [[Microsoft ActiveX Data Objects (ADO) |http://msdn2.microsoft.com/en-us/library/ms675532(VS.85).aspx]]\n* MSDN: [[Microsoft® SQL Server|http://technet.microsoft.com/en-us/library/bb545450.aspx]]\n*[[W3Schools VBScript Functions|http://www.w3schools.com/vbscript/vbscript_ref_functions.asp]]\n\n! Python\n* [[Django -- The Web framework for perfectionists with deadlines|http://www.djangoproject.com/]]\n* [[Python Types and Objects|http://www.cafepy.com/article/python_types_and_objects/contents.html]]\n* [[Python Attributes and Methods|http://www.cafepy.com/article/python_attributes_and_methods/python_attributes_and_methods.html]]\n* [[Be Pythonic|http://www.cafepy.com/article/59/]]\n* [[PYDOING:Python教學網誌|http://pydoing.blogspot.com/]]\n* [[MySQL-Python|http://mysql-python.sourceforge.net/]]\n* [[Python Idioms and Efficiency|http://jaynes.colorado.edu/PythonIdioms.html]]\n\n! C/C++\n* [[cplusplus.com - The C++ Resources Network|http://www.cplusplus.com/]]\n\n! Web Development Tools\n* [[Firebug|https://addons.mozilla.org/en-US/firefox/addon/1843]]\n* [[IE NetRenderer|http://ipinfo.info/netrenderer/index.php]] will show your page in IE 5.5, 6, or 7, to give Mac and Linux-based designers a quick sanity check.\n
! Misc.\n<html>\n<ul>\n<li style="display: inline ;">sss\n<li style="display: inline ;">ss\n</ul>\n</html>\nhow to setup git server\nhttp://jfcouture.com/2008/01/20/how-to-set-up-a-git-server/\nhttp://www.wretch.cc/blog/michaeloil/22286355\n\n
/***\n''Name:'' GenRssPlugin\n''Source:'' http://www.sourceforge.net/projects/ptw/\n''Author:'' BramChen\n''Type:'' Plugin\n''Description:'' \n* This plugin add a "xml-stylesheet" processing into the rss file generated by TW.\n* Resources used: \n** rssfeed.xsl\n** rssfeed.css\n** xsl.css\n<<<\n''Descriptions:''\n* if 'config.options.txtGenRssTags is empty then the outputs limited to 'config.numRssItems' except tiddlers taged with 'excludeLists'.\n* you can add the macro <<option txtGenRssTags>> to some configure tiddler, eg 'AdvancedOptions' for changing the tag list,\n* and add <<option txtRssItems>> to change number of rsfeed item.\n''Revision History:''\n* v0.2.0 (Mar 30 2006)\n** add a new feature that rssfeed limited to tiddlers taged with the tag list specified in 'config.options.txtGenRssTags'.\n** add config.options.txtRssItems.\n** if it's empty then the outputs limited to 'config.numRssItems' except tiddlers taged with 'excludeLists'.\n** you can add the macro <<option txtGenRssTags>> to some configure tiddler, eg 'AdvancedOptions' for changing the tag list.\n* v0.1.1 (Feb 04 2006)\n** JSLint checked\nv0.1.0 (Feb 1, 2006) \n* initial release\n***/\n// //''Code section:''\n//{{{\nversion.extensions.genRss = {major: 0, minor: 2, revision: 0,\n date: new Date("Mar 30, 2006"),\n info: {\n type: "Macro",\n name: "GenRssPlugin",\n author: "BramChen",\n source: "http://sourceforge.net/project/showfiles.php?group_id=150646"\n }\n};\n\nwindow.generateRss_ori = window.generateRss;\n\nconfig.options.txtGenRssTags = "";\nconfig.options.txtRssItems = "20";\n\nwindow.generateRss = function () {\n var rssTags = config.options.txtGenRssTags.readBracketedList();\n var numRssItems = config.options.txtRssItems;\n var s = [];\n var d = new Date();\n var u = store.getTiddlerText("SiteUrl",null);\n // Assemble the header\n s.push("<" + "?xml version=\s"1.0\s" encoding=\s"utf-8\s"?" + ">");\n s.push("<" + "?xml-stylesheet type=\s"text/xsl\s" href=\s"rss/rssfeed.xsl\s"?" +">");\n s.push("<" + "?xml-stylesheet type=\s"text/css\s" href=\s"rss/rssfeed.css\s"?" +">");\n s.push("<" + "rss version=\s"2.0\s">");\n s.push("<channel>");\n s.push("<title>" + wikifyPlain("SiteTitle").htmlEncode() + "</title>");\n if(u)\n s.push("<link>" + u.htmlEncode() + "</link>");\n s.push("<description>" + wikifyPlain("SiteSubtitle").htmlEncode() + "</description>");\n s.push("<language>en-us</language>");\n s.push("<copyright>Copyright " + d.getFullYear() + " " + config.options.txtUserName.htmlEncode() + "</copyright>");\n s.push("<pubDate>" + d.toGMTString() + "</pubDate>");\n s.push("<lastBuildDate>" + d.toGMTString() + "</lastBuildDate>");\n s.push("<docs>http://blogs.law.harvard.edu/tech/rss</docs>");\n s.push("<generator>TiddlyWiki " + version.major + "." + version.minor + "." + version.revision + "</generator>");\n // The body\n var tiddlers = store.getTiddlers("modified","excludeLists");\n var n = numRssItems > tiddlers.length ? 0 : tiddlers.length-numRssItems;\n for (var t=tiddlers.length-1; t>=n; t--){\n var f=(rssTags.length===0);\n for (var i = 0; i<rssTags.length; i++){\n if (tiddlers[t].tags.find(rssTags[i])!=null){f=true;break;}\n }\n if (f){s.push(tiddlers[t].saveToRss(u));}\n }\n // And footer\n s.push("</channel>");\n s.push("</rss>");\n // Save it all\n return s.join("\sn");\n};\n//}}}
/***\n|''Name:''|LoadExtPlugin|\n|''Description:''|LoadExtPlugin allows you to load external extensions from the file lists (named .js) within those tiddlers taged with "ExtList".|\n|''Version:''|1.7.2|\n|''Date:''|Sep 28, 2006|\n|''Source:''|http://www.sourceforge.net/projects/ptw/|\n|''Author:''|BramChen (bram.chen (at) gmail (dot) com)|\n|''License:''|[[Creative Commons Attribution-ShareAlike 2.5 License]]|\n|''CoreVersion:''|2.1.0|\n|''Browser:''|Firefox 1.5+; InternetExplorer 6.0|\n\n+++!^[Revision History:]\nv1.7.2 (Sep 28 2006)\nFixed bugs on IE\nv1.7.1 (30 Aug 2006)\n* Changed rule check of ExtList\nv1.7.0 (20 Jul 2006)\n* Runs compatibly with TW 2.1.0 (rev #403+)\nv1.6.0 (13 Jul 2006)\n* Fixed bugs in refreshCode and config.macros.loadExt.loadScripts on IE\n* Runs compatibly with TW 2.1.0 (rev #359+)\nv1.5.2 (21 Jun 2006)\n* minor changes for XHTML compliant\nv1.5.1 (26 Feb 2006)\n* JSLint checked\nv1.5.0 (02 Feb 2006)\n* add new function config.macros.loadExt.LoadScripts(), keep all variables to be local, thanks Udo.\n* Fixed several missing variable declarations\nv1.4.0 (20 Jan 2006)\n* refreshCode() improved.\nv1.3.0 (14 Jan 2006) \n* strip startup error massage for IE\nv1.2.0 (13 Jan 2006) \n* TiddlyWiki version 2.0.0 or above required.\n* refreshCode() improved.\nv1.1.0 (10 Jan 2006)\n* To make the extensions list handling more robust, thanks Udo.\n* Fix bugs for multi-tiddlers tagged with ExtList\nv1.0.0 (07 Jan 2006) \n* Combine the RefreshExt code and LoadExtPlugin, and also make TW 1.2 to be backward compatible, thanks Udo.\n* Globle function refreshCode() added, and reserve the refreshExt macro.\n* Fix a minor bug for variable "scriptfile".\nv0.3.0 (29 Dec 2005)\n* macro refreshExt modified to refresh formatter\nv0.2.0 (24 Nov 2005)\n* macro refreshExt modified for TW 1.2.39 beta 2 and above\nv0.1.0 (25 Sep 2005) \n* initial release\n===\n\n!''Code section:''\n***/\n//{{{\nversion.extensions.loadExt = {major: 1, minor: 7, revision: 2,\n date: new Date("Sep 28, 2006"),\n name: "LoadExtPlugin",\n type: "Plugin",\n author: "BramChen",\n source: "http://sourceforge.net/project/showfiles.php?group_id=150646"\n};\n\nconfig.macros.loadExt = {\n handler: function(place,macroName,params){this.loadScripts();},\n \n loadScripts: function() {\n var extTag = "ExtList";\n var str = ""; var scripts = [];\n var tiddlers = store.getTaggedTiddlers(extTag);\n for(var s=0 ; s<tiddlers.length; s++){\n str += store.getRecursiveTiddlerText(tiddlers[s].title)+"\sn";\n }\n //scripts = str.split(";");\n scripts = str.replace(/[;\sr]/mg,"\sn").split("\sn");\n for (var i=0; i<scripts.length-1; i++) {\n var scriptfile = scripts[i].trim();\n if (scriptfile.length < 2 || scriptfile.substr(0,2) == "//" || scriptfile.indexOf(".js") == -1){\n continue;\n }\n // displayMessage("loaded: "+ scriptfile);\n var n = document.createElement("script");\n n.type = "text/javascript";\n n.src = scriptfile;\n document.getElementsByTagName("head")[0].appendChild(n);\n }\n if (config.browser.isIE){\n setTimeout(function(){window.refreshCode();return false;},500);\n }\n else {\n var theCodes = "//<![CDATA[\snwindow.refreshCode();\sn//]]>";\n n = document.createElement("script");\n n.type = "text/javascript";\n n.appendChild(document.createTextNode(theCodes));\n document.getElementsByTagName("head")[0].appendChild(n);\n }\n\n }\n};\n\nwindow.refreshCode = function (){\n formatter = new Formatter(config.formatters);\n if (typeof store === "undefined") var store = new TiddlyWiki();\n if (typeof story === "undefined") var story = new Story("tiddlerDisplay","tiddler");\n story.forEachTiddler(function(title,e){story.refreshTiddler(title,DEFAULT_VIEW_TEMPLATE,true);});\n refreshDisplay();\n return false;\n}\n\nsetTimeout(function(){config.macros.loadExt.loadScripts();return false;},500);\n//}}}
<<plugins>>
AboutMe\n[[Contact]]\n[[LinkedIn|http://www.linkedin.com/pub/10/b98/415]]\n\n! Links\n[[CSBB LAB|http://algorithm.cs.nthu.edu.tw/]]\n[[NTHU CS|http://www.cs.nthu.edu.tw/]]\n[[CYCU EE|http://www.ee.cycu.edu.tw/]]\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n!Misc.\nUsefulLinks\nQuickNote\n\n!~TiddlyWiki\n[[TiddlyWiki之美|http://linshi.twbbs.org/usr/m/milchflasche/TiddlyWiki.html]]\n[[TiddlyWiki.org|http://www.tiddlywiki.org/wiki/Main_Page]]\n[[TiddlyTools|http://www.tiddlytools.com/]]\n[[TiddlyThemes|http://tiddlythemes.com/#Home]]\n[[TiddlyWikiCheatSheet|http://nothickmanuals.info/lib/exe/fetch.php/cheatsheets:tiddlywiki_cheatsheet.pdf?id=cheatsheets&cache=cache]]\n[[TiddlyWiki 使用教學中文版|http://web.nlhs.tyc.edu.tw/~lss/wiki/]]
\n<<tabs chopt \n快速鍊結 "一般個人常用鍊結" QuickLinkGeneral\n個人工具 "個人常用之網路服務鍊結" QuickLinkPersonal\n學術資源 "學術資源相關鍊結" QuickLinkAcademic\nQuickLinkWork "QuickLinkWork" QuickLinkWork\n>>\n\n\n
*Webmail\n**[[NTHU OZ Webmail|http://webmail.oz.nthu.edu.tw/source/index.php]]\n**[[NTHU CS Webmail|http://webmail.oz.nthu.edu.tw/source/index.php]]\n**[[Hinet Webmail|http://webmail.hinet.net/]]\n*Web Services\n**[[NTHU SSL VPN|https://sslvpn.twaren.net/]]\n**[[pivotaltracker|http://www.pivotaltracker.com/dashboard]]\n*Chrematistic\n**[[KeepAccounts.com|http://zh-hant.keepaccounts.com/]]\n**[[兆豐國際商業銀行|http://www.megabank.com.tw/personal/personal.asp]]\n**[[FundDJ|http://www.funddj.com/]]\n**[[GOGOFUND|http://www.gogofund.com]]\n**[[Morningstar Asia|http://tw.morningstar.com/]]\n**[[E-STOCK|http://estock.marbo.com.tw/]]\n**[[境外基金資訊觀測站|http://announce.fundclear.com.tw/MOPSFundWeb/]]\n**[[Google Finance|http://finance.google.com/finance]]\n**[[TSEC臺灣證券交易所|http://www.tse.com.tw/ch/index.php]] (IE only)\n**[[TSE Quotes Web Site|http://mis.tse.com.tw/]]\n**[[聚財網|http://stock.wearn.com/chartstock.asp]]\n*Workstation/Server\n**[[Algorithm.cs.nthu.edu.tw|http://algorithm.cs.nthu.edu.tw]]\n**[[kitty.2y.idv.tw|http://kitty.2y.idv.tw]]
**一般性質::[[HEMiDEMi|http://www.hemidemi.com/]]、[[博士家園|http://www.math.org.cn/]]、[[人大經濟論壇|http://www.pinggu.org/bbs/]]、[[背包客棧|http://www.backpackers.com.tw/forum/]]、[[Math Overflow|http://mathoverflow.net/]]、[[Stack Overflow|http://stackoverflow.com/]]\n\n**書籍查詢::[[中原大學圖書館|http://www.lib.cycu.edu.tw/]]、[[交大應數系圖|http://www.math.nctu.edu.tw/amlib/]]、[[清華大學圖書館|http://www.lib.nthu.edu.tw/]]、[[台灣聯大圖書館|http://140.113.39.58/]]、[[臺灣聯大整合查詢|http://meta.lib.ncu.edu.tw/V?RN=747970519]]、[[博客來網路書店|http://www.books.com.tw/]]、[[若水堂書店|http://www.waterlike.com.tw/]]、[[巨擘書局|http://www.apexbook.com.tw/index.php]]、[[水木書苑|http://www.nthubook.com.tw/index.php]]、[[金石堂網路書店|http://www.kingstone.com.tw/]]、[[華通書坊|http://www.huatung.com/index.php]]、[[Amazon|http://www.amazon.com/]]、[[FindBook|http://findbook.tw/]]、[[netLibrary|http://apx.lib.nthu.edu.tw:8224/]]、[[Ebookee|http://ebookee.info/]]\n\n**書庫::[[維基文庫|http://zh.wikisource.org]]、[[佛學數位圖書館暨博物館|http://buddhism.lib.ntu.edu.tw/BDLM/index.htm]]、[[般若文海|http://book.bfnn.org/index.html]]、[[Chinese and English Bible Online|http://www.o-bible.com/b5/]]\n\n**字典工具::[[Excite 日文翻譯|http://www.excite.co.jp/world/chinese/]]、[[漢典|http://www.zdic.net/]]、[[國語辭典|http://dict.revised.moe.edu.tw/]]、[[Yahoo!奇摩字典|http://tw.dictionary.yahoo.com/]]、[[Cambridge Dict.s Online|http://dictionary.cambridge.org/]]、[[Longman Web Dict.|http://www.ldoceonline.com/]]、[[MSN Encarta|http://encarta.msn.com/encnet/features/dictionary/dictionaryhome.aspx]](有發音)、[[The DICT Dev. Group|http://www.dict.org/bin/Dict]]、[[Mathematical English Usage|http://www.emis.de/monographs/Trzeciak/]]、[[WordNet|http://wordnet.princeton.edu/]]、[[證券暨期貨詞彙|http://www.sfi.org.tw/glossary/]]、[[美股財經辭典|http://www.quote123.com/aspnet/usmkt/edu/eco_ind/list.aspx]]、[[Alex Catalogue of Electronic Texts|http://infomotions.com/alex/]]、[[Online Text Correction|http://www.onlinecorrection.com/]]、[[Corpus of Contemporary American English (COCA)|http://www.americancorpus.org/]]、[[British National Corpus(BNC)|http://www.natcorp.ox.ac.uk/]]、[[Sayings and Phrases|http://www.phrases.org.uk/meanings/]]、[[Oxford Collocations Dictionary Online|http://llohe-ocd.appspot.com/]]、[[Cobuild Concordance and Collocations Sampler|http://www.collins.co.uk/Corpus/CorpusSearch.aspx]]、[[Free TOEFL Essay Samples|http://www.findscore.com/toefl.html]]、[[NTNU單字片語檢索系統|http://llrc.eng.ntnu.edu.tw/English/search/default.htm]]、[[Word Information|http://wordinfo.info/]]\n\n**活動公告::[[NCTU Math|http://www.math.nctu.edu.tw/NctuSpeak/Speak.php3]]、[[NCTS Math|http://math.cts.nthu.edu.tw/Mathematics/english/program.html]]、[[NCTS Physics|http://phys.cts.nthu.edu.tw/actnews/actnews.php?class=101]]、[[清華公佈欄|http://infonet.et.nthu.edu.tw/bbs_p1.php]]、[[臺大演講網|http://speech.ntu.edu.tw/user/]]、[[交大OCW|http://ocw.nctu.edu.tw/main.php]]\n\n**其他工具::[[國學網|http://www.guoxue.com/]]、[[Wikipedia|http://en.wikipedia.org/wiki/Main_Page]]、[[Feedster|http://feedster.com/index.php]]、[[TinyURL|http://tinyurl.com/]]、[[火車時刻查詢系統|http://new.twtraffic.com.tw/twrail/index.aspx]]、[[護照外文姓名拼音參考|http://www.boca.gov.tw/ct.asp?xItem=1608&ctNode=172]](採用 WG)、[[萬年曆|http://www.cathvoice.org.tw/search/tool.htm]]、[[中華電信行動e櫃檯|http://www.0800080090.com.tw/]]、[[中央氣象局|http://www.cwb.gov.tw/]]、[[Urmap|http://www.urmap.com/]]、[[LaTeX-Online-Compiler|http://nirvana.informatik.uni-halle.de/~thuering/php/latex-online/latex.php]]、[[VOA News|http://www.voanews.com/english/portal.cfm]]、[[體重控制|http://tw.health.yahoo.com/gym/weight_count.php]]、[[KeepVid|http://keepvid.com/]]、[[Getv|http://getv.super-idol.com/]]、[[校內馬偕|http://www.hc.mmh.org.tw/7113/News.asp?Page_No=News&Csdp=7113]]、[[Online PS2PDF|http://www.ps2pdf.com/convert.htm]]、[[Ajax/Graphviz|http://ashitani.jp/gv/]]、[[Purdue OWL|http://owl.english.purdue.edu/owl/]]\n
*學術工具::\n**General::[[全國圖書書目資訊網|http://nbinet1.ncl.edu.tw/screens/opac_menu.html]]、[[全國文獻傳遞服務系統|http://ndds.stpi.org.tw/]]、[[Google Scholar|http://scholar.google.com/]]、[[DBLP|http://www.informatik.uni-trier.de/~ley/db/index.html]]、[[Bib. of TCS|http://www.cs.toronto.edu/pub/mirror/bibliography/Theory/index.html]]、[[MathSciNet|http://apx.lib.nthu.edu.tw:8666/mathscinet/]]、[[ACM DL|http://portal.acm.org/]]、[[ScienceDirect|http://www.sciencedirect.com/]]、[[SpringerLink|http://www.springerlink.com/]]、[[IEEEXplore|http://ieeexplore.ieee.org/]]、[[arXiv|http://arxiv.org/]]、[[VTRC|http://www.lib.umd.edu/ENGIN/TechReports/Virtual-TechReports.html]]、[[Stanford CS Technical Reports|http://infolab.stanford.edu/TR/]]、[[RePEc|http://repec.org/]]、[[AIP Scitation|http://scitation.aip.org/]]、[[CFP|http://call4paper.info/bookmarks.php/]]、[[eigenfactor|http://www.eigenfactor.org/]]、[[SJR|http://www.scimagojr.com/index.php]]、[[Ei Engineering Village 2|http://ejsite.lib.nthu.edu.tw/cgi-bin/newsys/counter.pl?url=77&code=c&ttslink=N]]、[[JCR|http://admin-apps.isiknowledge.com/JCR/JCR?PointOfEntry=Home&SID=S2dc1CgKIICkd5fcgn8]]、[[CiteSeerX alpha|http://citeseerx.ist.psu.edu/]]、[[ISI Web of Knowledge|http://apps.isiknowledge.com/]]、[[PubMed|http://www.ncbi.nlm.nih.gov/sites/entrez?db=PubMed]]、(US) [[PatentStorm|http://www.patentstorm.us/]]\n**Thesis: [[Networked Digital Library of Theses and Dissertations|http://www.ndltd.org/browse.en.html]]、[[ProQuest UMI Dissertation Publishing|http://proquest.com/products_umi/dissertations/]]、[[全國博碩士論文資訊網|http://etds.ncl.edu.tw/theabs/index.jsp]]、[[數位化論文典藏聯盟|http://pqdd.sinica.edu.tw/]]、[[SCI影響因子查詢|http://if.hainar.com/]]\n**Lectures: [[webcast.berkeley|http://webcast.berkeley.edu/index.php]]、[[Stanford E.|http://see.stanford.edu/see/courses.aspx]]、[[MIT OCW|http://ocw.mit.edu/OcwWeb/web/home/home/index.htm]]、[[NCTU OCW|http://www.myoops.org/twocw/nctu/course/rikifc24.html?CID=1]]\n\n*綜合型期刊::[[Comm. ACM|http://portal.acm.org/browse_dl.cfm?linked=1&part=magazine&idx=J79&coll=portal&dl=ACM&CFID=10774764&CFTOKEN=37717198]]、[[ACM SIGACT News|http://portal.acm.org/browse_dl.cfm?linked=1&part=newsletter&idx=J697&coll=portal&dl=ACM&CFID=10774764&CFTOKEN=37717198]]、[[AMM|http://proquest.umi.com/pqdlink?Ver=1&Exp=06-30-2009&RQT=318&PMID=19428&clientId=20889]]、[[Bulletin of AMS|http://www.ams.org/bull/]]、[[Notices of AMS|http://www.ams.org/notices/200707/]]、[[The Economist|http://proquest.umi.com/pqdlink?Ver=1&Exp=04-01-2011&RQT=318&PMID=28390&clientId=20889]]、[[Science|http://www.sciencemag.org/magazine.dtl]]、[[Nature|http://www.nature.com/nature/index.html]]、[[ACM SIGKDD Explorations|http://www.acm.org/sigs/sigkdd/explorations/issue.php?issue=current]]、[[ENTCS|http://www.entcs.org/]]、[[ENDM|http://www.sciencedirect.com/science/journal/15710653]]、[[BEATCS|http://www.eatcs.org/publications/bulletin.html]].\n\n*Others\n** [[SIAM News|http://www.siam.org/news/]]\n** [[Bulletin of EATCS|http://www.liacs.nl/~beatcs]] -- [[Computational Complexity Column|http://theorie.informatik.uni-ulm.de/Personen/toran/beatcs/]]\n**[[ACM SIGACT News|http://portal.acm.org/browse_dl.cfm?linked=1&part=newsletter&idx=J697]]\n**[[Optima|http://www.ise.ufl.edu/~optima/]] -- newsletter of the Mathematical Programming Society\n**[[TheoryMatters|http://theorymatters.org/pmwiki/pmwiki.php]]\n**[[ComplexityZoo|http://qwiki.caltech.edu/wiki/Complexity_Zoo]]\n**[[Algorithmist|http://www.algorithmist.com/index.php/Main_Page]]\n**[[Parawiki|http://www.parawiki.org/index.php/Main_Page]]\n**[[Compendium of NPO|http://www.nada.kth.se/~viggo/wwwcompendium/]]\n**[[An Annotated List of Selected NP-complete Problems|http://www.csc.liv.ac.uk/~ped/teachadmin/COMP202/annotated_np.html]]\n**[[Design and Analysis of Computer Algorithms|http://www.personal.kent.edu/~rmuhamma/Algorithms/algorithm.html]]\n**[[Compendium of Parameterized Problems|http://bravo.ce.uniroma2.it/home/cesati/research/compendium/]]\n**[[Parameterized Complexity|http://fpt.wikidot.com/]] community homepage\n**[[Graph Coloring Page|http://web.cs.ualberta.ca/~joe/Coloring/index.html]]\n**[[The P-versus-NP page|http://www.win.tue.nl/~gwoegi/P-versus-NP.htm]]\n**[[The Stony Brook Algorithm Repository|http://www.cs.sunysb.edu/~algorith/index.html]]\n**[[Graphs :: Theory - Algorithms - Complexity|http://people.freenet.de/Emden-Weinert/graphs.html]]\n**[[Information System on Graph Class Inclusions v2.0|http://wwwteo.informatik.uni-rostock.de/isgci/]]\n**[[RIOT -- Remote Interactive Optimization Testbed|http://riot.ieor.berkeley.edu/riot/index.html]]\n**[[Average-Case Complexity Forum|http://www.uncg.edu/mat/avg.html]]\n**[[Information-Based Complexity|http://www.ibc-research.org/]]\n**[[Springer Online Reference Works -- Encyclopaedia of Mathematics|http://eom.springer.de/]], Edited by Michiel Hazewinkel\n**[[Open Problem Garden|http://garden.irmacs.sfu.ca/]]\n**[[The Similarity Search Wiki|http://www.sswiki.tierra-aoi.net/index.php?title=Main_Page]]\n\n<<tabs JCRopt\n"Journal Rank" "Journal Rank 2008" JournalRank2008\n"Conference Rank" "Conference Rank" ConfRank \n"By Catagory" "JournalRankByCatagory" JournalRankByCatagory\n>>
! General\n[[西雅圖資訊中心|http://seattle.leck.com/]], [[西雅圖 - 背包攻略|http://www.backpackers.com.tw/guide/index.php/西雅圖]], [[Metro Online|http://metro.kingcounty.gov/]]\n\n! Rent Rooms\n[[Sublet.com|http://www.sublet.com/]], [[Tenants Union of Washington State|http://www.tenantsunion.org/]], [[ApartmentRatings.com|http://www.apartmentratings.com/rate/WA-Seattle.html]], [[Craigslist|http://seattle.craigslist.org/see/hhh/]]\n\n! Ref.\n*[[憧眼石 - 美國生活攻略 - 租屋選擇網站|http://www.chungyanshih.com/content/view/126/62/]]\n*[[美國租屋經驗談 - USTSU留美知識+ |http://ustsu.com/viewthread.php?tid=5582]]\n*[[The Seattle Public Library: University Branch|http://www.spl.org/default.asp?pageID=branch_open&branchID=27]]\n*[[UW Mathematics Research Library|http://www.lib.washington.edu/math/]]\n*[[UW Engineering Library|http://www.lib.washington.edu/engineering/]]\n
AboutMe\n[[Contact]]\n
! Notice\n* Lab: Computational Systems Biology and ~Bio-Medicine Laboratory\n* TEL: +886-3-5715131 ext. 33596\n* FAX: +886-3-5723694 \n* Mail address: Computational Systems Biology and ~Bio-Medicine Laboratory, Department of Computer Science, National Tsing Hua University, 101, Kuang Fu Rd, Sec.2, Hsing Chu, Taiwan 300 R.O.C\n* E-mail: [img[http://kitty.2y.idv.tw/~abner/email.png|http://kitty.2y.idv.tw/~abner/email.png]]\n\n* 實驗室: 計算系統生物與醫學實驗室\n* 電話: +886-3-5715131 ext. 33596\n* 傳真: +886-3-5723694 \n* 通訊地址: (300) 新竹市光復路二段101號,國立清華大學資訊工程學系,計算系統生物與醫學實驗室。\n* E-mail: [img[http://kitty.2y.idv.tw/~abner/email.png|http://kitty.2y.idv.tw/~abner/email.png]]
Abner Chih Yi Huang
"You will know the truth, and the truth will set you free" -- ''John 8:32, BIBLE''
\n''COMPUTER SCIENCE, BIOLOGY APPLICATIONS''\n\n*[[PLoS Computational Biology|http://www.ploscompbiol.org/home.action]] -- IF 5.895 (1/28)\n** "Generally, reliability and significance of biological discovery are validated and enriched by experimental studies. Experimental validation is not required for publication, however, nor does experimental validation of a modest biological discovery render a manuscript suitable for PLoS Computational Biology."\n*[[BIOINFORMATICS|http://bioinformatics.oxfordjournals.org/]] -- IF 4.328 (2/28)\n*[[BMC Bioinformatics|http://www.biomedcentral.com/bmcbioinformatics/]] -- IF 3.781 (3/28)\n*[[Algorithms for Molecular Biology|http://www.almob.org/]] -- IF 2.081 (12/28)\n*[[IEEE-ACM Transactions on Computational Biology and Bioinformatics|http://portal.acm.org/browse_dl.cfm?coll=ACM&dl=ACM&idx=J954&linked=1&part=transaction]] -- IF 1.866 (12/92)\n*[[IEEE T INF TECHNOL B|http://virtual.vtt.fi/virtual/proj2/titb/]] -- IF 1.939 (21/94)\n*[[IEEE Transactions on Systems, Man, and Cybernetics, Part B|http://ieeexplore.ieee.org/xpl/RecentIssue.jsp?punumber=3477]] -- IF 2.361 (2/17)\n*[[J BIOMED INFORM|http://www.sciencedirect.com/science/journal/15320464]] -- IF 1.924 (22/94)\n*[[J COMPUT BIOL|http://www.liebertpub.com/publication.aspx?pub_id=31]] -- IF 1.563 (20/92)\n*[[Neuroinformatics|http://www.springerlink.com/content/120559/]] -- IF 2.889 (7/94)\n*[[Artificial Intelligence in Medicine|http://www.sciencedirect.com/science/journal/09333657]] -- IF 1.960 (28/94)\n\n\n''MULTIDISCIPLINARY SCIENCES''\n*SCIENCE -- IF 28.103 (2/42)\n*NATURE -- IF 31.434 (1/42)\n*[[PNAS|http://www.pnas.org/]] -- IF 9.380 (3/42)\n*[[IBM Journal of Research and Development|http://www.research.ibm.com/journal/rd51-34.html]] -- IF 3.722 (3/45)\n*[[COMPLEXITY|http://www3.interscience.wiley.com/cgi-bin/jhome/38804]] -- IF 0.800 (20/42)\n*[[Nature Physics|http://www.nature.com/nphys/index.html]] -- IF 16.821 (3/68)\n*[[Physical Review Letters|http://prl.aps.org/]] -- IF 7.180 (5/68)\n*[[Physical Review E|http://scitation.aip.org/dbt/dbt.jsp?KEY=PLEEE8&Volume=79&Issue=2]] -- IF 2.508 (6/46)\n*[[Physica A|http://www.sciencedirect.com/science/journal/03784371]] -- IF 1.441 (25/68)\n\n\n''COMPUTER SCIENCE, OTHERS''\n* [[IEEE TRANSACTIONS ON RELIABILITY|http://ieeexplore.ieee.org/xpl/RecentIssue.jsp?punumber=24]] -- IF 1.315 (21/45)\n* [[ACM Transactions on Computation Theory|http://portal.acm.org/browse_dl.cfm?linked=1&part=transaction&idx=J1190]]\n* [[ACM Transactions on Database Systems|http://portal.acm.org/browse_dl.cfm?linked=1&part=transaction&idx=J777]] -- IF 1.613 (25/86)\n* [[ACM Transactions on Knowledge Discovery from Data|http://portal.acm.org/browse_dl.cfm?linked=1&part=transaction&idx=J1054]]\n* [[ACM Transactions on Mathematical Software|http://portal.acm.org/browse_dl.cfm?linked=1&part=transaction&idx=J782]] -- IF 2.197 (8/175)\n* \n
* General Infomation and reference Service\n**[[Wikipedia, the free encyclopedia|http://en.wikipedia.org/wiki/Main_Page]]\n**[[維基百科,自由的百科全書|http://zh.wikipedia.org/wiki/首页]] , not only chinese version of Wikipedia\n**[[Answers.com - Online Dictionary, Encyclopedia and much more|http://www.answers.com/]]\n**[[ISI Web of Knowledge v3.0|http://portal.isiknowledge.com/]], including JCR, Web of Science, etc.\n**[[台灣會議中心|http://www.tmic.tw/]]\n**[[行政院國家科學委員會|http://web.nsc.gov.tw/default.asp?mp=1]] ([[National Science Council|http://web.nsc.gov.tw/default.asp?mp=7]])\n**[[Complore|http://www.complore.com/]]\n**[[台灣生物資訊學會|http://chem1.nchc.org.tw/web-root/bst/index.php]]\n**[[國網中心生物知識庫與生物計算服務系統|http://bioinfo.nchc.org.tw/index.php]]\n\n\n* Services of Academic Literature.\n**[[臺灣聯大整合查詢系統|http://meta.lib.ncu.edu.tw]]\n**[[全國圖書書目資訊網|http://nbinet1.ncl.edu.tw/]]\n**[[全國文獻傳遞服務系統|http://ill.stic.gov.tw/]]\n**[[全國博碩士論文資訊網|http://datas.ncl.edu.tw/theabs/1/]]\n**[[ACM Computing Reviews|http://www.reviews.com/]]\n**[[Google Scholar|http://scholar.google.com/]]\n**[[Citeseer|http://citeseer.ist.psu.edu/]]\n**[[DBLP|http://www.informatik.uni-trier.de/~ley/db/index.html]]\n**[[CS Bibl.|http://liinwww.ira.uka.de/bibliography/index.html]]\n**[[Scirus|http://www.scirus.com/srsapp/]]\n**[[MathSciNet|http://www.ams.org/mathscinet]]\n**[[Zentralblatt MATH|http://www.zblmath.fiz-karlsruhe.de/MATH/home]], It collected a lot of mathematical reviews like [[MathSciNet|http://www.ams.org/mathscinet]].\n**[[ACM DL|http://portal.acm.org/]]\n**[[IEEE Xplore|http://ieeexplore.ieee.org/Xplore/guesthome.jsp]]\n**[[ScienceDirect|http://www.sciencedirect.com/]]\n**[[SpringerLink|http://www.springerlink.com/]] :: [[Lecture Notes in Computer Science| http://springerlink.com/openurl.asp?genre=journal&issn=0302-9743]]\n**[[OCLC FirstSearch|http://newfirstsearch.oclc.org/FSIP]]\n**[[COMPENDEX|http://lib019.lib.nthu.edu.tw/ttslink/servlet/Ttslink?num=cpdev2]]\n**[[PubMed Central (PMC)|http://www.pubmedcentral.nih.gov/]]\n**[[MIT Technical Reports & Working Papers Document Services|http://libraries.mit.edu/docs/research-publications.html]]\n**[[On-line CS Techreports|http://www.cs.cmu.edu/~jblythe/cs-reports.html]]\n**[[The Virtual Technical Reports Center|http://www.lib.umd.edu/ENGIN/TechReports/Virtual-TechReports.html]]\n**[[arXiv.org e-Print archive|http://arxiv.org/]]\n**[[Windows Live Academic|http://academic.live.com/]]\n\n\n*Bio. Databases\n**[[NCBI|http://www.ncbi.nlm.nih.gov/]]\n**[[DDBJ|http://www.ddbj.nig.ac.jp/]]\n**[[PDB|http://www.rcsb.org/pdb/]]\n**[[Univ. Virginia FASTA|http://fasta.bioch.virginia.edu/]]\n**[[ORF finder|http://www.ncbi.nlm.nih.gov/gorf/]]\n**[[KEGG|http://www.genome.ad.jp/kegg/]]\n**[[EMBL|http://www.ebi.ac.uk/genomes/]]\n**[[The database of Genotype and Phenotype|http://www.ncbi.nlm.nih.gov/sites/entrez?db=gap]] (dbGaP) \n**[[NERC Environmental Bioinformatics Centre|http://nebc.nox.ac.uk/]]\n**[[BBSC Bioinformatics - Biology Service Core @ Academia Sinica|http://bbsc.imb.sinica.edu.tw/index.php]]\n**[[BIOBASE Biological Databases|http://www.biobase-international.com/pages/]]\n\n*Resources from Academic Community\n**[[Other bioinformatics courses and resources|http://www.cs.tau.ac.il/~rshamir/algmb/bioinf-courses.html]], maintained by [[Ron Shamir|http://www.cs.tau.ac.il/~rshamir/]]\n**[[systems-biology|http://www.systems-biology.org/index.html]] -- a website aimed to provide information and tools needed to understand systems biology.\n
This list is sorted by the Impact Factor of [[JCR|http://portal.isiknowledge.com/portal.cgi?DestApp=JCR&Func=Frame]].\n* [[ACM Computing Surveys|http://portal.acm.org/browse_dl.cfm?linked=1&part=journal&idx=J204&coll=portal&dl=ACM&CFID=10774764&CFTOKEN=37717198]] -- IF 10.037\n* [[SIAM Review|http://epubs.siam.org/SIREV/]] -- IF 6.118\n* [[Bioinformatics|http://bioinformatics.oxfordjournals.org/]] -- IF 5.742\n* [[Journal of Computational Biology|http://www.worldscinet.com/jbcb/jbcb.shtml]] -- IF 3.241\n* [[Journal of the ACM|http://portal.acm.org/browse_dl.cfm?linked=1&part=journal&idx=J401&coll=ACM&dl=ACM]] -- IF 2.414\n* [[Computational Complexity|http://www.springerlink.com/content/1420-8954/]] -- IF 2.000\n* [[Foundations of Computational Mathematics|http://www.springerlink.com/link.asp?id=106038]] -- IF 1.500\n* [[SIAM Journal on Computing|http://epubs.siam.org/SICOMP/]] -- IF 1.306\n* [[Journal of Complexity|http://www.sciencedirect.com/science/journal/0885064X]] -- IF 1.186\n* [[Information and Computation|http://www.sciencedirect.com/science/journal/08905401]] -- IF 1.053\n* [[Journal of Computer and System Sciences|http://www.sciencedirect.com/science/journal/00220000]] -- IF 1.030\n* [[Algorithmica|http://www.springerlink.com/openurl.asp?genre=journal&eissn=1432-0541]] -- IF 0.923\n* [[Acta Informatica|http://www.springerlink.com/openurl.asp?genre=journal&issn=0001-5903]] -- IF 0.922\n* [[Computational Optimization and Applications| http://www.springerlink.com/openurl.asp?genre=journal&issn=0926-6003]] -- IF 0.815\n* [[Theoretical Computer Science|http://www.sciencedirect.com/science/journal/03043975]] -- IF 0.743\n* [[SIAM Journal on Discrete Mathematics|http://epubs.siam.org/SIDMA/sidma_toc.html]] -- IF 0.636\n* Journal of Combinatorial Theory, Series [[A|http://www.sciencedirect.com/science/journal/00973165]] (IF 0.485) and [[B|http://www.sciencedirect.com/science/journal/00958956]] (IF 0.618)\n* [[Discrete Applied Mathematics|http://www.sciencedirect.com/science/journal/0166218X]] -- IF 0.585\n* [[Networks|http://www3.interscience.wiley.com/cgi-bin/jhome/32046]] -- IF 0.571\n* [[Computers and Operations Research|http://www.sciencedirect.com/science/journal/03050548]] -- IF 0.562\n* [[Journal of Combinatorial Optimization|http://www.springerlink.com/openurl.asp?genre=journal&issn=1382-6905]] -- IF 0.560\n* [[Information Sciences|http://www.sciencedirect.com/science/journal/00200255]] -- IF 0.540\n* [[Theory of Computing Systems|http://www.springerlink.com/openurl.asp?genre=journal&issn=1432-4350]] -- IF 0.538\n* [[Combinatorics, Probability and Computing|http://journals.cambridge.org/action/displayJournal?jid=CPC]] -- IF 0.489\n* [[Journal of Graph Theory|http://www3.interscience.wiley.com/cgi-bin/jhome/35334?CRETRY=1&SRETRY=0]] -- IF 0.460\n* [[Information Processing Letters|http://www.sciencedirect.com/science/journal/00200190]] -- IF 0.453\n* [[Combinatorica|http://www.springerlink.com/openurl.asp?genre=journal&eissn=1439-6912]] -- IF 0.388\n* [[Discrete Mathematics|http://www.sciencedirect.com/science/journal/0012365X]] -- IF 0.374\n* [[European Journal of Combinatorics|http://www.sciencedirect.com/science/journal/01956698]] -- IF 0.303\n* [[Graphs and Combinatorics| http://www.springerlink.com/openurl.asp?genre=journal&issn=0911-0119]] -- IF 0.235\n\n''Some good journals not yet in JCR''\n* [[ACM Transactions on Algorithms|http://portal.acm.org/browse_dl.cfm?linked=1&part=transaction&idx=J982&coll=portal&dl=ACM&CFID=71912801&CFTOKEN=62408165]] -- \n* [[Journal of Discrete Algorithms|http://www.sciencedirect.com/science/journal/15708667]] --\n* [[Journal of Graph Algorithms and Applications|http://www.cs.brown.edu/publications/jgaa/]] --\n* [[Theory of Computing|http://theoryofcomputing.org]] --\n* [[Random Structures and Algorithms|http://www3.interscience.wiley.com/cgi-bin/jhome/38107]] \n
JCR 2006 came out recently. JCR decided to exclude the LNCS from SCI, although LNCS collects a lot of proceedings of TCS conferences. It might make some students and researchers would not like to submit their results to conferences.\n<html>\n<ul>\n <li><a href="http://portal.acm.org/browse_dl.cfm?linked=1&part=journal&idx=J204&coll=portal&dl=ACM&CFID=10774764&CFTOKEN=37717198" target="_blank" title="//portal.acm.org/browse_dl.cfm?linked=1&part=journal&idx=J204&coll=portal&dl=ACM&CFID=10774764&CFTOKEN=37717198" class="externalLink">ACM Computing Surveys</a> -- IF 4.130</li>\n <li> <a href="http://epubs.siam.org/SIREV/" target="_blank" title="//epubs.siam.org/SIREV/" class="externalLink">SIAM Review</a> -- IF 2.667</li>\n <li> <a href="http://bioinformatics.oxfordjournals.org/" target="_blank" title="//bioinformatics.oxfordjournals.org/" class="externalLink">Bioinformatics</a> -- IF 4.894</li>\n <li> <a href="http://www.worldscinet.com/jbcb/jbcb.shtml" target="_blank" title="//www.worldscinet.com/jbcb/jbcb.shtml" class="externalLink">Journal of Computational Biology</a> -- IF 2.000</li>\n <li> <a href="http://portal.acm.org/browse_dl.cfm?linked=1&part=journal&idx=J401&coll=ACM&dl=ACM" target="_blank" title="//portal.acm.org/browse_dl.cfm?linked=1&part=journal&idx=J401&coll=ACM&dl=ACM" class="externalLink">Journal of the ACM</a> -- IF 2.917</li>\n <li> <a href="http://www.springerlink.com/content/1420-8954/" target="_blank" title="//www.springerlink.com/content/1420-8954/" class="externalLink">Computational Complexity</a> -- IF 1.125</li>\n <li> <a href="http://www.springerlink.com/link.asp?id=106038" target="_blank" title="//www.springerlink.com/link.asp?id=106038" class="externalLink">Foundations of Computational Mathematics</a> -- IF 1.269</li>\n <li> <a href="http://epubs.siam.org/SICOMP/" target="_blank" title="//epubs.siam.org/SICOMP/" class="externalLink">SIAM Journal on Computing</a> -- IF 1.361</li>\n <li> <a href="http://www.sciencedirect.com/science/journal/0885064X" target="_blank" title="//www.sciencedirect.com/science/journal/0885064X" class="externalLink">Journal of Complexity</a> -- IF 1.422</li>\n <li> <a href="http://www.sciencedirect.com/science/journal/08905401" target="_blank" title="//www.sciencedirect.com/science/journal/08905401" class="externalLink">Information and Computation</a> -- IF 1.107</li>\n <li> <a href="http://www.sciencedirect.com/science/journal/00220000" target="_blank" title="//www.sciencedirect.com/science/journal/00220000" class="externalLink">Journal of Computer and System Sciences</a> -- IF 1.252</li>\n <li> <a href="http://www.springerlink.com/openurl.asp?genre=journal&eissn=1432-0541" target="_blank" title="//www.springerlink.com/openurl.asp?genre=journal&eissn=1432-0541" class="externalLink">Algorithmica</a> --- IF 0.850</li>\n <li> <a href="http://www.springerlink.com/openurl.asp?genre=journal&issn=0001-5903" target="_blank" title="//www.springerlink.com/openurl.asp?genre=journal&issn=0001-5903" class="externalLink">Acta Informatica</a> -- IF 0.830</li>\n <li> <a href="http://www.springerlink.com/openurl.asp?genre=journal&issn=0926-6003" target="_blank" title="//www.springerlink.com/openurl.asp?genre=journal&issn=0926-6003" class="externalLink">Computational Optimization and Applications</a> -- IF 0.800</li>\n <li> <a href="http://www.sciencedirect.com/science/journal/03043975" target="_blank" title="//www.sciencedirect.com/science/journal/03043975" class="externalLink">Theoretical Computer Science</a> -- IF 0.843</li>\n <li> <a href="http://epubs.siam.org/SIDMA/sidma_toc.html" target="_blank" title="//epubs.siam.org/SIDMA/sidma_toc.html" class="externalLink">SIAM Journal on Discrete Mathematics</a> -- IF 0.518</li>\n <li> Journal of Combinatorial Theory Series <a href="http://www.sciencedirect.com/science/journal/00973165" target="_blank" title="//www.sciencedirect.com/science/journal/00973165" class="externalLink">A</a> (IF 0.677) and <a href="http://www.sciencedirect.com/science/journal/00958956" target="_blank" title="//www.sciencedirect.com/science/journal/00958956" class="externalLink">B</a> (IF 0.792)</li>\n <li> <a href="http://www.sciencedirect.com/science/journal/0166218X" target="_blank" title="//www.sciencedirect.com/science/journal/0166218X" class="externalLink">Discrete Applied Mathematics</a> -- IF 0.577</li>\n <li> <a href="http://www3.interscience.wiley.com/cgi-bin/jhome/32046" target="_blank" title="//www3.interscience.wiley.com/cgi-bin/jhome/32046" class="externalLink">Networks</a> -- IF 0.485</li>\n <li> <a href="http://www.sciencedirect.com/science/journal/03050548" target="_blank" title="//www.sciencedirect.com/science/journal/03050548" class="externalLink">Computers & Operations Research</a> -- IF 0.893</li>\n <li> <a href="http://www.springerlink.com/openurl.asp?genre=journal&issn=1382-6905" target="_blank" title="//www.springerlink.com/openurl.asp?genre=journal&issn=1382-6905" class="externalLink">Journal of Combinatorial Optimization</a> -- IF 0.615</li>\n <li> <span style="text-decoration: line-through;"><a href="http://www.sciencedirect.com/science/journal/00200255" target="_blank" title="//www.sciencedirect.com/science/journal/00200255" class="externalLink">Information Sciences</a> -- IF 1.003</span></li>\n <li> <a href="http://www.springerlink.com/openurl.asp?genre=journal&issn=1432-4350" target="_blank" title="//www.springerlink.com/openurl.asp?genre=journal&issn=1432-4350" class="externalLink">Theory of Computing Systems</a> -- IF 0.769</li>\n <li> <a href="http://journals.cambridge.org/action/displayJournal?jid=CPC" target="_blank" title="//journals.cambridge.org/action/displayJournal?jid=CPC" class="externalLink">Combinatorics Probability & Computing</a> -- IF 0.667</li>\n <li> <a href="http://www3.interscience.wiley.com/cgi-bin/jhome/35334?CRETRY=1&SRETRY=0" target="_blank" title="//www3.interscience.wiley.com/cgi-bin/jhome/35334?CRETRY=1&SRETRY=0" class="externalLink">Journal of Graph Theory</a> -- IF 0.403</li>\n <li> <a href="http://www.sciencedirect.com/science/journal/00200190" target="_blank" title="//www.sciencedirect.com/science/journal/00200190" class="externalLink">Information Processing Letters</a> -- IF 0.532</li>\n <li> <a href="http://www.springerlink.com/openurl.asp?genre=journal&eissn=1439-6912" target="_blank" title="//www.springerlink.com/openurl.asp?genre=journal&eissn=1439-6912" class="externalLink">Combinatorica</a> -- IF 0.784</li>\n <li> <a href="http://www.sciencedirect.com/science/journal/0012365X" target="_blank" title="//www.sciencedirect.com/science/journal/0012365X" class="externalLink">Discrete Mathematics</a> -- IF 0.347</li>\n <li> <a href="http://www.sciencedirect.com/science/journal/01956698" target="_blank" title="//www.sciencedirect.com/science/journal/01956698" class="externalLink">European Journal of Combinatorics</a> -- IF 0.710</li>\n <li> <a href="http://www.springerlink.com/openurl.asp?genre=journal&issn=0911-0119" target="_blank" title="//www.springerlink.com/openurl.asp?genre=journal&issn=0911-0119" class="externalLink">Graphs and Combinatorics</a> -- IF 0.175</li>\n <li><a href="http://www.sciencedirect.com/science/journal/01966774">Journal of Algorithms</a> -- IF 1.119</li>\n <li><a href="http://www3.interscience.wiley.com/cgi-bin/jhome/38107" target="_blank" title="//www3.interscience.wiley.com/cgi-bin/jhome/38107" class="externalLink">Random Structures and Algorithm</a> -- IF 1.167</li>\n <li><a href="http://ieeexplore.ieee.org/xpl/RecentIssue.jsp?punumber=8857">IEEE-ACM Transactions on Computational Biology and Bioinformatics</a> -- IF 2.283</li>\n <li><a href="http://portal.acm.org/browse_dl.cfm?linked=1&part=transaction&idx=J771&coll=portal&dl=ACM&CFID=27684042&CFTOKEN=37359548">IEEE-ACM Transactions on Networking</a> -- IF 1.789</li>\n <li><a href="http://logcom.oxfordjournals.org/">Journal of Logic and Computation</a> -- IF 0.840</li>\n <li><a href="http://comjnl.oxfordjournals.org/">Computer Journal</a> -- IF 0.593<a href="http://comjnl.oxfordjournals.org/"> </a></li>\n</ul>\n<strong>Some good journals not yet in JCR</strong>\n<ul>\n <li> <a href="http://portal.acm.org/browse_dl.cfm?linked=1&part=transaction&idx=J982&coll=portal&dl=ACM&CFID=71912801&CFTOKEN=62408165" target="_blank" title="//portal.acm.org/browse_dl.cfm?linked=1&part=transaction&idx=J982&coll=portal&dl=ACM&CFID=71912801&CFTOKEN=62408165" class="externalLink">ACM Transactions on Algorithms</a> --</li>\n <li> <a href="http://www.sciencedirect.com/science/journal/15708667" target="_blank" title="//www.sciencedirect.com/science/journal/15708667" class="externalLink">Journal of Discrete Algorithms</a> --</li>\n <li> <a href="http://www.cs.brown.edu/publications/jgaa/" target="_blank" title="//www.cs.brown.edu/publications/jgaa/" class="externalLink">Journal of Graph Algorithms and Applications</a> ---</li>\n <li> <a href="http://theoryofcomputing.org/" target="_blank" title="//theoryofcomputing.org" class="externalLink">Theory of Computing</a> --</li>\n <li><a href="http://www.springerlink.com/content/100324/?p=b21254ba5e344a0eaed7ed6db9ed6632&pi=0">Order</a></li>\n</ul>\n</html>\nRefer the JournalRank2005 |
The original data is from Guofei Gu's [[Computer Science Conference Rankings|http://www-static.cc.gatech.edu/~guofei/CS_ConfRank.htm]]. The following is some conferences which are close to our group.\n\nAREA: Algorithms and Theory\n* Rank 1:\n** STOC: ACM Symp on Theory of Computing\n** FOCS: IEEE Symp on Foundations of Computer Science\n** SODA: ACM/SIAM Symp on Discrete Algorithms\n* Rank 2:\n** STACS: Symp on Theoretical Aspects of Computer Science\n** ICALP: Intl Colloquium on Automata, Languages and Prog\n** CC: IEEE Symp on Computational Complexity\n** WADS: Workshop on Algorithms and Data Structures\n** MFCS: Mathematical Foundations of Computer Science\n** SWAT: Scandinavian Workshop on Algorithm Theory\n** ESA: European Symp on Algorithms\n** IPCO: MPS Conf on integer programming & comb optimization\n** ISTCS: Israel Symp on Theory of Computing and Systems\n** ISAAC: Intl Symp on Algorithms and Computation\n** LATIN: Intl Symp on Latin American Theoretical Informatics\n** RECOMB: Annual Intl Conf on Comp Molecular Biology\n* Rank 3:\n** ASIAN: Asian Computing Science Conf\n** FCT: Fundamentals of Computation Theory\n** WG: Workshop on Graph Theory\n** CIAC: Italian Conf on Algorithms and Complexity\n** ICCI: Advances in Computing and Information\n** AWTI: Argentine Workshop on Theoretical Informatics\n** CATS: The Australian Theory Symp\n** COCOON: Annual Intl Computing and Combinatorics Conf\n** CITB: Complexity & info-theoretic approaches to biology\n** DMTCS: Intl Conf on Disc Math and TCS\n\nAlso, Daniel Lemire maintains [[a webpage of conference on data mining|http://www.daniel-lemire.com/blog/conferences/]]. Kmining.com also maintains [[one|http://www.kmining.com/info_conferences.html]].\n\nSee also [[Computer Science Conference Ranking|http://www.cs-conference-ranking.org/home.html]]. They divide all conferences into 4 classes.\n* Databases / Knowledge and Data Management / Data Security / Web / Mining\n* Artificial Intelligence / Machine Learning / Robotics / Human Computer Interaction\n* Architecture / Hardware / High-Performance Computing / Tools / Operating Systems\n* Applications / Education / Software / Theory / Communications / Graphics / Bioinformatics\n
I am a Ph.D. candidate at [[Dept. of CS|http://www.cs.nthu.edu.tw/nthucs/]], [[NTHU|http://www.nthu.edu.tw]]. I am a member of [[Computational Systems Biology and Bio-Medicine Laboratory|http://algorithm.cs.nthu.edu.tw/]] which is led by professor [[Chuan Yi Tang|http://www.cs.nthu.edu.tw/~cytang/]] who is my adviser.\n\nBioinformatics, Computational biology, and theoretical computer science. My interests of research are computational science and complex science, such as algorithmics, computational complexity, data mining, and complex network analysis.\n\n\n\n
<html>\n<ul>\n <li><a href="http://portal.acm.org/browse_dl.cfm?linked=1&part=journal&idx=J204&coll=portal&dl=ACM&CFID=10774764&CFTOKEN=37717198" target="_blank" title="//portal.acm.org/browse_dl.cfm?linked=1&part=journal&idx=J204&coll=portal&dl=ACM&CFID=10774764&CFTOKEN=37717198" class="externalLink">ACM Computing Surveys</a> -- IF 5.25</li>\n <li> <a href="http://epubs.siam.org/SIREV/" target="_blank" title="//epubs.siam.org/SIREV/" class="externalLink">SIAM Review</a> -- IF 2.455</li>\n <li> <a href="http://bioinformatics.oxfordjournals.org/" target="_blank" title="//bioinformatics.oxfordjournals.org/" class="externalLink">Bioinformatics</a> -- IF 5.039</li>\n <li> <a href="http://www.worldscinet.com/jbcb/jbcb.shtml" target="_blank" title="//www.worldscinet.com/jbcb/jbcb.shtml" class="externalLink">Journal of Computational Biology</a> -- IF 2.109</li>\n <li> <a href="http://portal.acm.org/browse_dl.cfm?linked=1&part=journal&idx=J401&coll=ACM&dl=ACM" target="_blank" title="//portal.acm.org/browse_dl.cfm?linked=1&part=journal&idx=J401&coll=ACM&dl=ACM" class="externalLink">Journal of the ACM</a> -- IF 3.136</li>\n <li> <a href="http://www.springerlink.com/content/1420-8954/" target="_blank" title="//www.springerlink.com/content/1420-8954/" class="externalLink">Computational Complexity</a> -- IF 1.182</li>\n <li> <a href="http://www.springerlink.com/link.asp?id=106038" target="_blank" title="//www.springerlink.com/link.asp?id=106038" class="externalLink">Foundations of Computational Mathematics</a> -- IF 1.833</li>\n <li> <a href="http://epubs.siam.org/SICOMP/" target="_blank" title="//epubs.siam.org/SICOMP/" class="externalLink">SIAM Journal on Computing</a> -- IF 1.31</li>\n <li> <a href="http://www.sciencedirect.com/science/journal/0885064X" target="_blank" title="//www.sciencedirect.com/science/journal/0885064X" class="externalLink">Journal of Complexity</a> -- IF 0.793</li>\n <li> <a href="http://www.sciencedirect.com/science/journal/08905401" target="_blank" title="//www.sciencedirect.com/science/journal/08905401" class="externalLink">Information and Computation</a> -- IF 0.983</li>\n <li> <a href="http://www.sciencedirect.com/science/journal/00220000" target="_blank" title="//www.sciencedirect.com/science/journal/00220000" class="externalLink">Journal of Computer and System Sciences</a> -- IF 1.185</li>\n <li> <a href="http://www.springerlink.com/openurl.asp?genre=journal&eissn=1432-0541" target="_blank" title="//www.springerlink.com/openurl.asp?genre=journal&eissn=1432-0541" class="externalLink">Algorithmica</a> --- IF 0.756</li>\n <li> <a href="http://www.springerlink.com/openurl.asp?genre=journal&issn=0001-5903" target="_blank" title="//www.springerlink.com/openurl.asp?genre=journal&issn=0001-5903" class="externalLink">Acta Informatica</a> -- IF 0.80</li>\n <li> <a href="http://www.springerlink.com/openurl.asp?genre=journal&issn=0926-6003" target="_blank" title="//www.springerlink.com/openurl.asp?genre=journal&issn=0926-6003" class="externalLink">Computational Optimization and Applications</a> -- IF 0.851</li>\n <li> <a href="http://www.sciencedirect.com/science/journal/03043975" target="_blank" title="//www.sciencedirect.com/science/journal/03043975" class="externalLink">Theoretical Computer Science</a> -- IF 0.735</li>\n <li> <a href="http://epubs.siam.org/SIDMA/sidma_toc.html" target="_blank" title="//epubs.siam.org/SIDMA/sidma_toc.html" class="externalLink">SIAM Journal on Discrete Mathematics</a> -- IF 0.674</li>\n <li> Journal of Combinatorial Theory Series <a href="http://www.sciencedirect.com/science/journal/00973165" target="_blank" title="//www.sciencedirect.com/science/journal/00973165" class="externalLink">A</a> (IF 0.733) and <a href="http://www.sciencedirect.com/science/journal/00958956" target="_blank" title="//www.sciencedirect.com/science/journal/00958956" class="externalLink">B</a> (IF 1.017)</li>\n <li> <a href="http://www.sciencedirect.com/science/journal/0166218X" target="_blank" title="//www.sciencedirect.com/science/journal/0166218X" class="externalLink">Discrete Applied Mathematics</a> -- IF 0.625</li>\n <li> <a href="http://www3.interscience.wiley.com/cgi-bin/jhome/32046" target="_blank" title="//www3.interscience.wiley.com/cgi-bin/jhome/32046" class="externalLink">Networks</a> -- IF 0.609</li>\n <li> <a href="http://www.sciencedirect.com/science/journal/03050548" target="_blank" title="//www.sciencedirect.com/science/journal/03050548" class="externalLink">Computers & Operations Research</a> -- IF 1.147</li>\n <li> <a href="http://www.springerlink.com/openurl.asp?genre=journal&issn=1382-6905" target="_blank" title="//www.springerlink.com/openurl.asp?genre=journal&issn=1382-6905" class="externalLink">Journal of Combinatorial Optimization</a> -- IF 0.571</li>\n <li> <span style="text-decoration: line-through;"><a href="http://www.sciencedirect.com/science/journal/00200255" target="_blank" title="//www.sciencedirect.com/science/journal/00200255" class="externalLink">Information Sciences</a> -- IF 2.147</span></li>\n <li> <a href="http://www.springerlink.com/openurl.asp?genre=journal&issn=1432-4350" target="_blank" title="//www.springerlink.com/openurl.asp?genre=journal&issn=1432-4350" class="externalLink">Theory of Computing Systems</a> -- IF 0.625</li>\n <li> <a href="http://journals.cambridge.org/action/displayJournal?jid=CPC" target="_blank" title="//journals.cambridge.org/action/displayJournal?jid=CPC" class="externalLink">Combinatorics Probability & Computing</a> -- IF 0.619</li>\n <li> <a href="http://www3.interscience.wiley.com/cgi-bin/jhome/35334?CRETRY=1&SRETRY=0" target="_blank" title="//www3.interscience.wiley.com/cgi-bin/jhome/35334?CRETRY=1&SRETRY=0" class="externalLink">Journal of Graph Theory</a> -- IF 0.503</li>\n <li> <a href="http://www.sciencedirect.com/science/journal/00200190" target="_blank" title="//www.sciencedirect.com/science/journal/00200190" class="externalLink">Information Processing Letters</a> -- IF 0.66</li>\n <li> <a href="http://www.springerlink.com/openurl.asp?genre=journal&eissn=1439-6912" target="_blank" title="//www.springerlink.com/openurl.asp?genre=journal&eissn=1439-6912" class="externalLink">Combinatorica</a> -- IF 0.639</li>\n <li> <a href="http://www.sciencedirect.com/science/journal/0012365X" target="_blank" title="//www.sciencedirect.com/science/journal/0012365X" class="externalLink">Discrete Mathematics</a> -- IF 0.377</li>\n <li> <a href="http://www.sciencedirect.com/science/journal/01956698" target="_blank" title="//www.sciencedirect.com/science/journal/01956698" class="externalLink">European Journal of Combinatorics</a> -- IF 0.651</li>\n <li> <a href="http://www.springerlink.com/openurl.asp?genre=journal&issn=0911-0119" target="_blank" title="//www.springerlink.com/openurl.asp?genre=journal&issn=0911-0119" class="externalLink">Graphs and Combinatorics</a> -- IF 0.375</li>\n <li><a href="http://www.sciencedirect.com/science/journal/01966774">Journal of Algorithms</a> -- IF 1.03</li>\n <li><a href="http://www3.interscience.wiley.com/cgi-bin/jhome/38107" target="_blank" title="//www3.interscience.wiley.com/cgi-bin/jhome/38107" class="externalLink">Random Structures and Algorithm</a> -- IF 1.043</li>\n <li><a href="http://ieeexplore.ieee.org/xpl/RecentIssue.jsp?punumber=8857">IEEE-ACM Transactions on Computational Biology and Bioinformatics</a> -- IF 1.803</li>\n <li><a href="http://portal.acm.org/browse_dl.cfm?linked=1&part=transaction&idx=J771&coll=portal&dl=ACM&CFID=27684042&CFTOKEN=37359548">IEEE-ACM Transactions on Networking</a> -- IF 1.831</li>\n <li><a href="http://logcom.oxfordjournals.org/">Journal of Logic and Computation</a> -- IF 0.821</li>\n <li><a href="http://comjnl.oxfordjournals.org/">Computer Journal</a> -- IF 0.88</li>\n <li><a href="http://www.springerlink.com/content/100324/?p=b21254ba5e344a0eaed7ed6db9ed6632&pi=0">Order</a> -- IF 0.288</li>\n <li><a href="http://www.sciencedirect.com/science/journal/08939659">Applied Mathematics Letters</a> -- IF 0.699</li>\n <li><a href="http://www.sciencedirect.com/science/journal/00963003"> Applied Mathematics and Computation</a> -- IF 0.821</li>\n</ul>\n<strong>Some good journals not yet in JCR</strong>\n<ul>\n <li> <a href="http://portal.acm.org/browse_dl.cfm?linked=1&part=transaction&idx=J982&coll=portal&dl=ACM&CFID=71912801&CFTOKEN=62408165" target="_blank" title="//portal.acm.org/browse_dl.cfm?linked=1&part=transaction&idx=J982&coll=portal&dl=ACM&CFID=71912801&CFTOKEN=62408165" class="externalLink">ACM Transactions on Algorithms</a> --</li>\n <li> <a href="http://www.sciencedirect.com/science/journal/15708667" target="_blank" title="//www.sciencedirect.com/science/journal/15708667" class="externalLink">Journal of Discrete Algorithms</a> --</li>\n <li> <a href="http://www.cs.brown.edu/publications/jgaa/" target="_blank" title="//www.cs.brown.edu/publications/jgaa/" class="externalLink">Journal of Graph Algorithms and Applications</a> ---</li>\n <li> <a href="http://theoryofcomputing.org/" target="_blank" title="//theoryofcomputing.org" class="externalLink">Theory of Computing</a> --</li>\n <li> <a href="http://www.combinatorics.org/" target="_blank" class="externalLink">The Electronic Journal of Combinatorics</a> --</li>\n <li> <a href="http://www.emis.de/journals/DMTCS/" target="_blank" class="externalLink">DMTCS: Discrete Mathematics and Theoretical Computer Science</a> --</li>\n <li> <a href="http://portal.acm.org/browse_dl.cfm?linked=1&part=transaction&idx=J1062" class="externalLink">ACM Transactions on the Web (TWEB)</a> --</li>\n\n</ul>\n</html>\nRefer the JournalRank2006 | JournalRank2005
<html>\n<ul>\n <li><a href="http://portal.acm.org/browse_dl.cfm?linked=1&part=journal&idx=J204&coll=portal&dl=ACM&CFID=10774764&CFTOKEN=37717198" target="_blank" title="//portal.acm.org/browse_dl.cfm?linked=1&part=journal&idx=J204&coll=portal&dl=ACM&CFID=10774764&CFTOKEN=37717198" class="externalLink">ACM Computing Surveys</a> -- IF 9.920 (1/85)</li>\n <li> <a href="http://epubs.siam.org/SIREV/" target="_blank" title="//epubs.siam.org/SIREV/" class="externalLink">SIAM Review</a> -- IF 2.739 (3/175)</li>\n <li> <a href="http://bioinformatics.oxfordjournals.org/" target="_blank" title="//bioinformatics.oxfordjournals.org/" class="externalLink">Bioinformatics</a> -- IF 4.328 (2/28)</li>\n <li> <a href="http://www.liebertpub.com/products/product.aspx?pid=31" target="_blank" title="http://www.liebertpub.com/products/product.aspx?pid=31" class="externalLink">Journal of Computational Biology</a> -- IF 1.563 (20/92)</li>\n <li> <a href="http://portal.acm.org/browse_dl.cfm?linked=1&part=journal&idx=J401&coll=ACM&dl=ACM" target="_blank" title="//portal.acm.org/browse_dl.cfm?linked=1&part=journal&idx=J401&coll=ACM&dl=ACM" class="externalLink">Journal of the ACM</a> -- IF 2.339 (9/86)</li>\n <li> <a href="http://www.springerlink.com/content/1420-8954/" target="_blank" title="//www.springerlink.com/content/1420-8954/" class="externalLink">Computational Complexity</a> -- IF 1.562 (9/214)</li>\n <li> <a href="http://www.springerlink.com/link.asp?id=106038" target="_blank" title="//www.springerlink.com/link.asp?id=106038" class="externalLink">Foundations of Computational Mathematics</a> -- IF 2.061 (8/214)</li>\n <li> <a href="http://epubs.siam.org/SICOMP/" target="_blank" title="//epubs.siam.org/SICOMP/" class="externalLink">SIAM Journal on Computing</a> -- IF 1.459 (22/175)</li>\n <li> <a href="http://www.sciencedirect.com/science/journal/0885064X" target="_blank" title="//www.sciencedirect.com/science/journal/0885064X" class="externalLink">Journal of Complexity</a> -- IF 0.825 (83/175)</li>\n <li> <a href="http://www.sciencedirect.com/science/journal/08905401" target="_blank" title="//www.sciencedirect.com/science/journal/08905401" class="externalLink">Information and Computation</a> -- IF 1.504 (21/175)</li>\n <li> <a href="http://www.sciencedirect.com/science/journal/00220000" target="_blank" title="//www.sciencedirect.com/science/journal/00220000" class="externalLink">Journal of Computer and System Sciences</a> -- IF 1.244 (33/85)</li>\n <li> <a href="http://www.springerlink.com/openurl.asp?genre=journal&eissn=1432-0541" target="_blank" title="//www.springerlink.com/openurl.asp?genre=journal&eissn=1432-0541" class="externalLink">Algorithmica</a> --- IF 0.825 (83/175)</li>\n <li> <a href="http://www.springerlink.com/openurl.asp?genre=journal&issn=0001-5903" target="_blank" title="//www.springerlink.com/openurl.asp?genre=journal&issn=0001-5903" class="externalLink">Acta Informatica</a> -- IF 0.789 (69/99)</li>\n <li> <a href="http://www.springerlink.com/openurl.asp?genre=journal&issn=0926-6003" target="_blank" title="//www.springerlink.com/openurl.asp?genre=journal&issn=0926-6003" class="externalLink">Computational Optimization and Applications</a> -- IF 0.648 (46/64)</li>\n <li> <a href="http://www.sciencedirect.com/science/journal/03043975" target="_blank" title="//www.sciencedirect.com/science/journal/03043975" class="externalLink">Theoretical Computer Science</a> -- IF 0.806 (51/85)</li>\n <li> <a href="http://epubs.siam.org/SIDMA/sidma_toc.html" target="_blank" title="//epubs.siam.org/SIDMA/sidma_toc.html" class="externalLink">SIAM Journal on Discrete Mathematics</a> -- IF 0.598 (122/175)</li>\n <li> Journal of Combinatorial Theory Series <a href="http://www.sciencedirect.com/science/journal/00973165" target="_blank" title="//www.sciencedirect.com/science/journal/00973165" class="externalLink">A</a> IF 0.922 (41/214) and <a href="http://www.sciencedirect.com/science/journal/00958956" target="_blank" title="//www.sciencedirect.com/science/journal/00958956" class="externalLink">B</a> IF 1.060 (31/214)</li>\n <li> <a href="http://www.sciencedirect.com/science/journal/0166218X" target="_blank" title="//www.sciencedirect.com/science/journal/0166218X" class="externalLink">Discrete Applied Mathematics</a> -- IF 0.783 (88/175)</li>\n <li> <a href="http://www3.interscience.wiley.com/cgi-bin/jhome/32046" target="_blank" title="//www3.interscience.wiley.com/cgi-bin/jhome/32046" class="externalLink">Networks</a> -- IF 0.608 (33/45)</li>\n <li> <a href="http://www.sciencedirect.com/science/journal/03050548" target="_blank" title="//www.sciencedirect.com/science/journal/03050548" class="externalLink">Computers & Operations Research</a> -- IF 1.366 (8/33)</li>\n <li> <a href="http://www.springerlink.com/openurl.asp?genre=journal&issn=1382-6905" target="_blank" title="//www.springerlink.com/openurl.asp?genre=journal&issn=1382-6905" class="externalLink">Journal of Combinatorial Optimization</a> -- IF 0.701 (107/175)</li>\n <li> <a href="http://www.springerlink.com/openurl.asp?genre=journal&issn=1432-4350" target="_blank" title="//www.springerlink.com/openurl.asp?genre=journal&issn=1432-4350" class="externalLink">Theory of Computing Systems</a> -- IF 0.766 (67/214)</li>\n <li> <a href="http://journals.cambridge.org/action/displayJournal?jid=CPC" target="_blank" title="//journals.cambridge.org/action/displayJournal?jid=CPC" class="externalLink">Combinatorics Probability & Computing</a> -- IF 0.784 (61/214)</li>\n <li> <a href="http://www3.interscience.wiley.com/cgi-bin/jhome/35334?CRETRY=1&SRETRY=0" target="_blank" title="//www3.interscience.wiley.com/cgi-bin/jhome/35334?CRETRY=1&SRETRY=0" class="externalLink">Journal of Graph Theory</a> -- IF 0.655 (87/214)</li>\n <li> <a href="http://www.sciencedirect.com/science/journal/00200190" target="_blank" title="//www.sciencedirect.com/science/journal/00200190" class="externalLink">Information Processing Letters</a> -- IF 0.706 (74/99)</li>\n <li> <a href="http://www.springerlink.com/openurl.asp?genre=journal&eissn=1439-6912" target="_blank" title="//www.springerlink.com/openurl.asp?genre=journal&eissn=1439-6912" class="externalLink">Combinatorica</a> -- IF 0.790 (60/214)</li>\n <li> <a href="http://www.sciencedirect.com/science/journal/0012365X" target="_blank" title="//www.sciencedirect.com/science/journal/0012365X" class="externalLink">Discrete Mathematics</a> -- IF 0.502 (130/214)</li>\n <li> <a href="http://www.sciencedirect.com/science/journal/01956698" target="_blank" title="//www.sciencedirect.com/science/journal/01956698" class="externalLink">European Journal of Combinatorics</a> -- IF0.678 (82/214)</li>\n <li> <a href="http://www.springerlink.com/openurl.asp?genre=journal&issn=0911-0119" target="_blank" title="//www.springerlink.com/openurl.asp?genre=journal&issn=0911-0119" class="externalLink">Graphs and Combinatorics</a> -- IF 0.302 (199/214)</li>\n <li><a href="http://www.sciencedirect.com/science/journal/01966774">Journal of Algorithms</a> -- IF 1.03</li>\n <li><a href="http://www3.interscience.wiley.com/cgi-bin/jhome/38107" target="_blank" title="//www3.interscience.wiley.com/cgi-bin/jhome/38107" class="externalLink">Random Structures and Algorithm</a> -- IF 1.253 (18/214)</li>\n <li><a href="http://ieeexplore.ieee.org/xpl/RecentIssue.jsp?punumber=8857">IEEE-ACM Transactions on Computational Biology and Bioinformatics</a> -- IF 1.866 (12/92)</li>\n <li><a href="http://portal.acm.org/browse_dl.cfm?linked=1&part=transaction&idx=J771&coll=portal&dl=ACM&CFID=27684042&CFTOKEN=37359548">IEEE-ACM Transactions on Networking</a> -- IF 2.576 (9/85)</li>\n <li><a href="http://comjnl.oxfordjournals.org/">Computer Journal</a> -- IF 1.000 (25/45)</li>\n <li><a href="http://www.springerlink.com/content/100324/?p=b21254ba5e344a0eaed7ed6db9ed6632&pi=0">Order</a> -- IF 0.333 (187/214)</li>\n <li><a href="http://www.sciencedirect.com/science/journal/08939659">Applied Mathematics Letters</a> -- IF 0.948 (64/175)</li>\n <li><a href="http://www.sciencedirect.com/science/journal/00963003"> Applied Mathematics and Computation</a> -- IF 0.961 (61/175)</li>\n <li><a href="http://www.springerlink.com/content/109418/"> BIT Numerical Mathematics</a> -- IF 0.902 (69/175)</li>\n\n</ul>\n<strong>Some good journals not yet in JCR</strong>\n<ul>\n <li> <a href="http://portal.acm.org/browse_dl.cfm?linked=1&part=transaction&idx=J982&coll=portal&dl=ACM&CFID=71912801&CFTOKEN=62408165" target="_blank" title="//portal.acm.org/browse_dl.cfm?linked=1&part=transaction&idx=J982&coll=portal&dl=ACM&CFID=71912801&CFTOKEN=62408165" class="externalLink">ACM Transactions on Algorithms</a> --</li>\n <li> <a href="http://www.sciencedirect.com/science/journal/15708667" target="_blank" title="//www.sciencedirect.com/science/journal/15708667" class="externalLink">Journal of Discrete Algorithms</a> --</li>\n <li> <a href="http://www.cs.brown.edu/publications/jgaa/" target="_blank" title="//www.cs.brown.edu/publications/jgaa/" class="externalLink">Journal of Graph Algorithms and Applications</a> ---</li>\n <li> <a href="http://theoryofcomputing.org/" target="_blank" title="//theoryofcomputing.org" class="externalLink">Theory of Computing</a> --</li>\n <li> <a href="http://www.combinatorics.org/" target="_blank" class="externalLink">The Electronic Journal of Combinatorics</a> --</li>\n <li> <a href="http://www.emis.de/journals/DMTCS/" target="_blank" class="externalLink">DMTCS: Discrete Mathematics and Theoretical Computer Science</a> --</li>\n <li> <a href="http://portal.acm.org/browse_dl.cfm?linked=1&part=transaction&idx=J1062" class="externalLink">ACM Transactions on the Web (TWEB)</a> --</li>\n\n</ul>\n</html>\nRefer the JournalRank2007 | JournalRank2006 | JournalRank2005