<b>Developer.com:</b> "SQL-based relational database management systems (RDBMS) are beginning to be challenged by a new movement of NoSQL databases. Among those NoSQL databases is the open source CouchDB..."
As a Web Developer we all have own dream to make a great web application. a great application was built upon high discipline and best practice on the process of development then we can make modification easier in future as if we want. the user feedback also have a matter because they tell us what they want or expected with the application we make day and night. sometime they report a nice story , experience or a problem they got with our application. so that's matter because they telling about our application much more because they use our software and a part of process of future development or next version of application we make. so the Web have a good thing that they updated as soon as possible. in desktop application their is a numbers of trouble client have when they want to use our application. first thing that installation of software never goes right on every system. big company spent a big amount of money to troble these problem the user have with their software.
Web application is nice implementation of application because their is no trouble with installation all have same experience and if something goes wrong patch come soon and no waiting for new version. Chrome even a desktop application [browser] but they automatically update themselves so their is no trouble for user to get next version now hasseles.
Web application development in Microsoft way have their own rule , pattern practice to make better application in less time. the technologies i want to show you here is some great opensource example like MySQL jQuery and ASP.NET MVC a framework based on ASP.NET server side language.
For going to next step we need to show you a list of software you need to have to fully experience this tutorial.
Visual Web Developer 2010 Express Edition
MySQL [open-source RDBMS]
Query [open-source javascript library]
for getting these software you need to pay nothing.
Visual Web Developer can obtained from Microsoft.com/Express or if you are student or Web Developer you are eligible to get the Visual studio professional and many other great software from Microsoft through their Dreamspark or WebsiteSpark programmes.
MySQL is a great Relational Database management software who are freely available from MySQL.com as a database monitorting tool you can use MySQL workbrench who can be freely get from MySQL official website or many other free tool are available for begining development with MySQL
jQuery is a great library for making javascipt development easier and faster.you can obtained jQuery from jQuery.com their official website.
<b>IT Pro: </b>"In the case of LOVEFiLM, now a well-known name in the DVD and digital film market, open source has underpinned much of the company's work thus far."
<b>Techworld</b> "The Horde open source messaging and groupware project is gearing up for the first major release of its application suite and development environment in years with version 4, which is due to arrive in mid-2010."
<b>Zona-M:</b> "When you start doing it though, you soon find out that the hardest, or at least lest documented task, is not how to send email, or how to block spam. It is how to make sure that the email you send is always accepted by other sites, that is how to find out if your email server looks like a spam source."
<b>Computerworld:</b> "A new open source project, dubbed Opendedup, has appeared with the goal of creating a deduplication-based file system for Linux called SDFS."
<b>Open Enterprise:</b> "It seems every day we hear about hideous cost overruns on public sector projects in the UK. What makes it even more frustrating is that open source, a real no-brainer for many applications, is rarely given the chance to prove itself here."
Microsoft's decision to issue free versions of its products at number of levels suggests that it's well aware of the competitive threat posed by free open source software.
<b>Not 403:</b> "But it's sad to see how Oracle after Sun acquisition, is slowly shutting down this amazing open source project, marking it as "not strategic" and dismembering the few parts they think are worth for their own SSO product."
After a period of careful consideration and planning, a new edition of the Zurich Open Source Jam took place on May 27th. This time, the focus was more...
Manon Midy vous présente un nouveau tutoriel intitulé:
Tuleap, la suite ALM 100% Open Source
Citation:
Ce tutoriel va vous faire découvrir la Suite ALM Tuleap, éditée par la société Enalean.
Que vous soyez développeur, chef de projet, responsable technique ou scrum master, Tuleap va vous aider à mieux gérer vos projets de développement logiciels.
Bonne lecture....
<b>The Register: </b>"Apple Safari's new "make web go away" button is based on an open source project distributed under the Apache 2 license. And that's news to the open sourcers."
<b>ZDNet:</b> "The continuing conflict between Google and China, which may be a proxy for deeper conflicts over economics and values, could easily impact open source."
<b>Computer Weekly Blog: </b>"Grynzpan reckons that Brazil has to find a unique selling proposition and its vast pool of knowledge in open source software could be the real advantage of the local IT industry."
If you are going to get a lot of visitors to your site that will make you a profit you are going to have to make sure you focus on using traffic strategies that have been proven to work for the long haul. In this article I want to show you how to use the single most overlooked source in your niche market.
<b>Developer.com:</b> "The cloud isn't just for network administrators looking for scale, it's also a key development area for developers building applications with open source dynamic languages."
<b>Blog of Helios:</b> "Nils Grotnes emailed me about 20 minutes ago with some pretty cool news. Aquaria by Bit Blot ,Gish Published by Chronic Logic, Lugaru HD by Wolfire, and Penumbra Overture of course by Frictional Games have pledged to go open source."
Tip of the Trade: A reader weighs in on the backspace/delete terminal problem. Although the solution doesn't solve the problem at hand, it does lead to some interesting open source software troubleshooting.
I am reading hotplug events. And I want to enable automatic loading unloading module, when a new device is added.
For that I read that kernel does it using /sbin/hotplug script, but I am not able to find it in my source code, can someone help me out where can I find it?
Also when I tried to do cat /proc/sys/kernel/hotplug
there is nothing coming in output, I am running the same kernel which I downloaded and built.
I'm in the process of learning Scala and I came across a scenario today where I need to map multiple functions over a single piece of data and wondered if there was a formal name for this. It sort of feels like the inverse of map.
I'm not sure this is the correct way of expressing it, but this is what I did:
dmap(x: Object, fns: List[Function]) = fns.map(_(x))
Is there a built in way to do something similar? Is there a formal name for this function?