New pages
From eqqon
Showing below up to 32 results starting with #1.
View (previous 50) (next 50) (20 | 50 | 100 | 250 | 500).
- 11:39, 1 January 2009 CSharp (hist) [8,622 bytes] Zelenka (Talk | contribs) (New page: {{:Category:CSharp}} ---- = C# Articles = == External C# Links == {| class="eqqon_table" style="width:100%; font-size:smaller;" |------------------- || ;Tutorials and Articles * [http://bl...)
- 23:00, 20 April 2008 Closing the Gap Between IEnumerator and IEnumerable (hist) [9,706 bytes] Henon (Talk | contribs) (New page: Ever found yourself writing a custom collection in C# just to be able to fill in an IEnumerator into an interface that expects IEnumerable? Boilerplate code like such is never a good idea....)
- 16:25, 5 April 2008 Maya Course Notes (hist) [2,388 bytes] Henon (Talk | contribs) (New page: === 4.4.2008 === * [http://home.pages.at/hammerpages/maya Unterlagen] * Markus: hammer@ims.tuwien.ac.at * LEER halten : Hotbox --> alle menüs * LEER kurz: umschalten zw 4 und 1 view. *...)
- 11:05, 5 April 2008 Maya (hist) [23 bytes] Henon (Talk | contribs) (New page: * Maya Course Notes)
- 21:39, 26 February 2008 Test/Alternative Background 4 (hist) [34 bytes] Henon (Talk | contribs) (New page: alt bg 4)
- 21:16, 26 February 2008 Test/Alternative Background 3 (hist) [34 bytes] Henon (Talk | contribs) (New page: alt bg 3)
- 21:16, 26 February 2008 Test/Alternative Background 2 (hist) [34 bytes] Henon (Talk | contribs) (New page: alt bg 2)
- 21:16, 26 February 2008 Test/Alternative Background 1 (hist) [34 bytes] Henon (Talk | contribs) (New page: alt bg 1)
- 19:48, 27 January 2008 Audio/Variodyn/AudioWorx D1 Terminal (hist) [5,406 bytes] Zelenka (Talk | contribs) (New page: Category:Product Category:Software Category:AudioWorx {{Infobox:Software |name = AudioWorx Terminal |status = Beta Test |type = Variodyn D1 Terminal, Windows |aut...)
- 19:13, 27 January 2008 Audio/Variodyn/PaProtocol (hist) [10,149 bytes] Zelenka (Talk | contribs) (New page: =The PA Protocol= The Variodyn D1 system can be controlled via commands transmitted via ethernet. the protocol used was designed around 1993 to handle new communication requirements. as in...)
- 23:14, 19 December 2007 Asynchronous Events (hist) [22,907 bytes] Henon (Talk | contribs) (New page: = Decoupling Threads via Asynchronous Events = Sometimes it is necessary to fire events without having to wait for them to return. A ''publisher'' (an object that exposes events) might ru...)
- 11:45, 7 December 2007 Design For Reuse (hist) [11,171 bytes] Henon (Talk | contribs) (New page: = The Value of Single-Purpose-Classes = Most of the classes that get written are used once and never again. The same special problem the class is intended to solve will never appear again...)
- 22:45, 21 November 2007 Preventing Recursive Events (hist) [5,928 bytes] Henon (Talk | contribs) (New page: = Preventing Recursive Events in C# = Events that cause each other to be fired recursively are usually a problem when two classes need to sync data. In large programs these recursive call...)
- 21:20, 21 November 2007 Events (hist) [2,299 bytes] Henon (Talk | contribs) (New page: Category:CSharp = Quick Facts about C# Events = * Fireing an Event that has not been registered (==null) raises a NullReferenceException. (annoying) * Registering for the same event t...)
- 09:50, 21 November 2007 Using (special use in C-Sharp) (hist) [169 bytes] Henon (Talk | contribs) (New page: {{:IDisposable}} Category:CSharp)
- 09:46, 21 November 2007 Double Dispatch Mechanism (hist) [40 bytes] Henon (Talk | contribs) (New page: {{:Visitor_Pattern}} Category:CSharp)
- 09:10, 21 November 2007 Visitor Pattern (hist) [22,485 bytes] Henon (Talk | contribs) (New page: Category:CSharp == Motivation for applying the Visitor Pattern == == The complete example Program == <span><span class="S5">using</span><span class="S0"> </span>System<span class="S...)
- 17:04, 20 November 2007 Ruby/Ruby V1.9 C Extension (hist) [40,359 bytes] Zelenka (Talk | contribs) (New page: ;Notes: Basicly the interface is similar to V1.8. So most parts of your implementation should run also with V1.9. I had some troubles initializing the interpreter, this differs in V1.9 and...)
- 10:24, 16 November 2007 Test (hist) [256 bytes] Henon (Talk | contribs) (New page: = H1 = == H2 == === H3 === ==== H4 ==== ===== H5 ===== ====== H6 ======)
- 11:01, 9 November 2007 Formatting Exceptions for Error Parser (hist) [15,635 bytes] Henon (Talk | contribs) (New page: Category:C-Sharp Today I wrote a nice little debug helper function called '''PrintException''' in C#. It prints all available information about an exception in a very structured way to...)
- 13:58, 2 November 2007 License/eqqon (hist) [30 bytes] Henon (Talk | contribs) (New page: License: All rights reserved.)
- 21:09, 30 October 2007 Ruby-like instance variable syntax in C-Sharp (hist) [6,338 bytes] Henon (Talk | contribs) (New page: == Ruby-like instance @variables in C# == Although I am very impressed by C#, Ruby is still my favorite programming language because of it's clean design and unre...)
- 15:46, 30 October 2007 Streaming between Threads or Processes (hist) [2,090 bytes] Henon (Talk | contribs) (New page: == Threading and Streaming == To let one thread send data to other threads without interfering with them we combined a '''Queue''' with an '''AutoResetEvent''' in our '''Stream''' class. T...)
- 09:03, 29 October 2007 SQLite and CSharp (hist) [17,644 bytes] Henon (Talk | contribs) (New page: The easiest way for an application to set up a database back-end is [http://www.sqlite.org SQLite]. Here is a small sample that creates a table, inserts some data and queries them back in ...)
- 19:44, 28 October 2007 IDisposable (hist) [763 bytes] Henon (Talk | contribs) (New page: Category:CSharp = interface IDisposable = Objects that implement '''IDisposable''' can be used in the '''using''' statement. After the block ends, the object's '''Dispose'''-method is...)
- 12:25, 27 October 2007 Piccolo Nuts and Bolts (hist) [5,079 bytes] Henon (Talk | contribs) (New page: = Piccolo Nodes = == PComposite == The PComposite node and all of it's Children act like a single PNode. All user interaction, even if it happened on a child node, is handled by the compo...)
- 17:47, 5 October 2007 FoxGUIb/FAQ (hist) [7,169 bytes] Henon (Talk | contribs) (New page: = Frequently Asked Questions = == foxGUIb == === What is foxGUIb? === FoxGUIb is an interactive GUI builder and code generator for Ruby. It is the perfect tool for newbies to find out ...)
- 13:09, 5 October 2007 FoxGUIb (hist) [543 bytes] Henon (Talk | contribs) (New page: '''FoxGUIb''' makes it easy to create user interfaces with [http://www.fxruby.org FXRuby]. It is an interactive GUI builder and code generator. It is the perfect tool for newbies to find o...)
- 22:12, 20 September 2007 Vienna Restaurants (hist) [1,676 bytes] Zelenka (Talk | contribs) (New page: :'''Running Sushi''', '''7 points''', 1080 Wien, Laudongasse :'''[http://www.maredo.at Maredo]''', '''7 points''', good steaks, 1010 Wien, Fleischmarkt 18, Tel.: 0043/1/5125729 :'''[http:/...)
- 07:39, 6 August 2007 The Future of Ruby (hist) [6,810 bytes] Henon (Talk | contribs) (New page: == Introduction == Yukihiro Matsumoto's C implementation of Ruby aka MRI (Version 1.8) is considered the '''Quasi-Standard of the Ruby Language''' because there has never been an explicit ...)
- 22:43, 28 June 2007 Ruby C Extension (hist) [37,477 bytes] Zelenka (Talk | contribs) (New page: .\" README.EXT - -*- Text -*- created at: Mon Aug 7 16:45:54 JST 1995 This document explains how to make extension libraries for Ruby. =Basic knowledge= In C, variables have types and...)
- 23:13, 27 June 2007 Developer Zone (hist) [4,649 bytes] Zelenka (Talk | contribs) (New page: =RUBY=)