Skip to main content

Home/ Coders/ Group items matching "generic" in title, tags, annotations or url

Group items matching
in title, tags, annotations or url

Sort By: Relevance | Date Filter: All | Bookmarks | Topics Simple Middle
David Corking

torta - where is my disk space being used? - 0 views

shared by David Corking on 23 Jun 09 - Cached
  • it analyzes the file system directly and generates a Flash file that you can load locally or remotely on any Flash-supporting web browser. Torta uses Gordon, a library that provides flash generation functionality.
  •  
    A very nice graphical front-end for 'du', in Common Lisp. I have tried it - it is trivial to use with SBCL. Version 0.3 works very well on the native Linux filesystem of my laptop, and on its VFAT (Windows) filesystem, provided I mount it with iocharset
Joel Bennett

iTextSharp - SourceForge.net - 0 views

  •  
    iText# (iTextSharp) is a port of the iText open source java library to C# for the .NET platform. iText# allows you to generate PDF files on the fly...
Andreas Wagner

CLI - Command Line Interface Definition Language for C++ - Project Page - 0 views

  •  
    C++ Command Line Interfaces Standard C++-based implementation. No external dependencies, not even on a runtime library. Any fundamental or user-defined C++ type can be used as an option type. Automatic printing of formatted program usage information. Automatic documentation generation in the HTML and man page formats. Ability to read arguments from the argv array, file, and custom sources. Support for erasing parsed arguments from the argv array. Support for custom option formats. Multi-value option parsing into the std::vector, std::set, and std::map containers. Support for option aliases.
Joel Bennett

TCPDF - PHP Class for PDF - 8 views

  •  
    "TCPDF is an Open Source PHP class for generating PDF documents."
Joel Bennett

Apache Thrift - 2 views

  •  
    Thrift is a software framework for scalable cross-language services development. It combines a software stack with a code generation engine to build services that work efficiently and seamlessly between C++, Java, Python, PHP, Ruby, Erlang, Perl, Haskell, C#, Cocoa, Smalltalk, and OCaml.
vikramsjn

Code of Ethics - Association for Computing Machinery - 0 views

  •  
    "Contents & Guidelines 1. General Moral Imperatives. 2. More Specific Professional Responsibilities. 3. Organizational Leadership Imperatives. 4. Compliance with the Code. 5. Acknowledgments."
  •  
    must read for every coder - for his work and career
Haley Drummond

HTML to PDF | HTML to Excel | DocRaptor - 0 views

shared by Haley Drummond on 23 Feb 11 - Cached
  •  
    Web-based app that converts html to pdf or html to excel. Uses Prince XML as the engine behind pdf generation.
  •  
    really useful tool for programming in any language
Fabien Cadet

« Big Ball of Mud » (aka. Spaghetti Code) , by Brian Foote and Joseph Yoder (June 26, 1999) - 3 views

  • The class of systems that we can build at all may be larger than the class of systems we can build elegantly, at least at first.
  •  
    « While much attention has been focused on high-level software architectural patterns, what is, in effect, the de-facto standard software architecture is seldom discussed. This paper examines this most frequently deployed of software architectures: the BIG BALL OF MUD. A BIG BALL OF MUD is a casually, even haphazardly, structured system. Its organization, if one can call it that, is dictated more by expediency than design. Yet, its enduring popularity cannot merely be indicative of a general disregard for architecture. »
findbestopensource

How to create SEO friendly url. - 0 views

  •  
    SEO friendly URL is recommended for any website which wants to be indexed and wants its presence in search results. Searchengine mostly index the static URL. It will avoid the URL which has lot of query strings. Almost all websites generate content dynamically then how could the URL be static. That is the job of the programmer. This article explains in view of Java Struts2 framework.
Fabien Cadet

Google Announces Plans To Bake Android-Like Web Intents Into Chrome | TechCrunch, 2011-08-04 by Jason Kincaid - 2 views

  •  
    « So what exactly are Web Intents? The name and the purpose are both similar to the Intents system that's present in Google's Android platform. In short, Intents allow two separate applications to communicate with each other, without either of them having to actually know what the other one is. Instead, they offer and listen for generic hooks. »
Joel Bennett

T# Studio from Pretty Objects - 0 views

  •  
    Visual T# is a new generation unit testing tool with it's own language where testing concepts become first-class constructs.
Tarik Guney

Singleton pattern - Wikipedia, the free encyclopedia - 0 views

  • the singleton pattern is a design pattern that is used to restrict instantiation of a class to one object.
  •  
    In software engineering, the singleton pattern is a design pattern that is used to restrict instantiation of a class to one object. This is useful when exactly one object is needed to coordinate actions across the system. The concept is sometimes generalized to systems that operate more efficiently when only one object exists, or that restrict the instantiation to a certain number of objects (say, five). Some consider it an anti-pattern, judging that it is overused, introduces unnecessary limitations in situations where a sole instance of a class is not actually required, and introduces global state into an application.
yc c

YUI 3 - Yahoo! User Interface Library - 4 views

shared by yc c on 31 Oct 09 - Cached
  •  
    UI 3 is Yahoo!'s next-generation JavaScript and CSS library; it powers the new Yahoo! homepage and incorporates what we've learned in five years of dedicated library development. Today, the YUI 3 Core and a full utility set are ready for use. All YUI projects are BSD-licensed and are available for forking and contribution on GitHub.
Tarik Guney

ClientIDMode in ASP.NET 4.0 - Rick Strahl's Web Log - 0 views

  •  
    One of the more anticipated features of ASP.NET 4.0 - at least for me - is the new ClientIDMode property, which can be used to force controls to generate clean Client IDs that don't follow ASP.NET's munged NamingContainer ID conventions. To be clear, NamingContainer IDs are necessary for complex controls and pages that nest many things inside of a single context, but for most application level Web design scenarios those munged IDs get in the way and don't provide a lot of value.
Fabien Cadet

Design Patterns: 15 Years After the Revolution, by Danny Kalev @ InformIT [2009-10-30] - 1 views

  • by defining a description template that included among the rest: Known uses. Sample code (as opposed to a typical algorithm which were often described in plain English and perhaps a few sketchy lines of pseudo-code). Collaboration (A description of how classes and objects used in the pattern interact with each other). Consequences (results and side-effects). Related patterns.
  • Would a 2009 catalog of the 23 classic design patterns look much different? According to the authors of Design Patterns: Elements of Reusable Code, the answer is no.
  • The authors would reclassify certain patterns and omit a few of the original patterns but the design and implementation would remain pretty much the same: "We have found that the object-oriented design principles and most of the patterns haven't changed since then" says Erich Gamma. You can't escape the feeling that patterns are frozen in time
  • ...2 more annotations...
  • In the meantime, in the C++ world the tide has turned towards a completely different paradigm known as generic programming (and to some extent, functional programming). Instead of plain classes and a complex inheritance chain, C++ these days uses templates, meta-programming and static type checking. The C++ Standard Library is the most prominent showpiece of the generic and functional programming idioms.
  • Over-engineering is another source of criticism. Programmers who become acquainted with patterns are often tempted to solve every problem using a pattern, even when a much simpler solution would probably be a better choice.
Fabien Cadet

vimperator : Firefox addon for vim-like browsing - 3 views

  •  
    « Writing efficient user interfaces is the main maxim, here at Vimperator labs. We often follow the Vim way of doing things, but extend its principles when necessary. Towards this end, we've created the liberator library for Mozilla based applications, to encapsulate as many of these generic principles as possible, and liberate developers from the tedium of reinventing the wheel. »
Fabien Cadet

Parsing Html The Cthulhu Way @ Coding Horror (Jeff Atwood) - 1 views

  •  
    « Among programmers of any experience, it is generally regarded as A Bad Ideatm to attempt to parse HTML with regular expressions. How bad of an idea? It apparently drove one Stack Overflow user to the brink of madness [...] »
alex gross

Univar - Session, cookie, query string & cache variables unified - 5 views

  •  
    s a web developer I have often had to work with the session, cookie, query string and cache to persist data locally. But it is a shame that there is no neat way of doing so. So I decided to write my own code to provide a simpler and unified model to work with and finally came up with this, a type safe and generic wrapper that supports complex data types
Zulkarnain K.

Page Speed Online - 12 views

  •  
    Page Speed Online analyzes the content of a web page, then generates suggestions to make that page faster. Reducing page load times can reduce bounce rates and increase conversion rates.
« First ‹ Previous 61 - 80 of 178 Next › Last »
Showing 20 items per page