几个链接和杂记。有待进一步阅读。

Language Docs: [url]http://lambda-the-ultimate.org/node/3[/url]

[url=http://portal.acm.org/toc.cfm?id=1542476&idx=SERIES363&type=proceeding&coll=&dl=ACM&part=series&WantType=Proceedings&title=PLDI&CFID=62157994&CFTOKEN=33050221]PLDI 2009[/url]

Language Specification相关:
[url=http://java.sun.com/docs/books/jls/third_edition/html/j3TOC.html]JLS 3rd[/url]
[url=http://www.digitalmars.com/d/2.0/lex.html]D 2.0[/url]
[url=http://www.open-std.org/JTC1/SC22/WG14/www/docs/n1124.pdf]C99[/url]
[url=http://www.rtsj.org/docs/docs.html]Real-Time Specification for Java[/url] documents and papers

Language Grammar相关:
[url=http://www.thefreecountry.com/sourcecode/grammars.shtml]Free Grammars for Programming Languages[/url]
[url=http://www.csci.csusb.edu/dick/c++std/cd2/gram.html]C++[/url]

VM Spec:
[url=http://java.sun.com/docs/books/vmspec/2nd-edition/html/VMSpecTOC.doc.html]Java Virtual Machine Specification[/url]
[url=http://java.sun.com/docs/books/jvms/second_edition/jvms-clarify.html]Clarifications and Amendments to the Java Virtual Machine Specification[/url]

别的程序设计语言相关:
[url=http://www.jsoftware.com/]J Programming Language[/url]
[url=http://nice.sourceforge.net/]The Nice Programming Language[/url]
[url=http://nemerle.org/]Nemerle Programming Language[/url]
[url=http://www.chrisseaton.com/katahdin/]Katahdin[/url]
[quote]In most programming languages you can define new functions and types. In the same way, Katahdin allows you to define new expressions, statements and other language constructs.[/quote]
[url=http://pdos.csail.mit.edu/~baford/packrat/]The Packrat Parsing and Parsing Expression Grammars Page[/url]
要关注!

[url=http://swik.net/vm+compiler]SWiK: vm + compiler[/url]

[url=http://webkit.org/blog/189/announcing-squirrelfish/]WebKit: Announcing SquirrelFish[/url], a new JavaScript engine

[url=https://blogs.msdn.com/joelpob/archive/2005/10/04/476965.aspx]Good For Nothing Compiler (PDC - TLN410) and other goodies[/url]
这个blog本身要关注下。虽然Joel Pobar已经离开了微软,但他以前留下的资料还是相当值得一读。

[url]http://www.red-gate.com/products/ants_profiler/boost_app_performance_ebook5.htm[/url]
RedGate出的免费C#书

[url=http://www.gnu.org/software/mdk/]GNU MIX[/url]
[quote]MIX is Donald Knuth's mythical computer as described in his monumental work The Art Of Computer Programming.[/quote]

[url=http://schmidt.devlib.org/java/compilers.html]Java Compilers[/url]
有关Java的编译器的介绍,以及class文件的优化器等工具的介绍。

[url=http://www.freepatentsonline.com/7174544.html]JAVA compile-on-demand service system for accelerating processing speed of JAVA program in data processing system and method thereof[/url]
US Patent 7174544。这个专利真有意思,在外部机器执行编译然后传到远程设备上。要这么做的话Java的一个重要好处不就没了么——bytecode的文件小,适合网络传输。

[url=http://steve-yegge.blogspot.com/2008/06/rhinos-and-tigers.html]Steve Yegg: Rhinos and Tigers[/url]
其中包括Steve Yegg对VM的观点:互操作!Walter Bright在VM的跨平台、安全性等方面或许有自己的见解,但是在互操作方面……

[url=http://users.ipa.net/~dwighth/smalltalk/bluebook/bluebook_imp_toc.html]Blue Book Chap 26-30 online[/url]
Smalltalk-80的Blue Book中关键的几章。实现动态语言的话这个必须一读。

[url=http://blog.csdn.net/aimingoo/archive/2008/04/23/2317732.aspx]JavaScript语言精髓与编程实践 - 勘误[/url]

[url]http://www.iosephus.net/EBooks[/url]
ebook links

[url=http://d.hatena.ne.jp/NyaRuRu/20080519/p1]C# で 劣化 Variant を書いてみた[/url]
好强啊……通过创建这么一个variant作为代理,并且实现隐式转换,居然就能做这么有趣的多类型返回……太有趣了~

[url=http://blogs.msdn.com/ed_maurer/default.aspx]I'm just sayin'[/url] Ed Maurer's blog
C#编译器的重要人物的blog。要关注

[url=http://blogs.msdn.com/charlie/archive/2008/01/25/future-focus.aspx]Future Focus I: Dynamic Lookup[/url]
static void Main(string[] args)
{
dynamic
{
object myDynamicObject = GetDynamicObject();
myDynamicObject.SomeMethod(); // call a method
myDynamicObject.someString = "value"; // Set a field
myDynamicObject[0] = 25; // Access an indexer
}
}

哪天真的能在自己的C#代码里用上这个的话那真是要哭了 T T

[url=http://blogs.msdn.com/charlie/archive/2008/01/31/expression-tree-basics.aspx]Expression Tree Basics[/url]
讲解Expression Tree的入门知识。相关代码在这里[url]http://code.msdn.microsoft.com/linqfarm[/url]

Da Vinci Machine相关:
[url=http://openjdk.java.net/projects/mlvm/]Da Vinci Machine Project[/url]
[url=http://blogs.sun.com/jrose/entry/bravo_for_the_dynamic_runtime]Bravo for the dynamic runtime! : John Rose @ Sun[/url]

Da Vinci Machine看来会主要以JRuby为实验语言。
DVM需要改动HotSpot JVM的实现。可能会增加tail call的opcode。根据John Rose的说法,DVM要比DLR先进许多。到底如何呢。

DLR相关:
[url=http://blogs.msdn.com/hugunin/archive/2007/04/30/a-dynamic-language-runtime-dlr.aspx]Jim Hugunin's Thinking Dynamic: A Dynamic Language Runtime (DLR)[/url]
[url=http://blogs.msdn.com/mmaly/default.aspx]Martin Maly[/url]
[url=http://www.iunknown.com/]John Lam on Software[/url]
[url=http://msdn.microsoft.com/en-us/magazine/cc163344.aspx]CLR Inside Out - IronPython and the Dynamic Language Runtime[/url]
DLR则是以IronPython为实验语言。IronRuby貌似也能得益。
DLR在CLR之上,不会改动任何现有的CLR实现,而是另外设计一套共享动态类型和实现一个用于更好的支撑动态语言的库。

Mono相关:
[url=http://channel9.msdn.com/Showpost.aspx?postid=383939]Miguel de Icaza and Dragos Manolescu: On Open Source, Mono and Moonlight[/url]
Channel 9上Miguel的访谈。回头要看看。

另一个Channel 9的访谈,[url=http://channel9.msdn.com/ShowPost.aspx?PostID=349220]JAOO 2007: Erik Meijer and Dave Thomas - Objects, Functions, Virtual Machines, IDEs and Other Fun Stuff[/url]。里面提到了software fault isolation,UVM(=universal virtual machine,但到底是不是IBM的那个?)等。记下,留待进一步查阅。
顺便查到了[url=http://www.davethomas.net/]Dave[/url]的一篇东西,[url=http://portal.acm.org/citation.cfm?id=1146841.1146842]Language constructs for context-oriented programming: an overview of ContextL[/url]。

Tracing JIT相关:
[url]http://lua-users.org/lists/lua-l/2008-02/msg00051.html[/url]
[url]http://www.bluishcoder.co.nz/2008/02/quick-introduction-to-tamarin-tracing.html[/url]

[url=http://channel9.msdn.com/Showpost.aspx?postid=385821]Stephan T. Lavavej: Digging into C++ Technical Report 1 (TR1)[/url]。哈哈,这里面关于RAII的说明真是够直白的……他这么一说我终于知道印象中的C++的RAII是怎么回事了:
T* ptr = new T; // bad, resource given to raw pointer, possible resource leak

with RAII, resource should be given to objects (instead of raw pointers), which has ctors and dtors that manages resources
不过这位同志明显在偷换概念啊……OK,是没有一个线程或者什么的常驻在后台扫描是否有垃圾,但ref-count本身就是GC机制的一种形式,这ref-count的自加/自减也是消耗计算资源的啊……|| ref-count的最大好处在于:1、确定性析构;2、GC的负担被分担到整个运行时间中而不会造成运算负荷高峰。
于是TR1中的shared_ptr就等于是标准库中实现的一个auto-pointer:
shared_ptr<T> ptr(new T(arg1, arg2));
ptr2 = ptr;
// ...

shared_ptr似乎还用于能解决slicing问题,例如:
class Base {};
class Derived : public Base {};
void foo(Base b) { /* ... */ }
Derived d;
foo(d); // raw, derived object sliced

有了shared_ptr我们可以:
vector<shared_ptr<Base>> v;
v.push_back(make_derived(arg1));
v.push_back(make_base(arg2));
// ...

到48:00左右,他开始介绍shared_ptr的用法注意:
1、不要用“裸”数组(new xxx[yyy]),用vector<T>代替(因为vector实现RAII)
2、每当new出一个object时,把它交给一个shared_ptr。

哦,说来,C++0x里原本对GC的提案被否了啊……也挺正常的


C# LINQ相关:
[url=http://www.codeproject.com/KB/cs/ValidationUsingLambdas.aspx]Validation library using C# 3.0 lambda expressions[/url]

[url=http://srtsolutions.com/blogs/billwagner/archive/2008/01/22/looking-inside-c-closures.aspx]Looking Inside C# Closures[/url]

Parrot相关:
[url=http://www.parrotcode.org]Parrot[/url]
[url=https://svn.perl.org/parrot/trunk]Parrot SVN trunk[/url]

Cocos相关:
[url=http://primates.ximian.com/~massi/blog/archive/2008/Feb-03.html]Cocos: "Compiler Construction Set", part 1 (framing the problem)[/url]
[url=http://primates.ximian.com/~massi/blog/archive/2008/Feb-04.html]Cocos: "Compiler Construction Set", part 2 (state of the art)[/url]
[url=http://primates.ximian.com/~massi/blog/archive/2008/Feb-09.html]Cocos: "Compiler Construction Set", part 3 (implementation approach)[/url]

ECMAScript相关:
[url=http://dev.opera.com/articles/view/why-i-love-ecmascript-4-real-decimals/]Why I Love ECMAScript 4: Real Decimals[/url]
想起之前我给Script.NET提出bug报告时用的例子也是受这篇文章启发的。
[url=http://www.ad0.cn/netfetch/article.asp?id=993]JavaScript on Rails[/url]
[quote]Rhino…was written with an eye for performance. The Rhino code base reads almost like C code: it avoids allocation and does as much as possible with jump tables to avoid the overhead of virtual method lookups. It has two code paths: a bytecode interpreter that runs in a tight loop, and an optimizing Java bytecode compiler that turns many expensive-ish JavaScript property lookups into Java local or instance-variable lookups. It’s a pretty serious piece of software.

When you start digging into Rhino, you find unexpected depth. JavaScript (unlike Perl, Python and Ruby, at least today) actually has a real specification, and Rhino follows it rigorously, aiming for complete SpiderMonkey compatibility within the bounds allowed by the different language platforms. Rhino also offers rich configurability, has well-defined multi-threading semantics, has a full set of hooks for debugging and profiling, and much more besides. There’s a lot under the hood.[/quote]

[quote="shaver"]SpiderMonkey already has a mark-and-sweep collector safe against reference cycles, but we've wanted a more sophisticated (generational, f.e.) collector for some time; it'll be interesting to see how MMgc can be used to improve our GC situation, for sure![/quote]
[url=http://lists.freedesktop.org/archives/swfdec/2007-January/000020.html][ Swfdec ] compiling vs interpreting[/url]
[quote]> - one layer less
> since I don't convert to (probably slower because of various workarounds)
> Spidermonkey bytecodes, there's one area less that can fuck up, [color=red]namely
> jsinterp.c - which is hell to debug, because 90% of the code in that file
> is inside macros, and you tell me why ELEMENT_OP (2, -1, CACHED_GET (-1))
> or whatever crashes.[/color] So I hope to get the crashes into my code - I can
> easier work around them then without affecting other working code.
> Oh, and it's probably faster, too.[/quote]

Ruby相关:
[url=http://rubini.us/]Rubinius[/url]
我才刚开始关注官方Ruby 1.8.6/1.9和JRuby 1.1以外的Ruby实现。原来有这么有趣的Rubinius么……Smalltalk inspired Ruby,听起来都会觉得“有趣” XD
[url=http://rubini.us/rbx_documentation/introduction-to-the-compiler/]Introduction to the Rubinius Compiler[/url]
哦哦,Ruby写的Ruby编译器。这东西回头再仔细读读,不过那sexp真是有Lisp之魂啊。
[url=http://antoniocangiano.com/2007/02/19/ruby-implementations-shootout-ruby-vs-yarv-vs-jruby-vs-gardens-point-ruby-net-vs-rubinius-vs-cardinal/]Ruby Implementations Shootout: Ruby vs Yarv vs JRuby vs Gardens Point Ruby .NET vs Rubinius vs Cardinal[/url]
2007-02-19的。还是可以一看就是了。
[url=http://i.loveruby.net/ja/rhg/book/]Rubyソースコード完全解説[/url]
阅读Ruby源码必备。一定要读读。
[url=headius.blogspot.com/2008/03/duby-type-inferred-ruby-like-jvm.html]Headius: Duby: A Type-Inferred Ruby-Like JVM Language[/url]
噢噢,开始了开始了,传说中的扩展。不过Charles Nutter挺聪明的,他并不是要创造一个不兼容的Ruby(JRuby还是要与MRI兼容),而是要创造一个看起来像Ruby的JVM语言。似乎不少回复的人都在指向Scala和Python的例子……
[url=http://rubyforge.org/projects/parsetree/]ParseTree[/url]
RubyForge上的一个项目。把Ruby的源文件转换成s-exp。关注一下。

Mozilla Prism相关:
[url=http://labs.mozilla.com/featured-projects/#prism]prism[/url]
Mozilla对于整合桌面与网络的答案就是这Prism。跟师兄聊起这东西的时候,师兄说这东西缺乏吸引力,宁愿多开几个浏览器窗口。hmm

jMonkeyEngine相关:
[url=http://www.jmonkeyengine.com/]jMonkeyEngine[/url]
[url=http://www.youtube.com/watch?v=ho_b18HRmGA&eurl=http%3A%2F%2Fwww%2Ejmonkeyengine%2Ecom%2F]演示视频[/url]

OS相关:
[url=http://research.microsoft.com/os/singularity]Singularity[/url]
[url=http://www.sharpos.org/]SharpOS[/url]
天啊,原来有那么多个想使用C#来实现操作系统的project。微软自己有Singularity,在2007年已经完成了v1.0并发布给了几个大学做研究(没有对公众开放)。相关的C#编译器是[url=http://research.microsoft.com/act/]Bartok[/url]

Ribbon UI相关:
[url=http://weblogs.asp.net/bsimser/archive/2006/12/20/ribbon-ui-control-roundup-for-developers.aspx]Ribbon UI Control Roundup for Developers[/url]
[url=http://www.devexpress.com/Downloads/NET/DXperience/]DXperience[/url]
[url=http://www.codeproject.com/KB/WPF/ribboncontrol.aspx]Code Project: WPF C# Ribbon Control Library[/url]
[url=http://www.codeproject.com/KB/WPF/ribbonbuilder.aspx]Code Project: A Graphical WPF Ribbon Control Builder[/url]
最近想做些东西想用Ribbon UI,但是总是没免费的库可用,实在是郁闷.Code Project上的这个Ribbon UI控件看起来颇有指望,希望作者能快点把它更新到比较实用的状态吧...
Bill Gates最近也宣布说要在Windows 7里采用Fluent/Ribbon风格的GUI了,这算是好事么。
[url=http://www.actiprosoftware.com/Products/Default.aspx]Actipro Software Product List[/url]
这里面WPF控件里的Ribbon相关自然是很吸引了我的注意力,而SyntaxEditor更吸引我的注意力了...要关注下.与它伴随的是[url=http://www.actiprosoftware.com/Products/DotNet/ASPNET/CodeHighlighter/Default.aspx]CodeHighlighter[/url],一个ASP.NET控件.也非常有趣.

代码高亮JavaScript插件:
[url]http://codepress.org/[/url]
[url]http://softwaremaniacs.org/soft/highlight/en/[/url]
[url]http://marijn.haverbeke.nl/codemirror/[/url]

PDF相关:
[url=http://itextsharp.sourceforge.net/]iTextSharp[/url]
这东西可以让C#程序输出PDF文档。有意思……

[code]<html>
<body>
<script>
function myFunction() { alert("Old"); };
var savedFunction = myFunction;
myFunction = function() { alert("New"); };
myFunction(); // prints"New"
savedFunction(); // prints"Old"
</script>
</body>
</html>[/code]
看来我误解了某binding的意思……回头看看

Curly Brace Languages相关:
[quote]Languages
ABCL/c+
Alef
Limbo
AutoHotkey
AWK
BCPL
C - developed circa 1970 at Bell Labs
C shell (csh)
C++
C#
Ch - embeddable C/C++ interpreter
ChucK - for audio programming
Cilk - concurrent C for multithreaded parallel programming
Coyote - C variant intended to lower the likelihood of some common errors, for example, buffer overflows
Cyclone - C variant
D - C/C++ inspired
DINO
E
ECMAScript
ActionScript
DMDScript
E4X
JavaScript
JScript
MDMscript
Ferite
Frink
ICI
Java
Groovy
Join Java
X10
Objective-C
Perl
PHP
Pico
Pike
rc
TSL
UnrealScript
Windows PowerShell
Yorick[/quote]

游戏引擎相关:
[url=http://www.popcade.com/bbs/thread.php?fid=18]POPcade社群 » 遊戲引擎[/url]
列表。有不少游戏引擎和相关库的介绍。挺有意思的。

[url=http://www.qlie.net/]AVD GAME CREATE SYSTEM “QLIE”[/url]
原来かみぱに的引擎叫QLIE。很好,记下。
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值