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
Joel Bennett

SketchPath - 0 views

  •  
    A really good looking xpath debugger and editor, with tons of help: auto-complete, generator, expression libraries, etc.
Joel Bennett

Online syntax highlighting for Javascript, Powershell, Python, Ruby and more - 1 views

  •  
    An online code syntax highlighter that generates HTML source code and stylesheets for pasting into blogs (or whatever)
Dhaval Shah

What is a Lifecycle Anyway? - 0 views

  • It occurred to me that the title of this blog is going to mean something different to anyone who reads it. So I will explain what it means to me.A lifecycle describes the progression of something from its very conception until it no longer has any value. A lifecycle breaks down this progression into generalized stages so we can be smart about dealing with whatever it is based on where we think it is in the lifecycle. The most obvious lifecycle is our own from child, to young adult, to middle age, to old age. We make these distinctions in order deal with the realities of say, voting, retirement planning, and advertising. It's one lifecycle, but it is treated differently by government, banking, and marketing stakeholders, respectively.
  •  
    A nice explanation of *lifecycle* term in context of application development.
Joel Bennett

Volta - Microsoft Live Labs - 0 views

  • design and build your application as a .NET client application, then assign the portions of the application to run on the server and the client tiers late in the development process. The compiler creates cross-browser JavaScript for the client tier, web services for the server tier, and communication, serialization, synchronization, security, and other boilerplate code to tie the tiers together.
  •  
    Volta is to .Net what the Google Web Toolkit is to Java ... except it goes *way* further, because it lets you write a multi-tiered application as a rich-client app and then choose to have the client portion "compile" to HTML+Javascript ...
Joel Bennett

QuickGraph, Graph Data Structures And Algorithms for .Net - Home - 0 views

  • QuickGraph 2.0 provides generic directed graph datastructures and algorithms for .Net 2.0. QuickGraph comes with algorithms such as depth first seach, breath first search, shortest path, network flow etc... QuickGraph supports GLEE and Graphviz to render the graphs.
Justin Newton

Visual Studio 2008 Learning Guide - 0 views

  •  
    Visual Studio is the latest version of Microsoft's flagship IDE. New versions of Visual Basic and C#, improvements to the .NET Framework, out-of-the-box access to ASP.NET AJAX and Visual Studio Tools. VISUAL STUDIO INTO GUIDE & TUTORIAL
  •  
    VISUAL STUDIO LEARNING GUIDE 2008
  •  
    VISUAL STUDIO LEARNING GUIDE 2008
Joel Bennett

<oXygen/> XML Editor & XSLT Debugger - 0 views

  •  
    A nice commecrial XML editor that not only has excellent validation, xslt and xpath and xquery, andformatting objects (fo) features, but supports an XML data grid view and XML Diff & Merge!  It even supports generating SVG graphics via XSL transforms on data files, remote editing over FTP or WebDav, and is available as an Eclipse plugin. Only $48 for Academic use.
Joel Bennett

Shining Light Productions - Win32 OpenSSL - 0 views

  •  
    The Win32 OpenSSL Installation Project is dedicated to providing a simple installation of OpenSSL that is easy to setup and get started with.
Joel Bennett

Sandcastle - 0 views

  •  
    The Sandcastle Wiki. Sandcastle is the official Microsoft MSDN documentation generator (it reflects on assemblies and includes XML comments if they're available). Like NDoc ...
Matteo Spreafico

Fabulous Adventures In Coding : The Stack Is An Implementation Detail, Part One - 0 views

  • Almost every article I see that describes the difference between value types and reference types explains in (frequently incorrect) detail about what “the stack” is and how the major difference between value types and reference types is that value types go on the stack.
  • I find this characterization of a value type based on its implementation details rather than its observable characteristics to be both confusing and unfortunate. Surely the most relevant fact about value types is not the implementation detail of how they are allocated, but rather the by-design semantic meaning of “value type”, namely that they are always copied “by value”.
  • Of course, the simplistic statement I described is not even true. As the MSDN documentation correctly notes, value types are allocated on the stack sometimes. For example, the memory for an integer field in a class type is part of the class instance’s memory, which is allocated on the heap.
  • ...3 more annotations...
  • As long as the implementation maintains the semantics guaranteed by the specification, it can choose any strategy it likes for generating efficient code
  • That Windows typically does so, and that this one-meg array is an efficient place to store small amounts of short-lived data is great, but it’s not a requirement that an operating system provide such a structure, or that the jitter use it. The jitter could choose to put every local “on the heap” and live with the performance cost of doing so, as long as the value type semantics were maintained
  • I would only be making that choice if profiling data showed that there was a large, real-world-customer-impacting performance problem directly mitigated by using value types. Absent such data, I’d always make the choice of value type vs reference type based on whether the type is semantically representing a value or semantically a reference to something.
David Corking

Dr. Dobb's | Q&A: When Mobility and Open Source Collide | March 28, 2009 - 0 views

  • The web browser is a good example, on a pc it may make sense to ask a user to find, click, type, and browse the web or look for a service. In a mobile, converged product, you need to help the user be present with the service even or especially when they are driving or have the product in a pocket or handbag, and requiring them to constantly select 'yes' or to type in forms etc. are real headaches for a consumer.
  • We will not provide a store front, but will help the community create multiple online stores from which they can generate revenue for themselves and the developer.
  • At the other end of the spectrum, you see hoards of teenagers in the U.S., Europe and Asia happily texting one handed, using predictive text.
    • David Corking
       
      No: they do NOT use predictive text - we 40 somethings might - but the kids uset text speak. How does a kid text rom an iPhone in his pocket?
  • ...7 more annotations...
  • Focus on the whole experience, meaning you need to be inclusive of display sizes, input methods, and form factors when you design and develop your applications and services.
    • David Corking
       
      How much time does a Symbian app developer have to put in to considering all the different Symbian phones on the market?
  • .Net CF
  • expanding this functionality with QT libraries, Adobe AIR technology
  • StyleTap has a Palm emulator that allows you to run thousands of Palm applications on Symbian products
  • Red Five Labs has a runtime for Symbian OS which ensures Microsoft .net applications can be fully supported.
  • many people around the world are not buying and cannot afford a PC.
  • The Symbian Foundation is helping to do this by ensuring we lower the barrier for entry for software developers.
  •  
    Really interesting interview with Symbian boss
David Corking

Alarming Development : JavaScript is good enough | Jan 2009 - 0 views

  • It is impossible to build a hash table in JavaScript that works on arbitrary objects. You would have to manually allocate unique ID’s for every object and include them in the toString. So no collections in JavaScript. Adobe provides a true built-in hashtable in ActionScript 3.
  • Objects can function as sets and maps. Arrays can function as lists and iterators (generate an array when you need an iterator). More that good enough in this context.
  • VB also often compiles down to better MSIL than C#. It is also the only .NET language with first-class edit-and-continue Lisp-like debugging capabilities.
  • ...1 more annotation...
  • a good collection library should support a meta-object protocol with features like rejecting changes. This allows collections to be passed around as references,
  •  
    An old-fashioned language war, 2009 style. Visual Basic even gets a mention as "Lisp-like" (for its debugging.)
DJ XC

Microchip PIC, ASM Delay Code, Code Generator - 0 views

  •  
    util herramienta para generar delays exactos en picasm.
Fabien Cadet

Why LD_LIBRARY_PATH is bad, by David Barr (2001) - 2 views

  • This list is prepended to the existing list of compiled-in loader paths for a given executable, and any system default loader paths.
  • For security reasons, LD_LIBRARY_PATH is ignored at runtime for executables that have their setuid or setgid bit set. This severely limits the usefulness of LD_LIBRARY_PATH.
  • SunOS 4.x uses major and minor revision numbers. If you have a library “Xt”, then it's named something like “libXt.so.4.10” (Major version 4, minor 10). If you update the library (to correct a bug, for example), you would install libX11.so.4.11 and applications would automatically use the new version.
  • ...5 more annotations...
  • Linux, SunOS 5.x and most other SYSV variants use only major revision numbers. A library “Xt” is just named something like “libXt.so.4”.
  • Linux confuses things by generally using major/minor library file names, but always include a symlink that is the actual library path referenced. So, for example, a library “libXt.so.6” is actually a symlink to “libXt.so.6.0”.
  • The linker/loader actually looks for “libXt.so.6”.
  • run-time vs link-time paths
  • There's also LD_RUN_PATH which is an environment variable which acts to “ld” just like specifying -R.
Fabien Cadet

prog21: Tales of a Former Disassembly Addict - 1 views

  • In fact, generated code can be so ridiculous and verbose that I finally came up with an across-the-board solution which works for all compilers on all systems: I don't look at the disassembled output.
  • I still see people obsessed with picking a programming language that's at the top of the benchmarks, and they obsess over the timing results the way I used to obsess over disassembled listings. It's a dodge, a distraction...and it's irrelevant.
Joel Bennett

Taco Bell Programming - 6 views

  • Taco Bell Programming is about developers knowing enough about Ops (and Unix in general) so that they don't overthink things, and arrive at simple, scalable solutions.
    • Joel Bennett
       
      There's something to be said for reusing the great (functional) tools and components that are already in your tool set. Simple and functional is a great combination, and the less code *you* have to write (for a given solution) the less code you'll have to maintain.
« First ‹ Previous 141 - 160 of 178 Next ›
Showing 20 items per page