Subscribe to Angel Blog Reviews Subscribe to Angel Blog Reviews's comments

Posts tagged ‘developers’

Entrepreneur Eric Ries, who previously co-founded the 3D avatar-based chat client IMVU , is also widely credited with coining the phrase ” lean startup ” in 2008. Ries recently gathered as many resources as he could muster for lean startups and shared them on his blog, Lessons Learned . A lean startup is one that takes advantage of open-source technologies and other products to push a product to market at a “low burn,” while at the same producing continual revisions to its product based on customer feedback. Ries provides a wide consortium of links to wikis , mailing lists , meetups , and bloggers all focusing on the lean startup initiative – a collection of great value to any startup that wants to lower costs while feverishly iterating their product. Sponsor Ries, who is often invited to speak about lean startups, says that this type of development is what helped IMVU achieve its loyal following. Timothy Fitz, a software engineer at IMVU, says the developers average 50 new code iterations per day. “That’s 6 deploys an hour,” writes Fitz on his blog . “Even at that pace we’re often batching multiple commits into a single test/push cycle.” The inspiration for this new methodology? Ries says it came from books like Lean Thinking , which outlines ways companies can reduce waste and boost revenue, but Ries is quick to point out that a lean startup and a lean company are two different things. According to Ries, lean companies attempting to trim the fat are striving to create value for their customers, but value is not the foremost goal for the leaning of startups. “Lean startups operate by a different standard,” says Ries. “I suggest they define waste as ‘every activity that does not contribute to learning about customers’.” Photo by Flickr user Usodesita . Discuss

dumbells jan10 Built For Speed: Turn Your Startup Into A Lean, Mean Iterating Machine

See the rest here:
Built For Speed: Turn Your Startup Into A Lean, Mean Iterating Machine

An LA-based investor recently told us, “Northern California is hyper competitive for engineers, and companies are always luring developers away from each other. Our community is smaller and no one wants to burn bridges. We’ve got lower staff turnover.” At first I was skeptical, but a recent story on Hacker News now has me convinced. Sponsor On January 16, Bay Area developers will convene in Mountain View to stage the first “reverse job fair”. Hosted by tech community center Hacker Dojo , a group of well-established software engineers, testers and project managers will welcome potential employers to visit their booths and check out science fair-style presentations of their programming projects. While much of the documentation of these projects is available via GitHub and the developers’ personal websites, employers can ask candidates questions and get a feel for their personalities and interests. To attend the reverse job fair, you can sign up to the Google Group . Discuss

hackerdojo jobfair jan10 Behold, The Power of the Programmers

Read the rest here:
Behold, The Power of the Programmers

Last month was Javascript season in Europe, with two conferences dedicated to the language that powers interactive web applications, and a third , which featured it heavily. If a common theme emerged, it was the buzz about Javascript leaping out of the browser to serve other domains, and the noise has only become louder in the aftermath. Of all the applications outside the browser, server-side Javascript is the most alluring for reasons described in this post. An idea that would have had you laughed out of the room a few years ago is edging towards reality. Sponsor Javascript outside the browser? Some of the applications are graphical user-interface platforms similar to the browser, e.g. Adobe Air, television sets. With other applications, there’s not even a graphical user interface. For example, some have suggested using it as a general-purpose Unix scripting language. This guest post was written by Michael Mahemoff , who works at Osmosoft as lead web developer and blogs regularly for Ajaxian and on his his personal blog, Software As She’s Developed . You can follow him on Twitter . The Perfect Storm Server-side Javascript isn’t a new phenomenon; Netscape stuck Javascript in the server way back in 1996, right after they introduced it to the world as a browser technology. Interest soon waned, and the language was confined to the browser for the most part. Even there, it didn’t get a whole lot of respect and was frequently dismissed as a hack language capable of no more than annoying alert boxes and gratuitous ticker tape animations. But suddenly, serious web-based applications started sprouting up. GMail, Google Maps, and JotSpot (kind of a Google Docs predecessor) were all running inside the browser. They weren’t supported by Flash, nor ActiveX, but Javascript manipulating the browser’s Document Object Model (DOM). The term “Ajax” was coined to describe these applications, and a community flourished. A few years on, Javascript has become the world’s most popular programming language by some accounts. Not so surprising when you consider its special status as the standard language shipped with all major browsers. It’s the web’s lingua franca. While most web developers have a favourite, primary, language for server-side work, they converge on Javascript when it comes to the browser. Javascript today can be compared to the English language: it’s arguably the most popular language as long as you count basic competency, not just outright fluency. Given that you’re already using it in the browser, why not stick it in the server too? One language all the way down makes it easier for a single programmer to work on either side of the wire; there’s less of a mental shift. For project managers, the trend would make it easier to move developer resources between the front end and the back end if a common language is used on both. Many in the developer community now recognize Javascript as a respectable language, with understood patterns for effective use. In fact, many of Javascript’s negatives were a case of misdiagnosis: the problem was really the browsers’ DOM (Document Object Model) APIs, not the language itself. Take those out of the equation and you’re left with a solid language capable of tackling diverse problems. There’s also a promising reuse story for this “dual-side Javascript” scenario. Take form validation for example. Right now, it’s common to write the same logic in two different languages. In Javascript, you write a validator to give the user immediate feedback inside the browser, and in a language like PHP, you write a validator to ensure data integrity once the form data has been uploaded to the server. But once you switch to Javascript on the server, you just need to write a single validation routine at both ends. Under some styles of development, you can also arrange for a function in the browser to directly call another function inside the server; the code is smaller and simpler to write, not being bogged down in the technical details of transferring data across the network. Javascript performance has also moved forward in leaps and bounds, thanks to browser competition. Firefox’s Javascript engine, Spidermonkey, increased in speed by a factor of 20-40x . Safari’s underlying engine – Squirrelfish, aka Nitro – posted similarly impressive gains (see chart below), and Google Chrome came on the scene last year along with its highly optimized V8 Javascript engine, a very real contender in the “fastest Javasript engine” stakes. Server-side Javascript also dovetails nicely the new breed of NOSQL databases . Being web-native, these databases tend to communicate in HTTP, and in some cases JSON (JavaScript Object Notation) is the message format. Javascript libraries already include support for exactly that kind of interaction and programmers are familiar with them. Some of these NOSQL systems go beyond data persistence and into the zone of full-fledged Javascript application environments. Next page: Towards A Mature Server-Side Ecology Towards A Mature Server-Side Ecology In the simplest case, all you need to run server-side Javascript is a Javascript engine to plug a web server into. There are plenty of open source options here; the choice will come down to the language its implemented in, which affects the kind of environments it can run in, in addition to the usual factors like performance and level of support. Many Javascript platforms run on the Rhino engine for example, and Rhino is built in Java; this means that they can easily integrate with Java components. Thus, you can build the entire user-interface in Javascript – including a thin UI layer on the server – and still have it backed by a conventional enterprise Java stack. Helma is one prominent example of this architecture. Once equipped with a Javascript engine, you can write simple CGI scripts as you would with any other language – read the request, write the response. In practice, you’ll also want good library support to get anything useful done. Some environments do come with libraries, and you can also make use of existing libraries developed for browser-based Javascript. What will really make the biggest impact, though, is industry-wide standardisation. To that end, there’s a strong grassroots movement underway to converge on a complete API: CommonJS is defining an API for file access, networking, unit testing, and so on, as well as declaring how these components should be packaged for easy import. Multiple efforts are implementing the nascent spec in several major Javascript engines (Rhino, Spidermonkey, V8, EjScript). One open-source platform complying with CommonJS is Narwhal . It has considerable momentum and runs on several of the Javascript engines. CommonJS is raising the level of abstraction for server-side Javascript and allowing developers to use patterns familiar from high-level servers in other environments. Writing a web server no longer means hand-coding the lower-level cruft. Thus, you get a framework like Jack , which is similar to Python’s WSGI and Ruby’s Rack . Jack’s based on the idea of fine-grained “middleware” libraries, able to be composed and reused, and there’s a separate project, Nitro , to build such components for Jack. So Nitro builds on Jack, and Jack builds on CommonJS. This is an example of the ecosystem beginning to emerge in server-side Javascript. Use the Force! Building on Javascript’s Strengths In the previous section, I treated Javascript as just another language with all the usual server-side abstractions and the well-trodden path towards modularity and reuse. That’s not a bad thing at all, since we also benefit from the synergies of running the same language in the browser and the server mentioned earlier. Where things get really interesting, though, is with frameworks that exploit Javascript’s unique characteristics. It’s easy to get carried away with Javascript’s efficacy as a regular scripting language, so let’s remind ourselves that its roots are inside the browser. What the browser has, that a generic web framework doesn’t, is the Document Object Model (DOM). This is the browser’s model of the web page’s contents. What if we gave Javascript access to a DOM? DOM access is a key feature of the Jaxer environment. It gives scripts access to an entire server-side Firefox instance. Developers can therefore manipulate content as they would in a client-side application, and output the resulting page. This overcomes one of the objections with Ajax apps, which is “what if the user has turned off Javascript?”. The page still comes out as plain old HTML. That’s a lot of power, and the patterns for using this kind of thing are not yet fully understood, but it has plenty of potential for exploration. There are also potentially great benefits for testing client-side applications if you can simulate an entire browser instance. jQuery founder has been working on a product called env.js . Where Jaxer is essentially an entire Firefox instance, env.js is an attempt to build a simulation of the browser environment from scratch, under active development. It’s too early to say if its scope will stretch beyond testing and into the realm of server-side Javascript. DOM manipulation may be one characteristic thing about Javascript we can exploit, but there is also another (related) thing: event-handling. The language was more or less designed to respond to user events, so it has a great model for handling them that is familiar to any Javascript programmer worth their salt. For most server-side programmers, event-handling capability will yield a big fat “who gives a damn?”. Server-side scripts don’t sit around waiting for events to come in. They usually just look at an incoming request, deal with it, and send out a response. Then they exit as soon as they can. All good stuff, but there’s a completely different paradigm possible. It’s part of the trend towards the real-time web and the design pattern known as Comet. With Comet, the server holds on to the connection for a while, and continues to stream out information intermittently to the browser. The typical example is a two-way chat – as soon as one guy says something, the Comet server sends the message to the other guy. This is event-driven programming all over again, and compared to the usual suspects on the server, Javascript is well-placed to support this paradigm. A framework that’s taking advantage of all this is node.js , or just “Node” to its friends. Node is interesting because it requires scripts to explicitly close the connection; if they don’t close it, the connection just stays open and the script can handle events as they come in, usually by sending more information down to the browser. Less than a year old, the project already has a strong community and numerous derivative frameworks and applications . A similar model has been used in other frameworks, like Python’s twisted, but Javascript may turn out to offer a neater syntax for this kind of thing. By daring to be different and using javascript for what it’s best at, Node is shaping up as a framework to watch. The speed of Node apps is likely to give Javascript serious cred among server-side developers. Next page: The Cloud. Of Course, the Cloud! The Cloud. Of Course, the Cloud! No article on server trends could ignore the famous cloud. How does javascript work in virtualised computing environments? With a suitable engine, you can certainly set up an environment manually using amazon EC2, google app engine, or similar cloud hosts. However, you can do it easier than that with some of the other solutions around. Joyent took a big bet on Javascript when it acquired Reasonably Smart earlier this year; the host now offers a dead-simple runway to host Javascript scaleably. Aptana, the company behind the Jaxer platform described above, does likewise. Something’s Going on Here Before we get too excited about this trend, I should make one thing clear. Conspicuous by their absence are the real-world server-side Javascript apps. There don’t appear to be many sites running Javascript in the server at this time. Probably the most popular site powered by Javascript is EtherPad , the real-time collaborative notepad from AppJet, the company acquired by Google last week. This is a cautionary example, because AppJet launched as a cloud-based server-side Javascript framework before dropping it to concentrate on Etherpad. Aptana has also announced they are pulling back on Jaxer due to difficulties monetising it. Maybe this is more of a statement about cloud hosting revenue models than server-side Javascript, but it’s worth asking how other attempts to propagate server-side Javascript will fare. One of the critical success factors will be a comprehensive standard API; it’s a prerequisite to a vibrant ecosystem of interoperable components, and with a range of engines to run on. We now have the seeds of that with commonJS. Another factor is best practices for using the language; again, we’ve already discovered much of that as a side benefit of the Ajax revolution. Frameworks like Node, which build on Javascript’s unique characteristics, are building on those to establish best practices for server-side Javascript. Reuse of both knowledge and practices will give Javascript its best chance yet to stand up as a viable alternative to the usual server-side suspects. Although Javascript is a far better language than was previously assumed, its syntax still has plenty of quirks. If we restrict ourselves to the subset of Javascript found in all the major browsers today – and arguably it makes sense to do so – it’s arguably lacking certain features of other server-side languages. Those other languages are free to evolve autonomously; in contrast, Javascript’s fate is heavily determined by standards bodies, browser manufacturers, and the patterns around how users upgrade their browser. In this sense, the language’s strength – shipping with every browser – is also an Achilles’ Heel. That said, the language may well prove “good enough”. The benefits of “one language all the way down” may outweigh the cost in many cases. The will is stronger than ever to make server-side Javascript a reality, and it’s translating into a visible surge of activity in the web community. There’s the promise of code reuse and the possibility of cutting in half the number of programming languages involved in building a typical web application. Many smart developers have gravitated towards Javascript in recent years, as a means of producing world-class front-end apps. The attention has progressed our understanding of the language. Should server-side Javascript go mainstream, a third wave of Javascript developers will be joining the community and enriching the ecosystem. Photo by Dmitry Baranovskiy Discuss

guest javasc 1209 Server Side Javascript: Back With a Vengeance

Originally posted here:
Server-Side Javascript: Back With a Vengeance

It’s been a month since PayPal released its global payment APIs and the company is already primed to make some new announcements at today’s Le Web Conference. ReadWriteWeb caught up with VP of Product Development Osama Bedier for an early look at the company’s latest announcements. Sponsor We’ve already seen some 3rd party apps at the Innovate Conference last month, what’s in store for Le Web? We’re announcing a few new partnerships including one on Philips’ Net TV. As of Q1 users will see inline payment on their televisions. Others include Greendizer for seamless bill pay and invoicing, GetGiving for one touch charity donations and Training Course Booker for fast course purchasing. The IPTV integration is an interesting one and Philips doesn’t seem like an obvious partner. What other types of partnerships do you have in store for us? Honestly, we’re not only looking to partner with the big brands, PayPal also wants to enable innovation from the little guy. We know we’ll reach success when developers exceed our expectations. We’re looking to them to decide how it plays out. Without taking credit for other developers’ work, there are some great areas to innovate in voice authorization, real-time mobile applications, shipping, consumer apps and coupons. What does the future of PayPal look like? We’re launching an app store where consumers can check out new and convenient payment forms and merchants can purchase specific solutions. How is this connected to Le Web’s theme of the real-time web? We’re looking to provide real time payment options and support. As a global leader you’ve got every opportunity to dictate industry pricing on apps and merchant services. What is the percentage you’re going to take off merchant purchases from the app store?” We’re not sure of that yet. What we do know is that it’s going to be fair. We don’t want to take our cue from some of the other closed platforms. We’re offering visibility, easy integration of payment and smooth transactions. We’re not trying to be Apple, we want as much cross device, cross platform transactions as possible. We make our money off the transactions, not the applications. If the future of PayPal is about seamless app integration, then doesn’t that mean that in a perfect world PayPal is virtually indistinguishable from the app? Not exactly. We offer developers security authorization. Consumers want to know that their money is safe. There are lots of other providers, but developers choose us because our brand offers a sense of security. We’re leveraging the success of our payment brand and the developers are responding. For more info on Le Web, check out Social Media Club House Discuss

paypallogo PayPal Partnering with Philips for NetTV Monetization

See the original post:
PayPal Partnering with Philips for NetTV Monetization

Yesterday, during a meeting with a number of startups in Paris, we met up with the team behind the Green Watch project. Just like Google collects data from cell phones with GPS chips to aggregate real-time traffic information, this watch measures ozone levels and noise pollution. The watch connects wirelessly to the wearer’s mobile phone and sends updates to Citypulse , an open platform for receiving and storing environmental data. The Green Watch is currently only a prototype and not available for sale. Sponsor While it is still an early stage project and mostly meant as a proof of concept, the Green Watch does opens up interesting possibilities. Currently, environmental data is typically collected at a small number of locations. In Paris, for example, only 10 public sensors measure the air quality for the whole city. Crowdsourcing the measurement of environmental data could make it possible to create a real-time map of current ozone levels, for example. Through the Citypulse platform, the Green Watch project wants to make this data available for free. Citypulse was developed by the members of Citu , a group of French university labs, startups and government organizations. How Do You Convince People to Wear These? Of course, in order to turn this project into a commercial success, the developers would first have to persuade users to buy these devices for completely altruistic reasons. The prototype is also rather bulky . Also, as wrist watches are slowly being displaced by mobile phones, the developers will have to give users a good reason to wear a watch again. Air quality sensors, after all, don’t work very well in trouser pockets. Disclosure : The author met with the Green Watch team during a lunch that was sponsored by Cap Digital and Invest in France. Discuss

green watch logo dec09 The Green Watch: Crowdsourcing Air Quality Measurements

See the original post:
The Green Watch: Crowdsourcing Air Quality Measurements

BNO News , the news wire service famous for publishing breaking news stories through its @BreakingNews Twitter feed, just announced that it plans to launch a new news wire service early next year. In order to focus on this project, the BNO team will hand over the management of the @BreakingNews feed to MSNBC.com . According to BNO News, MSNBC will provide 24/7 breaking news headlines via BNO’s Twitter feed, which will include updates from the new BNO wire service and other news organizations. Sponsor The @BreakingNews feed currently has about 1.4 million subscribers. MSNBC’s own breaking news feed only has 41,000 followers and the main MSNBC account only has 27,000 followers. BNO News’ founder Michael van Poppel also announced that the company will focus on doing more original reporting. According to today’s press release, BNO News is also “in talks with other publishers.” Given that the company is now closely aligned with MSNBC, however, it remains to be seen if other publishers will be willing to work with BNO News. iPhone App Daniel E. Shipton, CEO of BitMethod, the developers of the push-enabled BNO News iPhone app, was less than pleased with today’s news. In a press release , Shipton states that he is “disappointed that BNO is choosing to leave behind their 1.4 million Twitter followers.” Indeed, it will be interesting to see how the @BreakingNews feed will change under the new management. The iPhone app will stay under BNO News’ control. It is not clear with it will continue to feature all the content from the MSNBC-managed @BreakingNews feed or just content from the new BNO news wire service. Is This a Good Thing? It was exciting to see the rise of BNO News over the last few months and today’s announcement comes as quite a surprise. BNO News was founded by Michael van Poppel, a 19-year old student in the Netherlands. Our own Marshall Kirkpatrick profiled the company in great detail earlier this year. We are not sure why BNO News didn’t just make a deal with MSNBC to syndicate its feed. Given that BNO is a small business, chances are that the company just didn’t have the resources to run the news feed and build a wire service at the same time. With a stable income stream from syndication and its iPhone app however, we have to wonder why BNO News would leave its 1.4 million Twitter followers in the hands of MSNBC. Discuss

bno msnbc logo nov09 @BreakingNews: MSNBC.com Will Now Manage Twitters Most Popular Breaking News Account

Go here to see the original:
@BreakingNews: MSNBC.com Will Now Manage Twitter’s Most Popular Breaking News Account