Skip to main content

Home/ Coders/ Group items tagged convention

Rss Feed Group items tagged

Joel Bennett

AutoMapper - CodePlex - 0 views

  •  
    AutoMapper uses a fluent configuration API to define an object-object mapping strategy. AutoMapper uses a convention-based matching algorithm to match up source to destination values.
  •  
    AutoMapper uses a fluent configuration API to define an object-object mapping strategy. AutoMapper uses a convention-based matching algorithm to match up source to destination values.
Andrey Karpov

The Archive of Interesting Code - 0 views

  •  
    The Archive of Interesting Code is an (ambitious) effort on my part to research, intuit, and code up every interesting algorithm and data structure ever invented. In doing so, I hope both to learn the mathematical techniques that power these technologies and to improve my skills as a programmer. The examples on this site are in a variety of languages. I generally prefer to use C++ for algorithms, since the STL provides a great framework for expressing algorithms that work on a variety of data types. I code up most data structures in Java, both because the Collections framework allows them to be integrated in seamlessly with other applications and because automatic garbage collection simplifies some of the resource management. Every now and then I'll find an algorithm or data structure that is best represented in a different language like Haskell, in which case I'll forgo my usual language conventions.
anonymous

kneath/kss - GitHub - 7 views

  •  
    Inspired by TomDoc, KSS attempts to provide a methodology for writing maintainable, documented CSS within a team. Specifically, KSS is a documentation specification and styleguide format. It is not a preprocessor, CSS framework, naming convention, or specificity guideline.
Joel Bennett

xVal - CodePlex - 0 views

  •  
    xVal is a validation framework for ASP.NET MVC applications. It makes it easy to link up your choice of server-side validation mechanism with your choice of client-side validation library, neatly fitting both into ASP.NET MVC architecture and conventions.
Joel Bennett

AutoMapper - 1 views

  •  
    AutoMapper uses a fluent configuration API to define an object-object mapping strategy. AutoMapper uses a convention-based matching algorithm to match up source to destination values. It flattens as it maps to make it easy to use for converting your Model into a ViewModule or Data Transfer Object (DTO)..
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.
escaping1 escaping1

chemise burberry pas cher Croix - 0 views

Avec ce nouveau partenaire indien (propriétaire de la compagnie low-cost Indigo qui a récemment passé commande de 100 Airbus), Accor entend créer, d'ici à cinq ans, 2 700 chambres supplémentaires d...

foulard burberry pas cher chemise vintage trench coat

started by escaping1 escaping1 on 16 Dec 14 no follow-up yet
krify software

iPad Apps Development - 1 views

  •  
    You dream and we will assist you in realizing your dreams. Krify can transform your thoughts into reality whether you want the development of iPad application or need a service to improvise your products and offerings. iPad, another product of Apple, is a huge hit with all the followers of iOS. At our development centre, we can create iPads of the kinds like Social Networking, Education, Gaming, Music & Entertainment, Travel and many more. iPads are seen in the hands of people from different walks of life today. Regardless of the occupations or life styles they are into, we see Youngsters, Professionals, home makers and Senior Citizens playing with iPads these days. To cater to these varying needs we have trained our associates and are all geared up for any surprising requirement. We are working on creating apps for various versions of iPad minis. We have the expertise to develop iPad apps for various generations of iOS platforms and we utilize iOS SDK, X code & Objective C Technologies. We make the best use of conventional structures like Multi-touch interface, GPS, Proximity Sensor, Address Book, and Accelerometer. 3G and 4G networks are popular today and we work on them for creation of iPad apps.
Biztech Consultancy

Some great web design tools - 1 views

  •  
    Truly indispensible to create a website that stands out in every aspect and a conventional low compatible website is now an oddity. For a professionally designed website, there are some great prescribed tools that make the work of Web Designing easy, less time consuming and huddle free.
escaping1 escaping1

ralph lauren pas cher avec - 0 views

Seule activité : pondre des ?ufs réceptionnés par un tapis mécanique. Le GAEC du Perrat, qui emploie 20 salariés, produit ainsi 160 000 ?ufs par jour. Selon l'enquête de L214, ils sont notamment ve...

polo ralph lauren pas cher femme

started by escaping1 escaping1 on 25 May 16 no follow-up yet
subsequent1 subsequent1

gilet Lacoste Rumeurs - 0 views

Il s'agit de la Belgique, l'Italie, la Bosnie-Herzégovine, la Géorgie et Saint-Marin. «Je pense que ces pays seront embarrassés quand leurs opinions publiques et les autres pays sauront qu'ils n'on...

Lacoste pas cher femme gilet polo feance

started by subsequent1 subsequent1 on 21 Jun 14 no follow-up yet
escaping1 escaping1

vetement lacoste pas cher homme Pour - 0 views

Hélas! il eût mieux valu pour moi être renvoyé tout de suite. Ma vie dans le collège était devenue impossible. Les enfants ne m'écoutaient plus ; au moindre mot, ils me menaçaient de faire comme Bo...

vetement lacoste pas cher homme ligne

started by escaping1 escaping1 on 11 Oct 14 no follow-up yet
Danny Redd

google-styleguide - 0 views

  •  
    Repository for Google's C++ and Objective-C style guides
Matteo Spreafico

Joe Duffy's Weblog - OnBeingStateful - 0 views

  • The biggest question left unanswered in my mind is the role state will play in software of the future.
  • The biggest question left unanswered in my mind is the role state will play in software of the future. That seems like an absurd statement, or a naïve one at the very least.  State is everywhere: The values held in memory. Data locally on disk. Data in-flight that is being sent over a network. Data stored in the cloud, including on a database, remote filesystem, etc. Certainly all of these kinds of state will continue to exist far into the future.  Data is king, and is one major factor that will drive the shift to parallel computing.  The question then is how will concurrent programs interact with this state, read and mutate it, and what isolation and synchronization mechanisms are necessary to do so?
  • Many programs have ample gratuitous dependencies, simply because of the habits we’ve grown accustomed to over 30 odd years of imperative programming.  Our education, mental models, books, best-of-breed algorithms, libraries, and languages all push us in this direction.  We like to scribble intermediary state into shared variables because it’s simple to do so and because it maps to our von Neumann model of how the computer works.
  • ...3 more annotations...
  • We need to get rid of these gratuitous dependencies.  Merely papering over them with a transaction—making them “safe”—doesn’t do anything to improve the natural parallelism that a program contains.  It just ensures it doesn’t crash.  Sure, that’s plenty important, but providing programming models and patterns to eliminate the gratuitous dependencies also achieves the goal of not crashing but with the added benefit of actually improving scalability too.  Transactions have worked so well in enabling automatic parallelism in databases because the basic model itself (without transactions) already implies natural isolation among queries.  Transactions break down and scalability suffers for programs that aren’t architected in this way.  We should learn from the experience of the database community in this regard
  • There will always be hidden mutation of shared state inside lower level system components.  These are often called “benevolent side-effects,” thanks to Hoare, and apply to things like lazy initialization and memorization caches.  These will be done by concurrency ninjas who understand locks.  And their effects will be isolated by convention.
  • Even with all of this support, we’d be left with an ecosystem of libraries like the .NET Framework itself which have been built atop a fundamentally mutable and imperative system.  The path forward here is less clear to me, although having the ability to retain a mutable model within pockets of guaranteed isolation certainly makes me think the libraries are salvageable.  Thankfully, the shift will likely be very gradual, and the pieces that pose substantial problems can be rewritten in place incrementally over time.  But we need the fundamental language and type system support first.
escaping1 escaping1

sac longchamp LM Tote La situation - 0 views

Pourquoi la maladie semble- t-elle s'étendre très rapidement ?Il y a aujourd'hui partout dans le monde, y compris dans les pays en voie de développement, une multiplication des élevages de volaille...

sac longchamp Empreinte LM Tote Insect Series

started by escaping1 escaping1 on 07 Jun 14 no follow-up yet
longchamppas

achat lacoste pas cher La - 0 views

Cinq pays de l'UE ne répondent pas sur des collaborations avec la CIA UE. Le Conseil de l'Europe a publié hier la liste de ses membres qui n'ont pas fourni le détail des liens qu'ils entretiennent ...

achat basket lacoste pas cher polo

started by longchamppas on 28 Aug 14 no follow-up yet
longchamppas

sac hermes birkin himalaya Actuellement - 0 views

Les administrations successives ont affiché «un manque de courage politique scandaleux» tonne lord Howe. Pourtant, le Code de la route évalue toutes les distances de freinage en mètres et les carte...

sac hermes birkin hermès himalaya histoire

started by longchamppas on 12 Sep 14 no follow-up yet
longchamppas

Porte monnaie Longchamp Pliage pas cher Il - 0 views

Si la réunion du 11 octobre ne débouche sur rien...Les 18 et 19 novembre à Paris, on organise les états généraux de la communauté harkie. Là, on décidera des actions à mener, y compris le blocage d...

sac Porte monnaie Longchamp Pliage pas cher http:__www.dyspraxiquemaispasque.fr_

started by longchamppas on 01 Aug 14 no follow-up yet
1 - 20 of 28 Next ›
Showing 20 items per page