RE: [WebDNA] WebDNA glitch, no response required ...
This WebDNA talk-list message is from 2009
It keeps the original formatting.
numero = 104218
interpreted = N
texte = Who knows is usually a pretty good answer ;) ;) ;)I have been programming for over 12 years now. I started with learningWebDNA, I think with 2.6. Started on Macs/WebStar, then Apache, then BeOS,which led to managing servers, learning Unix, Mac OS X Server (Starting with1.0, gaaaak!), Linux, Windows (Starting with 1.x or 2.x, believe it or not)from 1995-Vista. I've managed XServes, home built Xeon Linux servers,Fedora, Ubuntu, Linux Mint and more lately have developed in C#/.NET for anopen source project. And that's when pesky Oral Surgery doesn't get in theway ;) ;) ;)If there's one thing I've learned over the years, it's this: Sometimes youjust don't know.For instance, I wrote a bunch of code in C# for that open source project.The lead developer decided to switch to a plugin format, so I had to reworkall my code to work as a plugin.Suddenly, thisint anesthetist = Convert.ToInt32(comboAnesthetist.SelectedItem.ToString());has to be converted tolong anesthetist = Convert.ToInt64(comboAnesthetist.SelectedItem.ToString();which of course bombs horribly in the debugger. Who knows why? Probably aVS2008 bug, who the hell knows. So after 2 weeks of trying (I'm stubborn), Ifinally have to give up and throw the whole mess in a try-catchtry {anesthetist =Convert.ToInt64(comboAnesthetist.SelectItem.ToString()); }catch { anesthetist = "";}It bugs the hell outta me for a while, but I get over it and move on. I'vebeen using the code *I* wrote for well over a year and *I* still manage tomake it bomb, and that's after *I* thought *I* squished all the bugs a longtime ago.So that either makes me a crappy programmer (probably) or perhaps it'ssomething beyond my control (VS2008/.NET/who the hell knows what) or maybeit's just the way the electrons flow through the wires.Computing has gotten vastly more complex than it was 12 years ago. Sometimesit's gonna take awhile before enough people report the same error in thesame way before it becomes apparent why the logic is wrong. Sometimes younever figure it out. Sorry for the long lecture, God knows you don't need it from the likes of me;)But sometimes you can't let it get to you - you just shrug your shouldersand crack a Corona. Tomorrow's another day...Cheers (and Merry Christmas BTW)WillSubject: Re: [WebDNA] WebDNA glitch, no response required ...> We are dealing a lot of loose variables > with Ken's general post, so the > issues could be anywhere really.Where for example?Sincerely,Kenneth Gromewww.KenGrome.com---------------------------------------------------------This message is sent to you because you are subscribed tothe mailing list
.To unsubscribe, E-mail to: archives: http://mail.webdna.us/list/talk@webdna.usold archives: http://dev.webdna.us/TalkListArchive/Bug Reporting: http://forum.webdna.us/eucabb.html?page=topics&category=288
Associated Messages, from the most recent to the oldest:
|
- Re: [WebDNA] WebDNA glitch, no response required ... (Kenneth Grome 2009)
- Re: [WebDNA] WebDNA glitch, no response required ... (Matthew Bohne 2009)
- Re: [WebDNA] WebDNA glitch, no response required ... (Kenneth Grome 2009)
- Re: [WebDNA] WebDNA glitch, no response required ... (Thierry Almy 2009)
- Re: [WebDNA] WebDNA glitch, no response required ... (Patrick McCormick 2009)
- Re: [WebDNA] WebDNA glitch, no response required ... (Kenneth Grome 2009)
- Re: [WebDNA] WebDNA glitch, no response required ... (Govinda 2009)
- Re: [WebDNA] WebDNA glitch, no response required ... (Donovan Brooke 2009)
- Re: [WebDNA] WebDNA glitch, no response required ... (Donovan Brooke 2009)
- Re: [WebDNA] WebDNA glitch, no response required ... (Donovan Brooke 2009)
- Re: [WebDNA] WebDNA glitch, no response required ... (Patrick McCormick 2009)
- Re: [WebDNA] WebDNA glitch, no response required ... (america1007@aol.com 2009)
- Re: [WebDNA] WebDNA glitch, no response required ... (america1007@aol.com 2009)
- RE: [WebDNA] WebDNA glitch, no response required ... ("Will Starck" 2009)
- Re: [WebDNA] WebDNA glitch, no response required ... (Kenneth Grome 2009)
- Re: [WebDNA] WebDNA glitch, no response required ... (Donovan Brooke 2009)
- Re: [WebDNA] WebDNA glitch, no response required ... (Kenneth Grome 2009)
- RE: [WebDNA] WebDNA glitch, no response required ... ("Terry Nair" 2009)
- Re: [WebDNA] WebDNA glitch, no response required ... (Kenneth Grome 2009)
- Re: [WebDNA] WebDNA glitch, no response required ... (Govinda 2009)
|
Who knows is usually a pretty good answer ;) ;) ;)I have been programming for over 12 years now. I started with learningWebDNA, I think with 2.6. Started on Macs/WebStar, then Apache, then BeOS,which led to managing servers, learning Unix, Mac OS X Server (Starting with1.0, gaaaak!), Linux, Windows (Starting with 1.x or 2.x, believe it or not)from 1995-Vista. I've managed XServes, home built Xeon Linux servers,Fedora, Ubuntu, Linux Mint and more lately have developed in C#/.NET for anopen source project. And that's when pesky Oral Surgery doesn't get in theway ;) ;) ;)If there's one thing I've learned over the years, it's this: Sometimes youjust don't know.For instance, I wrote a bunch of code in C# for that open source project.The lead developer decided to switch to a plugin format, so I had to reworkall my code to work as a plugin.Suddenly, thisint anesthetist = Convert.ToInt32(comboAnesthetist.SelectedItem.ToString());has to be converted tolong anesthetist = Convert.ToInt64(comboAnesthetist.SelectedItem.ToString();which of course bombs horribly in the debugger. Who knows why? Probably aVS2008 bug, who the hell knows. So after 2 weeks of trying (I'm stubborn), Ifinally have to give up and throw the whole mess in a try-catchtry {anesthetist =Convert.ToInt64(comboAnesthetist.SelectItem.ToString()); }catch { anesthetist = "";}It bugs the hell outta me for a while, but I get over it and move on. I'vebeen using the code *I* wrote for well over a year and *I* still manage tomake it bomb, and that's after *I* thought *I* squished all the bugs a longtime ago.So that either makes me a crappy programmer (probably) or perhaps it'ssomething beyond my control (VS2008/.NET/who the hell knows what) or maybeit's just the way the electrons flow through the wires.Computing has gotten vastly more complex than it was 12 years ago. Sometimesit's gonna take awhile before enough people report the same error in thesame way before it becomes apparent why the logic is wrong. Sometimes younever figure it out. Sorry for the long lecture, God knows you don't need it from the likes of me;)But sometimes you can't let it get to you - you just shrug your shouldersand crack a Corona. Tomorrow's another day...Cheers (and Merry Christmas BTW)WillSubject: Re: [WebDNA] WebDNA glitch, no response required ...> We are dealing a lot of loose variables > with Ken's general post, so the > issues could be anywhere really.Where for example?Sincerely,Kenneth Gromewww.KenGrome.com---------------------------------------------------------This message is sent to you because you are subscribed tothe mailing list .To unsubscribe, E-mail to: archives: http://mail.webdna.us/list/talk@webdna.usold archives: http://dev.webdna.us/TalkListArchive/Bug Reporting: http://forum.webdna.us/eucabb.html?page=topics&category=288
"Will Starck"
DOWNLOAD WEBDNA NOW!
Top Articles:
Talk List
The WebDNA community talk-list is the best place to get some help: several hundred extremely proficient programmers with an excellent knowledge of WebDNA and an excellent spirit will deliver all the tips and tricks you can imagine...
Related Readings:
REPLACE and/or APPEND (2002)
FRAMES and CART tags problem??!? (1999)
Browsername (1998)
OFF-TOPIC: Lending investors ... (2002)
2 databases problem (1997)
Feature Request (2003)
Problems passing [SKU] with $Replace in 2.0 (1997)
Shownext - am i missing something? (1998)
Num Sort Descending (2004)
Sum of Quantities (1997)
RE: Help name our technology! (1997)
Server Takes 2 Hours to Boot UP (2004)
Off Topic: Help Wanted (1997)
rotating thumbnails (1997)
[WebDNA] Search Site (2009)
What am I doing wrong? --GOT IT! (2000)
[SearchString] problem with [search] context (1997)
Cart sweeper (2000)
Assigning new CART number (1997)
Question re: FlushDatabases (1997)