|
1. The lounge is for the CodeProject community to discuss things of interest to the community, and as a place for the whole community to participate. It is, first and foremost, a respectful meeting and discussion area for those wishing to discuss the life of a Software developer.
The #1 rule is: Be respectful of others, of the site, and of the community as a whole.
2. Technical discussions are welcome, but if you need specific programming question answered please use Quick Answers[^], or to discussion your programming problem in depth use the programming forums[^]. We encourage technical discussion, but this is a general discussion forum, not a programming Q&A forum. Posts will be moved or deleted if they fit better elsewhere.
3. No sys-admin, networking, "how do I setup XYZ" questions. For those use the SysAdmin[^] or Hardware and Devices[^] forums.
4. No politics (including enviro-politics[^]), no sex, no religion. This is a community for software development. There are plenty of other sites that are far more appropriate for these discussions.
5. Nothing Not Safe For Work, nothing you would not want your wife/husband, your girlfriend/boyfriend, your mother or your kid sister seeing on your screen.
6. Any personal attacks, any spam, any advertising, any trolling, or any abuse of the rules will result in your account being removed.
7. Not everyone's first language is English. Be understanding.
Please respect the community and respect each other. We are of many cultures so remember that. Don't assume others understand you are joking, don't belittle anyone for taking offense or being thin skinned.
We are a community for software developers. Leave the egos at the door.
cheers,
Chris Maunder
The Code Project | Co-founder
Microsoft C++ MVP
modified 16-Sep-19 9:31am.
|
|
|
|
|
"Having login problems? Chat with us!"
[Log in to your account to start a chat]
I won't name names.
cheers
Chris Maunder
|
|
|
|
|
I use a number of websites like that - my mobile phone company site for example is so poor I changed my username to "IHateThisCr*p".
My bank (otherwise excellent) whose fraud detection department ring you up and refuse to prove they are my bank, but do want me to prove I am who they called.
Oh, and a large company I won't name whose "forgotten password" system ... needed you to log in to reset it ...
"I have no idea what I did, but I'm taking full credit for it." - ThisOldTony
"Common sense is so rare these days, it should be classified as a super power" - Random T-shirt
AntiTwitter: @DalekDave is now a follower!
|
|
|
|
|
Is it a bank?
Hints! We need hints!
TTFN - Kent
|
|
|
|
|
Bingo
cheers
Chris Maunder
|
|
|
|
|
It would have been a sucker bet.
TTFN - Kent
|
|
|
|
|
B.I.N.G.O. = Bank Internationalé Now Goon Operators?
Software Zen: delete this;
|
|
|
|
|
so frequently I find myself doing a proof of concept very short code that I am going to flush out later. Sometimes I even flush it. Pun intended.
Anyway I frequently use variables like the following.
astr - it is A String
Temp table
#ewww - because the data in the table is stinky at best.
and so forth. I always promise myself to clean it up before I actually use it anywhere. Sometimes I even do.
Does anyone else do this?
To err is human to really elephant it up you need a computer
|
|
|
|
|
rnbergren wrote: Does anyone else do this?
Nope.
rnbergren wrote: Sometimes I even do.
Because "sometimes" is "usually never."
|
|
|
|
|
Well said!
"I have no idea what I did, but I'm taking full credit for it." - ThisOldTony
"Common sense is so rare these days, it should be classified as a super power" - Random T-shirt
AntiTwitter: @DalekDave is now a follower!
|
|
|
|
|
I'm with Marc: never.
Why not? Because you will not find the time to go back and correct it - it will be permanent. That's why I "do it right" even for throwaway apps: parameterized queries, proper names, no default control names from Visual Studio, and so forth.
Do it right all the time, and you don't get into bad habits which enter production cycle.
"I have no idea what I did, but I'm taking full credit for it." - ThisOldTony
"Common sense is so rare these days, it should be classified as a super power" - Random T-shirt
AntiTwitter: @DalekDave is now a follower!
|
|
|
|
|
Nope - I write all code as if it is "production" code with proper naming, etc.
One reason is to not have two styles of coding or naming conventions; it's just easier!
- I would love to change the world, but they won’t give me the source code.
|
|
|
|
|
Never. Either write code properly, or don't write it at all.
Freedom is the freedom to say that two plus two make four. If that is granted, all else follows.
-- 6079 Smith W.
|
|
|
|
|
"We are what we repeatedly do. Excellence, then, is not an act, but a habit." - Aristotle
So no, I've made doing it "right" a habit and would not even think about naming something "astr" or "ewww"
|
|
|
|
|
I learned a long time ago that the temp code I'm planning on ditch often becomes the bedrock on which my applications teeter.
cheers
Chris Maunder
|
|
|
|
|
rnbergren wrote: Does anyone else do this?
I have been known to use slightly 'inappropriate' abbreviations for variable names. By inappropriate, I mean in human terms 'cause the compiler doesn't care. A common abbreviation in my line of business is ASS. It appears frequently in my code, and I've never been asked to change it.
Another example is when we used crystal reports. The application object was crAp!
The worst I've done is leave some salty comments for myself as they were well deserved.
TBH, for utility variables I always use the same ones, usually 2 or 3 letters, kind of a signature I suppose. For others, I've gotten a lot more descriptive over the last decade or so.
"Go forth into the source" - Neal Morse
"Hope is contagious"
|
|
|
|
|
If I'm writing "one-off" code I do this sometimes (e.g. a QA answer). Any code I might actually end up using for something I generally don't for three reasons: 1) harder to read for me, 2) you may never get back around to renaming everything, and 3) naming practice. Good naming is a skill just like any other.
|
|
|
|
|
Never ever do this in what you think is prototype code, it will and should come back and bite you when it goes into production.
Doing it right MUST become a habit, an automatic action that you don't even think about it. Name it correctly, format it correctly and use the most efficient and elegant structure you can think of, even in a throw away piece of code you don't ever expect to use.
Never underestimate the power of human stupidity -
RAH
I'm old. I know stuff - JSOP
|
|
|
|
|
rnbergren wrote: Anyway I frequently use variables like the following.
astr - it is A String Sytems vs. Apps hungarian, and they both wrong in update code; we read Joel[^] and do not use it, since VB6.
I will use a descriptive name. "CurrentInput", "DescText". Never will I use a form of hungarian, no matter whether sys or apps. Don't care about company's guideluines either. I write good code, despite guidelines.
We use a descriptive name. No need to include type, one can get that by hovering the mouse.
rnbergren wrote: Does anyone else do this? I hope not, that's a sign of sickness.
Bastard Programmer from Hell
"If you just follow the bacon Eddy, wherever it leads you, then you won't have to think about politics." -- Some Bell.
|
|
|
|
|
No, never. I learned log ago that you have to be careful when proving a concept because once you do then you are asked to put in production. You need to have a good reason why it can't be or else it will be. Therefore, always build in a fatal weakness that will require revision before you can deploy it. The problem I often had was they want a quick PoC and even quicker deployment and there is never enough time for a shiny, finished product.
"They have a consciousness, they have a life, they have a soul! Damn you! Let the rabbits wear glasses! Save our brothers! Can I get an amen?"
|
|
|
|
|
No time to write crap code.
It was only in wine that he laid down no limit for himself, but he did not allow himself to be confused by it.
― Confucian Analects: Rules of Confucius about his food
|
|
|
|
|
I don't crap code, but if I did: Fred, Barney, Wilma, Betty, Pebbles, BamBam, Dino
I could go on...
Software Zen: delete this;
|
|
|
|
|
I lived there[^] - or as I call it, my Eleven Year Sentence.
All those jokes - like what has 500 legs and 12 teeth? Two Hundred Fifty West Virginians - well, they're true. "Deliverance", light. Hunting, Guns, Canning - that's pretty much it.
And, from my own observations: If someone ever tells you to "stick something where the sun don't shine" - just ship it to WV.
Ravings en masse^ |
---|
"The difference between genius and stupidity is that genius has its limits." - Albert Einstein | "If you are searching for perfection in others, then you seek disappointment. If you seek perfection in yourself, then you will find failure." - Balboos HaGadol Mar 2010 |
|
|
|
|
|
IMHO, a post like this has no place in the Lounge. It serves no constructive purpose at all.
|
|
|
|
|
Slacker007 wrote: It serves no constructive purpose at all SO ?For that matter, as an ironic note, you reply servers no constructive purpose, either.
Perhaps,
IF in your vast experiences, you can add your views of your time spent there?
ELSE, that old saying can well be said: "Physician, heal thyself!"
Ravings en masse^ |
---|
"The difference between genius and stupidity is that genius has its limits." - Albert Einstein | "If you are searching for perfection in others, then you seek disappointment. If you seek perfection in yourself, then you will find failure." - Balboos HaGadol Mar 2010 |
|
|
|
|
|