What does Agile mean after all?

As you might already know, I work for JustEat, we are a start-up, a very big one, but still a start-up, I work on the Technology Department, I’m a team leader (I try to do my best at being one) and we have many many open positions.

Recently we had a few good developers coming in for an interview, and they all seem quite surprised that we do not adhere to any specific agile methodology.

We do not do SCRUM, we do not do KANBAN, we do not do regular stand-up.
We believe we are better than that. We are Agile to the extreme.

We use a mix of those methodologies, we use HipChat  and public rooms for all our conversations so that everyone can just jump into another team room, ask question or just keep an eye on what people are doing, we use JIRA to keep our workflow public within our company, everyone can go and have a look at each team board, and see what they are working on and what it’s coming up next in their list. imageimage

We also have a weekly report  that goes out every week to everyone and explain what the Tech department has been working on.

We love technology, we live with technology and use a lot of different technologies, we use a Microsoft stack (MVC/.NET/C#/SQL Server) on Amazon AWS, we use Java and DynamoDB for our Search Engine and Hadoop processing, we use Ruby for test and automation, we use Powershell for some throw away scripting, we use Coffeescript/CouchDB for our EPOS system, we use a ton of open source frameworks.

But, (there is always a but) we are also very business oriented, we do not use all those different technologies just because we like them, we do so because we believe that it’s always better to use the right tool for the job.

If you want to know more about our iper agile way of working, do not hesitate to reply to this post.

image

Continuous Learner #20

Testing

Test Better – http://bit.ly/10OgfmP
Phil Haack last week posted about testing, and the way it’s part of each modern developer’s life to write unit testing, and to help QA the software we are writing.

The way I see it, he’s completely right, I’m demanding more attention to unit and functional testing from me and the members of my team. It’s good to have dedicated QA resources that help a team of developers to keep high the attention toward quality, that help to coordinate the testing of new functionality being released by all the members of a team.

I like to get dedicated QA members involved early on in the process of analyzing new features, help figure out the weakness of the business requirements, and ultimately *help* developers test their code.

Tools

TeamCity plugin for Visual Studio – http://bit.ly/10Ohz9c
This is a tool that has existed for a long time and yesterday Maarten Balliauw blogged about it in the JetBrains blog.

It’s a super useful tool you can use to run build and automation testing on a Team city server rather than your local machine without having to commit to a source control first. neat!

///Just Eat is hiring!!! ///Have a look at the list of opened positions ///http://www.just-eat.com/jobs/ and contact me if you want ///to know more

 

using System.Net; using System.Net.Mail; var fromAddress = new MailAddress("you@gmail.com", "Your Name"); var toAddress = new MailAddress(string.Format("{0},{1}", "simone.basso", "just-eat.com"), "To Name"); const string fromPassword = "fromPassword"; const string subject = "I DO want to work at JustEat"; const string body = "The position you're interested in"; var smtp = new SmtpClient { Host = "smtp.gmail.com", Port = 587, EnableSsl = true, DeliveryMethod = SmtpDeliveryMethod.Network, UseDefaultCredentials = false, Credentials = new NetworkCredential(fromAddress.Address, fromPassword) }; using (var message = new MailMessage(fromAddress, toAddress){Subject = subject,Body = body}) { smtp.Send(message); }

Why I think YouView will fail

 

With tablets at £150, why anyone in their right mind would spend £250 to have a PVR that record something that can then be watched only on the TV, when you can stream/download(well done BBC) most of the (pre recorded on the cloud BBC iPlayer, ITV Player, 4oD and Demand 5) stuff anyway via streaming?

Sport is not on YouView, so this makes it a replacement for the £20 FreView tuner. If you want sport, you still need Sky or Virgin, so YouView is just another box you need to add to your TV.

“At the launch of YouView, chairman Lord Sugar‘s ambition for the service was to replace Freeview Devices.”

Most of the new TVs already have a digital receiver incorporated, so FreeView devices are already becoming obsolete, TVs are getting smarter and smarter too: with less than the cost of YouView, you can buy a Smart Tv with FreeView built in (http://amzn.to/T1Eda0), and with a bit more one with WiFi too (http://amzn.to/T1EUQG).

If YouView is to succeed, it needs to cost less than £100 and even at that price point, I would say it’s too much.

Telecommunications Operators and Broadcasters companies should focus on content, services and advertising, making everything available on the internet via APIs, so that they can still control “who” is watching “what” and monetize that, but should leave the “how” to hardware maker(xbox, playstation, apple tv) and the “where” and “when” to consumers.

YouView is trying to solve an old problem in an old way, trying to control too many things, and in my opinion, will fail.

With Google(http://bit.ly/T1F8aw), Microsoft (http://bit.ly/T1F4aI), Amazon (http://bit.ly/T1F9eJ), Hulu and Netflix (http://bit.ly/T1Fgab) starting to produce their own TV content, it’s quite clear that the TV market will be the next one to be hugely changed in the next 5 years. The future is 100% on the internet. PVRs are dead, FreeView is dead, cable TV is dead.

Sorry Lord Sugar.

Windows 8 – Reset Your PC using Chocolatey

I don’t want to do too much copy and paste, go and read this blog post from Maarten Balliauw

this is how I can reinstall most of the software I use with a couple of command line commands

@powershell -NoProfile -ExecutionPolicy unrestricted -Command “iex ((new-object net.webclient).DownloadString(‘http://bit.ly/psChocInstall’))” && SET PATH=%PATH%;%systemdrive%\chocolatey\bin

cinst All -source “http://www.myget.org/F/smnbsswin8″

Continuous Learner #18

ASP.NET – MVC

Cleaning up ASP.NET MVC Controllers – Paul Stovell
http://bit.ly/HP1umB

HTML5 drag and drop asynchronous multi file upload with ASP.NET WebAPI | StrathWeb
http://bit.ly/HGlRRf

Various

April 14th Links: ASP.NET, ASP.NET MVC, ASP.NET Web API and Visual Studio – ScottGu’s Blog
http://bit.ly/HGm1bz

Microjs: Fantastic Micro-Frameworks and Micro-Libraries for Fun and Profit!
http://bit.ly/HGmeve