Skip to main content

Home/ Coders/ Group items tagged 2009

Rss Feed Group items tagged

Fabien Cadet

2009: Les revenus d'un informaticien indépendant en EURL - Le Touilleur Express - 0 views

  •  
    Un peu ancien, la législation a évoluée entre temps (2017), mais superbe illustration.
Joel Bennett

Branch-Per-Feature Source Control. Part 2: How (Theory) - LosTechies - 0 views

  •  
    This is Part 2. If you don't know WHY you'd want to do Branch-Per-Feature, you should read Part 1 ( http://www.lostechies.com/blogs/derickbailey/archive/2009/07/15/branch-per-feature-source-control-introduction.aspx )
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.)
David Corking

Issue 9007 - chromium - Crash on illegal instruction (temporary dependence on SSE2) - G... - 0 views

  • Comment 36 by agl@chromium.org, Apr 06 (45 hours ago) You can remove the SSE2 specific flags from the build and you'll still end up with a working browser. However, you can't run pixel-tests with such a browser because your outputs will be different. For everything else, it should be fine. Comment 37 by evan@chromium.org, Apr 06 (45 hours ago) There is no reason we really need SSE2; it's just a temporary workaround for bug 8475.
    • David Corking
       
      Will have to tweak the build by hand. This will no doubt be fixed before Chromium Linux goes to beta, but right now it is a disappointment, as the reported added speed of Chromium may be more valuable on older machines.
  •  
    For now, Linux builds of the chromium open source browser won't work on Intel and AMD processors from the early/mid 2000s (including my desktop PC :( )
Joel Bennett

ADO.NET Data Services Team Blog : Breaking Down 'Data Silos' - The Open Data Protocol (... - 2 views

  •  
    "Driven by the goal to enable simple data sharing across disparate data sources, today, at PDC, we are announcing the Open Data Protocol (OData). " (November 2009)
longchamppas

ralph lauren vetements homme - 0 views

Ce serait un rayon cosmique (un atome ou une particule chargée venant à grande vitesse du vide interstellaire) qui aurait débloqué le satellite, lui permettant de redémarrer. Le président de la Pla...

ralph lauren vetements homme, t shirt pas cher,prix jogging cher

started by longchamppas on 15 Jun 15 no follow-up yet
longchamppas

survetement ralph lauren pas cher Même - 0 views

"Laissez-moi vous expliquer mon problème avec les filles", a déclaré Tim Hunt lundi 8 juin lors de la Conférence internationale des journalistes scientifiques organisée en Corée du Sud. "Voici troi...

ralph lauren pas cher survetement vetement

started by longchamppas on 16 Jun 15 no follow-up yet
Saqib Imran

Apple Willingly Ignored iPhone 4 Reception Issues - 0 views

  •  
    "Apple's reputation is on the line yet again as some reports have disclosed that Apple knew back in 2009 about the iPhone 4 reception problems, but did not take any measures to eliminate it. Since the launch of iPhone 4, numerous customers, especially those who are based in US have been complaining about the bad reception on their iPhone 4."
Joel Bennett

T4 Templates for ASP.NET MVC v1.0 - CodePlex - 0 views

David Corking

Google Wave Developer Blog: 1 Wave Sandbox, 5 Hours, 17 Awesome Demos - June 2009 - 0 views

  •  
    Wow!
David Corking

JavaScript as a Functional Language | Ajaxonomy | 2009 - 0 views

  • there is a little bit of hand-waving involved in calling JavaScript a functional language. JavaScript is not a side-effect free language, nor is it an expression-based language (i.e., it is not value-oriented, but rather variable-oriented). There is no tail call optimization in any of the current implementations, so recursion must be kept shallow. And the list goes on. Truth be told, JavaScript is really one of the first hybrid imperative-functional languages.
  • Higher-order functions allow us to do functional composition,
  • Since JavaScript does not have "overloaded" functions, this type of functionality is usually simulated using manipulation of the function's arguments. Currying comes in handy because it allows you to do this manipulation in a much cleaner and more modular way.
  • ...1 more annotation...
  • Closures have quite a few applications in real-world JavaScript: event binding, callbacks, sorting, mapping (in the classical Lisp sense), and many others. In more modern JavaScript programming, you can find them almost everywhere.
  •  
    This is a short tutorial approach to an old but little-noticed saw.
alex gross

5 Great IDEs to Start Coding in the Cloud | Web.AppStorm - 5 views

  •  
    Cloud computing has started proceeding beyond the hype stage and into the beginning of mainstream adoption. Gartner had included cloud computing in their list of Top 10 Strategic Technologies for 2009. In this roundup, we will review some online Integrated Development Environments (IDEs) which are great examples of cloud programming. These solutions can [nearly] replace your desktop IDEs and code editors.
Fabien Cadet

Building Real Software: Lessons in Software Reliability, 2009-08-30 by Jim Bird - 11 views

  •  
    « It's unfortunate that few developers are familiar with The MITRE Corporation's Common Weakness Enumeration list of common software problems. [...] »
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

2009: The Common Principles Behind the NOSQL Alternatives (Nati Shalom's Blog) - 44 views

  •  
    If you are looking for ecommerce mobile app development company? Zazz is a leading ECommerce app development company offering next-gen E-commerce app development services. We commit to take your digital presence to an entirely new level. Visit - https://www.zazz.io/ecommerce-app-development-services.html
  • ...3 more comments...
  •  
    Developing A Community Sports App For Ranking Players And Hosting Tournaments People's lives have become easier, thanks to mobile apps. Within a few seconds we already know everything. Technology has also prepared it for sports-related enterprises and projects. App development companies have created a booming industry. Read More. https://www.applify.co/blog/developing-a-community-sports-app-for-ranking-players-and-hosting-tournaments/
  •  
    An online marketplace is an independent platform that connects buyers and sellers directly. Get Full-service eCommerce solutions, from strategy to design, implementation and management. We commit to taking your digital presence to an entirely new level. Visit https://appinventiv.com/ecommerce-app-development/
  •  
    Recently I subscribed to a course Tableau- https://www.igmguru.com/data-science-bi/tableau-training/. I wanted to know if is it good for my career.
  •  
    Thanks for sharing this Angle info with us. https://toolsbuyingguide.com/how-to-change-an-angle-grinder-blade/
longchamppas

Polo Ralph Lauren pas cher Boris - 0 views

C'est pour ce genre de match qu'on s'intéresse au football et qu'on regarde un Euro", assure l'attaquant allemand Thomas Müller. Voir galerieL'attaquant allemand Mario Gomez face à l&#3...

Ralph Lauren pas cher Polo Soldes

started by longchamppas on 12 Jul 16 no follow-up yet
longchamppas

lacoste pas cher femme Cette - 0 views

"Il n'y a pas beaucoup de plus belles affiches que celle-là. C'est pour ce genre de match qu'on s'intéresse au football et qu'on regarde un Euro", assure l'attaquant allemand Thomas Müller. Voir ga...

vetement lacoste pas cher femme chaussure

started by longchamppas on 07 Jul 16 no follow-up yet
1 - 20 of 115 Next › Last »
Showing 20 items per page