Skip to main content

Home/ Programming/ Group items tagged which

Rss Feed Group items tagged

yc c

Mozilla Labs » jetpack » Blog Archive » Jetpack Survey Report - 0 views

  •  
    Which platforms do you currently develop applications for? Which platforms do you find are the best in terms of community, documentation, and ease of use?
yc c

Lingua::Romana::Perligata -- Perl for the XXIimum Century - 0 views

  • Lingua::Romana::Perligata -- that makes it possible to write Perl programs in Latin.
  • Compared to other languages (both modern and ancient), English has a comparatively weak lexical structure. Much of the grammatical load of an English sentence is carried by positional cues. A statement such as ``The boy gave the dog the food'' only makes sense because of the convention that the subject precedes the verb, which precedes the indirect object, which precedes the direct object. Changing the order -- ``The food gave the boy the dog'' -- changes the meaning. Most programming languages use similar positional grammatical cues. The operation $maximum = $next is very different in meaning from $next = $maximum. Likewise, the function call push @my_assets, @your_money is not the same as push @your_money, @my_assets.
  • Compared to other languages (both modern and ancient), English has a comparatively weak lexical structure. Much of the grammatical load of an English sentence is carried by positional cues. A statement such as ``The boy gave the dog the food'' only makes sense because of the convention that the subject precedes the verb, which precedes the indirect object, which precedes the direct object. Changing the order -- ``The food gave the boy the dog'' -- changes the meaning. Most programming languages use similar positional grammatical cues. The operation $maximum = $next is very different in meaning from $next = $maximum. Likewise, the function call push @my_assets, @your_money is not the same as push @your_money, @my_assets.
yc c

ecoder | home - 0 views

  •  
    ecoder is an open-source web-based code editor, with real-time colour syntax highlighting, which allows multiple documents to be edited directly online at the same time. mecoder made possible thanks to editarea javascript wizardy.requirementsecoder works with most standards compliant browsers which have javascript enabled. internet explorer 6 is not supported.
yc c

Akihabara - 2 views

  •  
    The Akihabara which you can download here is my personal dream too. It is a set of libraries, tools and presets to create pixelated indie-style 8/16-bit era games in Javascript that runs in your browser without any Flash plugin, making use of a small small small subset of the HTML5 features, that are actually available on many modern browsers.
jdr santos

Aegis 4.24 - 0 views

  •  
    Aegis is a transaction-based software configuration management system. It provides a framework within which a team of developers may work on many changes to a program independently, and Aegis coordinates integrating these changes back into the master source of the program, with as little disruption as possible.
jdr santos

Andorra 2D - The Next Generation 2D Engine for Delphi and Lazarus - 0 views

  •  
    Andorra 2D features a simple API for 2D programming which offers you the choice between both: The power of DirectX and OpenGL without the need of knowing anything about those graphic interfaces. Andorra 2D is designed to be the successor of DelphiX. That is because Andorra 2D uses nearly the same sprite engine interface as DelphiX.
yc c

: MergeSort - 0 views

  •  
    A colored graphical Java applet which allows experimentation with initial state and shows statistics
yc c

PushButton Engine - Modular Flash Game Development - 0 views

  •  
    The PushButton Engine is an open-source Flash game engine. There are lots of great libaries for building Flash games; PushButton Engine makes it easier to bring them together. PushButton Engine is written in ActionScript 3, and relies on Flash 9 or higher. It officially supports Flex Builder, command line builds, and Flash CS4, and people have succesfully used it with FlashDevelop and other ActionScript development environments. More concretely, PushButton Engine provides some useful utilities (like an XML serialization/level format, logger and other debugging tools, time management, resource manager, and more), and a component system which lets you easily package game functionality into resuable modules. The component system draws on nearly a decade of game development history - you can read about it in detail in the Components section of the manual.
yc c

Google Code University - Google Code - 0 views

  •  
    This website provides tutorials and sample course content so CS students and educators can learn more about current computing technologies and paradigms. In particular, this content is Creative Commons licensed which makes it easy for CS educators to use in their own classes. The Courses section contains tutorials, lecture slides, and problem sets for a variety of topic areas: AJAX Programming Algorithms Distributed Systems Web Security Languages In the Tools 101 section, you will find a set of introductions to some common tools used in Computer Science such as version control systems and databases.
yc c

jQuery 1.4: What you need to know - 0 views

  •  
    Matt Nowack has taken the awesome HTML5 presentation app in HTML5, which is open source, and has created a presentation discussing jQuery 1.4. It is good stuff, using the fact that you can embed the features that you want to show. Just as long as you can hit the right arrow to get through the "look at all the people who use jQuery" part (we get it! lots of people use jQuery!)
jdr santos

QCodeEdit | use the source Luke... - 1 views

  •  
    QCodeEdit is a framework designed to make edition of source code easy for both users and developers. It is written in C++ using the Qt 4 framework which make it cross-platform.
Richard Boss

Example : Pagination in CakePHP - 0 views

  •  
    CakePHP is a opensource web application framework which follows model-views-controller (MVC) approach and is written in PHP. Lets see an example on Pagination in CakePHP.
Richard Boss

Query Optimization using ColumnStore Index in MSSQL Server - 0 views

  •  
    In this article you will learn about Columnstore index that is a new concept introduced in MSSQL server 2012 which stores data in columnar format.
Richard Boss

Classes in Collections | LINQ - 0 views

  •  
    In this article, we will see about classes which are used in dotnet. To know more, read this article.
Andrey Karpov

The Ultimate Question of Programming, Refactoring, and Everything - 0 views

  •  
    Yes, you've guessed correctly - the answer is "42". In this article you will find 42 recommendations about coding in C++ that can help a programmer avoid a lot of errors, save time and effort. The author is Andrey Karpov - technical director of "Program Verification Systems", a team of developers, working on PVS-Studio static code analyzer. Having checked a large number of open source projects, we have seen a large variety of ways to shoot yourself in the foot; there is definitely much to share with the readers. Every recommendation is given with a practical example, which proves the currentness of this question. These tips are intended for C/C++ programmers, but usually they are universal, and may be of interest for developers using other languages.
Andrey Karpov

Low-Fragmentation, High-Performance Memory Allocation in Despair Engine - 0 views

  •  
    I recently wrote about dlmalloc and how it is a poor choice for a memory allocator for console games. As I explained in my previous article, dlmalloc has two major limitations. It manages a pool of address space composed of discrete regions called segments. It can easily add segments to grow its pool of address space, but it can't easily remove segments to return address space to the OS. Additionally, it doesn't distinguish between physical and virtual memory, which means that it can't take advantage of virtual memory's ability to combat fragmentation.
Andrey Karpov

Visual Studio 2012 New Features of the IDE - better late than never ;-) - 0 views

  •  
    I am making this post thinking "Better late than never", as I was supposed to make this post a long time ago, actually in the beta period of Visual Studio 2012, like I did with Visual Studio 2010, unfortunately I was held up with other stuff, personal and work related. This post remained as partially completed in my blog's drafts for a long time which I took and finished.
Andrey Karpov

SQL-like queries for C++ code: is this the task for static analysis? - 0 views

  •  
    Static analysis tools' users often wonder how to fulfill the task of searching for certain code fragments. For instance, how to find a function longer than 1000 lines; or how to find a class containing more than 100 methods; or which functions contain the largest (or the smallest) number of comments. Why do they want to know it?
yc c

About Query Editor - Freebase - 0 views

  • Syntax Tolerance MQL, which has JSON syntax, is not so hard to write, but sometimes you can make minor syntax mistakes that renders your query invalid. The query editor automatically tries to clean up such syntax errors behind the scene before running the query, so that you can still make mistakes, such as forgetting quotation marks and commas (illustrated in screenshot below), and your query still runs most of the time. You can also tell the query editor to explicitly clean up your query by clicking the Clean Up button. It will quote unquoted strings and property names, insert missing commas, and remove trailing commas. (Tip: the keyboard shortcut Shift-Ctrl-Enter will clean up your query explicitly and then run it.)
  •  
    Experiment with ways to get data out of Freebase using our JSON-based query language. 
1 - 20 of 24 Next ›
Showing 20 items per page