The Humble Indie Bundle (Pague o quanto quiser por 5 incríveis jogos Indie)

Ajude Desenvolvedores de Jogos Indie e ajude a Caridade! Cinco incríveis jogos indie pelo preço que você quiser pagar!

Imagem de Amostra do You Tube

Wolfire Games está realizando uma inovativa promoção pague-o-que-você-quiser. Compre World of GooAquiariaGishLugaru HDPenumbra e Ajude a Eletronic Frontier Foundation e Child’s Play. Normalmente os cinco jogos custariam $80, mas até o Terça, dia 11/05/2010, você pode comprar os 5 jogos pagando somente o que você quiser, e ainda ajudar a Child’s Play charity for kids, e a Electronic Frontier Foundation!.

Os jogos são livres de DRM e funcionam em Mac, Windows e Linux. E a parte mais legal ainda é que você pode escolher como a doação será feita, escolhendo como os desenvolvedores e as intituições irão dividir a sua doação!

Até agora, eles já arrecadaram aproximadamente $369,623. Wow, Isso é realmente impressionamente!

Você também pode ajudar e comprar o seu Pacote de Jogos! Eu já comprei o meu, lembre-se a promoção só vai até dia 11/5, então corrão para não perder a chance!

  • Twitter
  • Facebook
  • LinkedIn
  • StumbleUpon
  • Google Reader
  • Orkut
  • Digg
  • Share/Bookmark

Boas práticas de Desenvolvimento em Delphi – Source Control

Nick Hodges, da Embarcadeiro começou uma série de tutoriais sobre Delphi Development Pretty Good Practices. O seu último se refere a “Source Control”, um recurso que nenhum desenvolvedor deveria viver sem. Se você acha que não precisa ou que não teria vantagem em utilizar (mesmo sendo um desenvolver sozinho), você se engana muito! Leia o artigo abaixo e mude sua opinião!

Delphi Development Pretty Good Practices #2 – Source Control

Okay, so for this first installment, I’ll be illustrating one of my core principles for developing applications:  All my code of any importance at all goes under source control.  All of it.

I’m all by myself – why should I use source control?

We ask about source control use on the annual survey, and a surprisingly large percentage of you are not using source control at all. That as a bit of a surprise.  If you are working on a team of any size, using source control is a no brainer.  But even if you are working alone, using source control is a really good idea.

Why, you might ask?  Well, there are a number of good reasons:

  1. It’s good to be in the habit. Sure, you may be working alone.  But in the future you may not be.  Or your “weekend hobby project” might turn into a popular project with many developers.  If anything like that happens, being in the habit of using source code control will stand you in good stead.
  2. It protects your code. Since your code is stored in on a server apart from your development machine, you have a backup. And then, you can even backup the code on the server.  Sure, you can zip it all up any time you want, but you don’t get all the other benefits I’m listing here.
  3. It can save your butt. Sometimes, you might accidently delete something.  You might make mistakes and change code that you didn’t want changed.  You might start off on some crazy idea when you are feeling a bit saucy, and then regret it.  Source control can save you from all of these by making it a piece of cake to revert to any previous state.  It’s like a really powerful “undo” feature.
  4. It allows you to “turn back time”. Say you are a shareware author. You like to release updates and new versions.  And say you get a support request from a customer that has a bug while using a version that is two major releases old. Source control lets you easily recreate the code base for that exact release and debug the problem that the user is seeing. Mais >
  • Twitter
  • Facebook
  • LinkedIn
  • StumbleUpon
  • Google Reader
  • Orkut
  • Digg
  • Share/Bookmark