2월 28, 2010의 게시물 표시

Factor Language: Conventions

Various conventions are used throughout the Factor documentation and source code. 다양한 관례들이 사용된다 통해서 만나는 것은 Factor 문서와 소스코드 . Glossary of terms 용어사전 Common terminology and abbreviations used throughout Factor and its documentation: 일반적 용어법과 축약어들 사용되는 통해서 만나는 것은 Factor 와 그것의 문서 : Term 용어 Definition 정의 alist an association list; see Association lists 관계 리스트 assoc an associative mapping; see Associative mapping operations 관계적 사상 associative mapping  an object whose class implements the Associative mapping protocol 어떤 객체 그것의 클래스가 구현한다 관계적 사상 프로토콜 boolean t or f 참 또는 거짓 class a set of objects identified by a class word together with a discriminating predicate. See Classes 어떤 집합 관련된 것은 객체들 확인되다 그 힘의 원천은 한 클래스 워드 그것과 함께하는 것은 차별화된 술어 . combinator a word taking a quotation or another word as input; a higher-order function. See Combinators 어떤 워드가 취하고 있는 것은 인용 또는 다른 워드 취하는 방식은 입력 ; 고차함수 . definition specifie...

Wire Framing in Flash Catalyst

Exporting from Fireworks CS4 to Flash Catalyst

Distributing Objects to States with Flash Catalyst

Create an Introductory Animation in Flash Catalyst

Photoshop to Flash Catalyst (no.68)

Starting with Actionscript 3 (No. 65)

Flash Catalyst Tutorial Part 2

Flash Catalyst Tutorial Part 1

C# CSV Reader with Linq

using System; using System.ComponentModel; using System.Collections.Generic; using System.IO; using System.Linq; using System.Reflection; using System.Text; using LumenWorks.Framework.IO.Csv; public class CsvQueryReader<TEntry> : IDisposable where TEntry : struct {     private CsvReader m_csvReader;     private FieldTypeInfo[] m_fieldTypeInfos;     private bool m_isDisposed = false;     public CsvQueryReader(string path, Encoding encoding, Boolean hasHeader)     {         m_csvReader = new CsvReader(new StreamReader(path, encoding), hasHeader);         Initialize();     }     public CsvQueryReader(Stream stream, Encoding encoding, Boolean hasHeader)     {         m_csvReader = new CsvReader(new StreamReader(stream, encoding), hasHeader);      ...