vote up -6 vote down star

In my software, I put in the following functionality that helps me debug the program:

  • By typing crashme into a text field I can crash the application deliberately. We use this to test the send-the-crashlog-back-to-us functionality.
  • It's also possible to enter debugging mode by writing debug on into a text field.

What hidden functionality do you add to your application? Things that unlike easter eggs, serve some kind of purpose?

flag
1  
Aha! George is back! – Ravi Oct 31 at 20:27
1  
@Alex: This seems like an odd thing to do. Why spend time working on a feature that you won't get paid for, and might get in trouble for? The user might love the idea of the app "phoning home", but they should at least know about it. – Lucas McCoy Oct 31 at 20:31
11  
And now your "question" has been perverted by you into nothing more than a barely-coherent, subjective and argumentative rant. – Bill the Lizard Oct 31 at 23:03
11  
Actually, I found his edit to be a much better question than both your original and your rant. – tvanfosson Oct 31 at 23:12
Having the application locally that you have complete control over to debug, seems enough to gather informations, no? If it's a web application, have a development server matching your live server... – Mike Gleason jr Couturier Nov 3 at 16:01

5 Answers

vote up 1 vote down

As long as you tell the user when he install the app - you can put about everything. (Most of the users don't read that text anyway when they install the app, but it makes you a better software publisher).

A screen counter is something I've used (counts each time the user open each screen) - to get usage analysis.

link|flag
vote up 1 vote down

I think this sort of thing is a big reason why games almost always have cheat codes. I've found that adding cheats can save a lot of time during debugging; and once they're in, they might as well stay in for production.

link|flag
vote up 0 vote down

Thinking of it.Can't be much specific though.

  • Storing users usual developing/ navigation habits.
  • "Stealing" the data (Synchronizing) from other similar softwares on users machine which serves the same purpose as yours.
link|flag
vote up 0 vote down

It's fine to have this kind of functionality - in the debug version. In the release version I would never ship any functionality that

  • is not documented
  • is a security hole or could cause unexpected behaviour

You certainly won't profit from this kind of added "functionality" but it can easily fire back when by accident or on purpose exposed.

link|flag
vote up -2 vote down

If I type a secret text in the main interface of one of my apps, I'll get a console that allows me to directly inspect and modify the database structure and data of my app.

link|flag
18  
That violates so many data protection best practices. And possibly a few laws, depending on the sector. – Marc Gravell Oct 31 at 20:39
I've never been known as a supporter of the law, if you catch my drift. And it's unlikely that I'll live the day that I'll see competent organizations enforcing these laws in my country. And data protection? From what? And from whom? From people that call me for assistance in plugging in an USB connector? Don't mind me considering even hashing passwords an overkill. – luvieere Oct 31 at 21:16
"secret text" rarely remains so. But like I say, it would depend on the purpose of the software. If it is a small utility app where all the data "belongs" to the user using it, then fine. But if the app is, for example, medical / security / education / legal / financial / etc... shudder. – Marc Gravell Oct 31 at 21:45
1  
@luvieere, LMAO, u sound like ur from jamaica. No1 here cares about what happens in IT. – Shawn Mclean Oct 31 at 22:47
1  
I have to thank you because it's attitudes like these that keep me working, since all that code needs to be rewritten once it leaves the borders of Eastern Europe. – Diago Nov 2 at 5:45
show 5 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.