Most of the time I write very maintainable and well design code(even at home). However I just wrote db + msword report app for my friend and code is really bad - lots of code duplication and development speed driven db design - I just dont care at all about this code. I just wanted to finish it fast and go to sleep.
I came up with some faster development tricks .. for example i needed to persist map in db, but instead of what i do at work(most of the time you need to create new table for that with two fields and then map it to ORM) I just created new field in table with properties seperated by semicolon. Development speed of that was like 5 much as fast. Even parsing at client side took almost no time to write. it can be refactored later, but i feel that it wont.
What faster development shortcuts do you recommend when deadline is close?