User Bernard Dy - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T14:16:14Zhttp://stackoverflow.com/feeds/user/1577http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/423823/whats-your-favorite-programmer-ignorance-pet-peeve/428424#42842418Answer by Bernard Dy for What's your favorite "programmer ignorance" pet peeve?Bernard Dy2009-01-09T15:11:29Z2009-12-03T14:40:11Z<p><strong>Ignorance of thoroughness</strong></p>
<p>"That isn't a condition I should account for, the user should never do that".</p>
<p>"I just write new code, other parts of the development cycle aren't my job (analysis, testing, planning, documenting)".</p>
<p>"I just get the job done. I don't worry about the fact that someone will have to continue to maintain this code, or that business rules can change".</p>
<p>How did I come to think developers are ignorant of thoroughness? Because I've made plenty of those mistakes myself!</p>
http://stackoverflow.com/questions/1837280/oracle-case-requires-an-into/1837358#18373582Answer by Bernard Dy for ORACLE- CASE requires an INTO? Bernard Dy2009-12-03T02:58:08Z2009-12-03T03:07:55Z<p>You have wrapped your SQL in a begin/end block, which makes it a PL-SQL statement. In PL-SQL, Oracle is expecting a place to put the result set from the SQL. That's the source of your ORA-06550 error. You'll want a PL-SQL variable declared to hold the result of the query via the INTO.</p>
<p>But the SELECT statement is still a little weird. The way you have it, there's no point in having a real table "tableOfBeans" in the FROM clause. </p>
<p>Did you want something like this?</p>
<pre><code>declare var_type VARCHAR2(10);
begin
select case tableOfBeans.beanType
when 'B' then 'Beans'
when 'L' then 'Legumes'
end
into var_type
from tableOfBeans;
end;
</code></pre>
<p>Actually, that would generate an error too if you had more than one row in tableOfBeans. Maybe what you wanted was to retrieve items from tableOfBeans where tableOfBeans.beanType = var_type. In that case you'd still need a way to store the result set. Sorry if I'm not understanding what you're trying to do. A little more detail will help.</p>
http://stackoverflow.com/questions/1830455/how-to-reduce-maintenance-costs/1834391#18343911Answer by Bernard Dy for How to reduce maintenance costsBernard Dy2009-12-02T17:11:44Z2009-12-02T17:23:28Z<p>You've just described the situation common in most IT shops!</p>
<h2>Is there a Manager in the House?</h2>
<p>There have already been some good suggestions here. I agree with those that have said that it's a management issue. You can try all you want, but it's management that needs to understand the situation and management that has the power to set the direction for the company. Management has to decide that there will be a development freeze, or that addressing the sins of the past is a higher priority than the project of the moment, or that a rewrite is needed, or that a better approach is justified, or that perhaps some people need to have their keyboards taken away. </p>
<p>Right now, better coding is needed, certainly, but communication is the skill needed most. If management is beginning to feel the pain of past mistakes, perhaps it is ready to listen but then again, the managers might be the same ones who got you into this mess by making the common mistake of <em>assuming software development is easy</em>. So you have your work cut out for you. </p>
<h2>We're on our Own</h2>
<p>If management doesn't change, then try some of what many of us in IT-land have to do: </p>
<ul>
<li>Take incremental steps and sneak in refactorings gradually when a project to rework the code isn't authorized.</li>
<li>Utilize the benefits of some specialization. You appear to have several developers at your disposal? They're not going to like it, but to gain some efficiency, a few of them are going to have to be assigned as primary resources on the support end, especially if you are in a position where management won't change and expects you to do support and projects at the same time. Support work <em>will</em> interfere with projects and projects <em>will</em> interfere with support; the difference is that the project can be managed while support is unpredictable. You have to isolate them to reduce the productivity drain caused by the frequent context switches. If you really want to be as fair to your devs as possible about it, then let people rotate between support and projects when appropriate. Take a good look at your team's skills; everyone will say they want greenfield projects, but certainly some are better at it and others may be better at working with existing code.</li>
<li>Learn from your mistakes. It appears your shop authorized lots of custom apps but didn't do a great job with business analysis and testing, leading to the support load you have now. If you can't completely correct the existing code base, at least you can try to do a better job of requirements and testing (and development) to limit the increase in support new stuff will bring. </li>
<li>Get users involved. Users will be valuable if your shop doesn't have access to formal business analysis and testing resources. They can also assist with communicating to management about wanting things to be better.</li>
<li>Unpaid overtime. I know, just reading that phrase sucks. Based on your description, I have to assume you're already quite familiar with the concept. But if you're happy where you are working and want to stay, you may have to make what is hoped are temporary sacrifices. Example: in my shop we used to do builds manually through our IDE. But I invested time on the side to research the build script language that comes with our development tool and although we still don't have continuous integration with automated testing, the process of making and migrating builds is considerably less involved; a monkey could do it. It saves time and makes the task easily transferable to any team member regardless of their skill level (as Totophil said: automate). Those are the kinds of things you can do to help the team save time. Creating a team wiki or better user documentation are other examples of things that reduce support or the hassle involved in doing it (although management doesn't appreciate these things and might not like use of regular working hours for it). Ask yourself: is the company one you want to stick with? Do you like your team and your users? If so, some sacrifices may be worthwhile. If not, then start looking.</li>
</ul>
<p>Several of the other suggestions are great and Totophil's post is awesome, but it sounds like you're already in a deep hole and working for questionable management; it would be difficult to do all the best practice recommendations. </p>
http://stackoverflow.com/questions/1804995/how-to-deal-with-rapid-project-spec-changes-in-a-tight-deadline-scenario/1809097#18090973Answer by Bernard Dy for How to deal with rapid project spec changes in a tight deadline scenario?Bernard Dy2009-11-27T14:29:28Z2009-11-27T14:29:28Z<p>It's true that no matter what you do, you're human and you'll make mistakes or miss things. That said, regular changes to your requirements are most often the result of either poor requirements or poor develoment process, or both.</p>
<p><strong>Some Design Up Front?</strong></p>
<p>Business analysis is regularly given the short shrift by developers, project managers, etc. Most devs just want to start hacking away on day 1, and most PMs love to let them: "Wow, we can move from the project initiation phase to the construction phase in 1 day without any of that ridiculous business analysis stuff taking up time! That'll look great for completion bonuses!" But remember that the PM's primary job is to keep the project under control (on time and on budget) ...not necessarily to make users happy and certainly not to make developers happy. That's not to say they are totally heartless; good PMs will achieve their goals by enforcing scope control and fostering communication, both of which are helpful.</p>
<p>But taking the time to really think about what's needed and stepping through possible scenarios can make a serious difference in the issues you're dealing with. </p>
<ul>
<li>If you have made an effort to do thorough business analysis and you're still ending up with last minute changes, then perhaps your problem is another classic challenge: disengaged users. Your subject matter experts are your top weapon in dealing with and identifying those corner cases. If you have users that are not engaged in the analysis process, get better subject matter experts.</li>
<li>It's also possible users are disengaged because they are too busy doing their regular work. In that case it's a management issue and they need to be given instructions that project participation is part of their jobs; that's hard sometimes because often the same management that told you to "get it done yesterday" is the same group of knuckleheads that is expecting the project to happen magically with no hiccups and without any resources (they are common in that they don't understand the complexities of custom software development and assume it is easy). If management is clueless and won't change...well, you have to either work overtime and deal with the issues you've described, or get a new job. </li>
</ul>
<p><strong>Can Agile Help?</strong></p>
<p>It'd sure be nice if your users would tell you about those corner cases earlier rather than later, right? This is related to what Toby Hede was discussing above. Perhaps a methodology that gets the software in front of the users as soon as possible, even in an unpolished state, can trigger feedback sooner. That was one of the inspirations for all the agile concepts. The creators were tired of dealing with the issues you describe and they also realized that if management and users weren't going to change, then maybe the development could. It's still development, but there's an emphasis on getting early feedback through a variety of techniques (have subject matter experts co-located with the dev team, getting rough prototypes into user hands sooner, pair programming to captalize on developer experience, and lots more). All this is because it's understood we're human and we're going to miss things.</p>
<p>Finally, you mention you're trying to make the system extensible to help with the rapid changes, but how? Are you separating presentation logic from business logic? Are you encapsulating business logic in objects, partitioned appropriately to minimize dependencies and coupling? All of those things are tough to do and can take time to plan and build.</p>
<p>You're not alone, by the way. Lots (maybe all) shops have these challenges.</p>
http://stackoverflow.com/questions/1650666/powerbuilder-determine-a-data-windows-primary-key/1651976#16519761Answer by Bernard Dy for PowerBuilder: Determine a data windows primary keyBernard Dy2009-10-30T19:58:06Z2009-10-30T20:05:31Z<p>There doesn't appear to be a single property that you can grab via dot notation or the describe function that isolates the primary key, at least I didn't see one. I could be totally wrong here and there's a better way to do it. </p>
<p>But I think if you're trying to do this in Powerscript, you'll have to scan the columns in the datawindow and check the "columnname.key" property to determine the columns in the key. </p>
<p>I expect this is also dependent on you having defined the primary key columns in the datawindow update properties; typically these aren't defined by the developer for read-only datawindows.</p>
<p>If someone has a better way, please post. </p>
http://stackoverflow.com/questions/1575474/powerbuilder-beginner-question/1576645#15766456Answer by Bernard Dy for Powerbuilder beginner questionBernard Dy2009-10-16T07:34:02Z2009-10-29T15:52:37Z<p>Hmmm, if I could learn PB all over again, how would I do it?</p>
<ol>
<li>Come to PB with a healthy understanding first of SQL. If your app is hitting a database, PB is very good at that, but not understanding SQL well when I was younger lead to poor decisions. Well written SQL will help you with application partitioning, performance, and centralization of logic. I have found that good use of SQL can significantly reduce the amount of "crufty cobble-on PB client code" that tends to congregate around datawindow code commonly written by less experienced developers.</li>
<li>With a good understanding of SQL you should have a healthy understanding of result sets. That's a big part of appreciating the power of the datawindow and datastores. In PB, the datawindow is <strong>everything</strong>. I'd start by using the datawindow simply as a report maker to drive home how it retrieves data, and the power it gives you in graphic presentation control.</li>
<li>Develop knowledge of PB script. It's not that hard, but it has some quirks. Learn how to manipulate the datawindow with PB script, how to make it interact with other controls.</li>
<li>Sybase offers PB classes. Take one of the fast track courses to get an overview of how to do things in the tool. If your company wants you to learn this but is too cheap to pay for professional training...you may want to reconsider where you work. Investing in employees is what separates the good employers from the mediocre ones.</li>
<li>If you understand object orientation, that will help you write a potentially better and easier-to-maintain app. Even if you're in the position of only being able to cobble-on to an existing app (welcome to my world) then future enhancements to that app can be designed to introduce better approaches and fewer complications. You can't fix the old stuff overnight, but you can make sure the new stuff generates less production support than the old stuff; if you can increase the functionality of the app while keeping support needs level, you've won at least a little victory under difficult circumstances.</li>
<li>If you're inheriting an existing app, doing production support is a good way to get broad, if random, exposure to the app. If it's a legacy PB app with any age on it, it's probably poorly designed, poorly written, poorly documented, and not very object oriented. Build experience with the app and gain familiarity with it before attempting refactorings; there are probably all kinds of hidden dependencies in it.
If you are fortunate enough to be starting from scratch, then make a prototype and learn from it what a mess it is to maintain a pile of crap where code is splayed through GUI objects. Be careful to avoid coding around the datawindow's built-in support for concurrency control, and to avoid tons of embedded SQL in the script. Then throw the prototype away and consolidate business logic in PB non-visual objects or even database stored procedures; you want to put reusable business logic in the most centralized place, and that place is not in a button or custom event on a window.</li>
</ol>
<p>Books and Tutorials</p>
<ul>
<li>There aren't many PB books being published these days, but if you're doing classic PB, there is a good <a href="http://rads.stackoverflow.com/amzn/click/0672325004" rel="nofollow">PB9 Advanced Client/Server Development</a> book by Bruce Armstrong. </li>
<li>The PB manuals have lots of information, and if you are using the Powerbuilder Foundation Class, it has been open sourced. You can get it at Sybase CodeExchange.</li>
<li>There are some good sites out there. Fellow Stackoverflow user Terry Voth has a <a href="http://www.techno-kitten.com/" rel="nofollow">great one</a>. I also like Ken Howe's <a href="http://www.pbdr.com" rel="nofollow">PB tips site</a>. </li>
<li>There are some PB newsgroups with good information. And other resources too; Google will help you a lot here.</li>
<li>PowerBuilder Developer's Journal doesn't have as many classic PB tips and examples as it used to but most of the old content I believe may be available online.</li>
</ul>
<p>Random Things</p>
<ul>
<li>I'm hoping your shop uses source control. If not, figure it out and get that going. Then look into PB ORCA Script. I started using this to automate our builds and it's a time saver. There's a chapter in the PB9 Advanced Client/Server book on it, but also some good examples at CodeExchange.</li>
<li>If you're new and under the gun, you'll probably find yourself many times thinking, "I can get that data easy by slapping in an embedded SQL statement here". Be careful about that; quick hit, single row, retrieve-only queries can be ok, but misuse of embedded SQL in your app makes it hard to maintain. </li>
<li>If you're new and under the gun, you'll probably find yourself many times thinking, "I can get that data to look the way I want by throwing in some code in the retrieve row or retrieve end events". Be careful about that too. Retrieve row logic will hurt performance. I've seen retrieve end logic often used to do additional processing and add data to the datawindow; this is much better done as part of the datawindow's original SQL statement rather than by adding more cruft to the datawindow control scripts. </li>
<li>It's not all just about learning PB. Learn your company's business and understand the processes your system is supposed to help with. Sometimes the solution's complexity isn't fixed by automating it with a system, but by getting the authorized parties to recognize that a process can be simplified on the business side first. </li>
<li>People get so worked up about new languages; I'm not an exception and really want to do more with .Net and others. But it is your commitment as a developer that makes the difference; you can do great things in any language, be it PB or VB or Delphi or .Net. Your constituents don't really know or care what the app is written in if it helps them get work done.</li>
</ul>
http://stackoverflow.com/questions/1588732/maintaining-traceability-up-to-date-as-project-evolves/1597160#15971603Answer by Bernard Dy for Maintaining traceability up-to-date as project evolvesBernard Dy2009-10-20T20:39:05Z2009-10-20T20:39:05Z<p>I think traceability is one of the toughest things to manage in requirements, second to making sure the requirements are correct in the first place. In my experience, <strong>the best traceability tool is a human being</strong>.</p>
<p>I don't have any panaceas; just some tips for what's helped me in the past.</p>
<ul>
<li>Keep documents in a central area where everyone can get to them easily. I don't care if it's Sharepoint, a wiki, or a network drive (although I like something that provides version control if possible). Keep it in one place and market the heck out of it so everyone knows to go there for answers rather than using old copies or interrupting the developers.</li>
<li>If you have a central point of contact for managing the artifacts or functional groupings of them, that helps a lot. Someone that understands them and the issues will know where to go, what to update and if there are dependencies that need to be carried forward. </li>
<li>The custodian of the artifacts needs to be committed to them and to keeping them up to date. A year after I set up some requirements documents on a site, I still kept them up to date. I know most developers would dread having to do that, but a year after that, I'm STILL benefiting from looking back at those to see how a functional requirement changed over time.</li>
<li>Not required, but it is helpful to quickly identify changes over time: use the document processor's version tracking if it has it. If not, I would at least include a change log for the document or simply mark new text with a reference to the version number.</li>
<li>I have tried to put dependency references into my artifacts in the past, such as references to other documents or artifacts, but found that they either became outdated or were hard to keep track of and therefore were often not updated. Discipline can overcome this, but most of us have too much to do, eh? So I think that building in cross references between documents/artifacts is where I would like a tool or some yet to be released free requirements management utility to do the job :)</li>
</ul>
http://stackoverflow.com/questions/1529498/going-to-jump-into-powerbuilder-any-advice/1532127#15321272Answer by Bernard Dy for Going to jump into Powerbuilder. Any advice.Bernard Dy2009-10-07T14:48:39Z2009-10-07T14:48:39Z<p>You are correct that PB can be very productive. And ultimately, the strategy of "using what works" is fine. That said, there are some things to be careful about.</p>
<ul>
<li>It sounds like you are developing a brand new app. If so, that's good, you have a chance to build it as a .Net PB app from day 1. PB 12 is to C# what PB classic is to C++, so your reason (wanting a higher level entry point to .Net) to use PB is in line with what I think Sybase was intending.</li>
<li>Do it as part of an overall solution including the .Net integration you speak of, and definitely take advantage of the educational opportunity to learn C#. As a developer, .Net is better for future opportunities than PB.</li>
<li>Will you need to readily hire additional resources to help develop/support the application? It may be harder to find PB resources than .Net resources, given the language popularity trends. Note that I make no claims on the quality of the developers: PB or .Net, you'll find journeymen, hacks and stalwarts in both ranks.</li>
<li>I wouldn't worry too much about Datawindow .Net if you decide to use it. I don't expect it will go away but someone more familiar with it may be able to provide more context here. </li>
</ul>
<p>Finally, although there is some value in having a higher level entry point to C#, you will have to learn something about both PB and C#. Managing two tools introduces more overhead than managing one tool. For typical CRUD apps where you are building a lot of data entry and reporting, the productivity gains and strong relationship between SQL and the datawindow may be worth it - that's up to you to decide. </p>
http://stackoverflow.com/questions/1498056/powerbuilder-10-5-sample-web-services-client-application0PowerBuilder 10.5 sample web services client applicationBernard Dy2009-09-30T13:17:20Z2009-09-30T13:17:20Z
<p>I am trying to get the PowerBuilder 10.5.2 sample web services application running. I can open the workspace just fine, and I can see the objects and even run the app but I get a "bad runtime function reference" error when I try to invoke the service.</p>
<p>I believe I have installed all the requisite parts:</p>
<ul>
<li>PB 10.5.2</li>
<li>.Net 2.0 SDK</li>
</ul>
<p>Web searches reveal that some of the example web servies used by the sample app are defunct, but I can't imagine all of them are, so the error seems to indicate a problem with the setup or objects, not the third party services. </p>
<p>I can see pbwsclient105.pbd in the workspace list and in the Sybase shared objects directory. However, as a test, I tried to use the alternative method the documentation listed for setting up the PB proxy to the .Net web service objects (by importing PB extensions from pbwsclient105.pbx) and got a "invalid dll error" so perhaps my web service libraries are corrupted? </p>
<p>What else could be missing? Path settings? Incorrect .Net 2.0 SDK installation?</p>
http://stackoverflow.com/questions/1342370/opensource-project-management-software/1343478#13434781Answer by Bernard Dy for Opensource Project Management softwareBernard Dy2009-08-27T20:03:55Z2009-08-27T20:03:55Z<p><a href="http://stackoverflow.com/questions/1063266/what-are-the-free-alternatives-to-basecamp-for-managing-projects">Similar question</a> was asked on SO. You might find some good answers there.</p>
http://stackoverflow.com/questions/1341144/does-isnull-guard-against-references-to-null-objects/1342048#13420482Answer by Bernard Dy for Does IsNull() guard against references to null objects?Bernard Dy2009-08-27T16:00:14Z2009-08-27T16:00:14Z<p>I think these are different kinds of NULL.
One is a variable with the value of NULL
The other is an object that doesn't exist or hasn't been instantiated.</p>
<p>In the second case, you may want to use isValid().</p>
http://stackoverflow.com/questions/1334875/good-cheap-fast-which-two/1335516#13355160Answer by Bernard Dy for Good / Cheap / Fast: Which two?Bernard Dy2009-08-26T15:20:30Z2009-08-26T15:20:30Z<p>Like everyone else, I would prefer good and fast. </p>
<p>But I think that's too simplistic. Picking cheap will eventually undercut the good in the long run. Sometimes, choosing fast can too, as innovation should involve a more higher degree of prototyping and testing.</p>
<p>Of course, each project has different conditions (and levels of complexity, innovation, and economies of scale), but generally I think that truly good really means you can't be too cheap or too fast.</p>
http://stackoverflow.com/questions/1228066/xp-vs-traditional-good-project-management/1239771#12397710Answer by Bernard Dy for XP vs Traditional good project managementBernard Dy2009-08-06T15:44:16Z2009-08-06T15:44:16Z<p>I like some of the things the agile approaches do, but I also value some of the things traditional approaches do. </p>
<p>Both can work, as can a mixture of the two, which is what I find works best for my team now. I have implemented incremental development and it really helps us; iterative development is a little harder and we're still working on that. However, we have a variety of constituents, and many of our stakeholders (and PMs) prefer traditional artifacts and milestones. So we have to keep finding the right balance.</p>
<p>I have also found that even more important than the methodology is the people implementing it. Good people find a way to do good work and get things done regardless of the methodology, although certainly the methodology can have effects on efficiency (and morale :) ). Poorly aligned resources, however, can use the finest methodology and find ways to deliver poor results.</p>
http://stackoverflow.com/questions/1112030/how-do-you-deal-with-bad-programmers/1113792#11137925Answer by Bernard Dy for How do you deal with bad programmers?Bernard Dy2009-07-11T14:19:09Z2009-07-11T19:04:54Z<p>Not an enviable position to be in, but you are not alone. Corporate IT shops are filled with situations just like yours. There's no easy answer, but you of course have to get some work done. Possibilities:</p>
<ul>
<li>Use the truth. As someone else mentioned, don't fall prey to trying to cover up the situation to managers and project managers. Tell the truth about the situation. If they care, they'll help you change the situation by restaffing. If they don't, or if they're the type that can't hack the truth, then they'll drop you or you'll know you're in the wrong place; either way, you might end up leaving.</li>
<li>If you end up staying and have to work with what you have, I can't fault many of the previous suggestions: standards, code reviews, pair programming, monitoring etc. Those will help some, but I think your problem, as another poster noted, isn't just with inexperienced programmers, it's also with experienced bad programmers who don't want to change. In this case, I would look at two things: </li>
</ul>
<p>1) If you have time, do a good job with the <strong>requirements and technical specifications</strong>. I have used detailed tech docs to serve almost as instruction manuals on what objects and methods are needed for a task. I have used this technique before and once things were set up, it greatly aided my ability to execute by enabling me to delegate some tasks to less experienced developers. Delegate is a key word here; you will burn out if you try to do everything yourself; but guidance through the specifications, assuming the developers adhere reasonably well to it, is one way to leverage your vision.</p>
<p><strong>PROS</strong>: You are setting the direction for the structure of the code. The internals of what a lesser coder delivers might still be ugly, but it's compartmentalized ugly, which will make future refactoring (probably by you) significantly more accessible. Combining this with code reviews will help. </p>
<p><strong>CONS</strong>: This takes time, and lots of it, since you are going to have to be the writer of all this instruction, and of course time is usually a constrained resource. That, and of course that most developers don't like writing documentation. People might criticise this approach as too manual, or too much like waterfall, or doesn't respect the developer's initiative, or whatever, but more advanced methodologies require a more advanced class of developer, and it sounds like you're short on those.</p>
<p>2) <strong>Application partitioning and project management</strong>. If you can, try and move the resources to places where you can take advantage of any skills they do have. For example, you mention some PL/SQL knowledge. In a database application, certainly there will be some back-end needs? Move people where they can work best, and vice versa: structure the application so that some of the logic is centralized in stored procedures. Let your javascript, html, and python guys work on the front end. The web kids on the site here will give me flak for suggesting logic in the PL/SQL, but whether it's in an application server object or a database server object, I think we ultimately agree that centralization of logic is compatible with DRY principles and forms a more workable foundation for support and refactoring, of which it appears there will be much need. Careful distribution of tasks also lets you give tasks that need more initiative to the better developers and the better defined, less fungible items to those that need stricter direction.</p>
<p><hr /></p>
<p>Just as a good developer can salvage some of a poorly managed project with weak business requirements, a bad developer can compromise a well managed project with good business requirements. So, your project sounds like it's going to deliver an app that's got plenty of logic spread disparately through GUI objects and lots of quirky scripting and poor error handling...in other words: the average corporate app! But if you can't deliver a world-class app, with some effort you can try to prevent total disaster.</p>
<p>It is tough when you are the only one on the team with a passion for quality, but the best you can do is explain your position. If you're lucky, one or two will catch on and join the cause. If you're unlucky, all of them will ignite and you'll have a team of prima donnas that only want to do design and won't do support. But seriously, you'll probably end up with the typical corporate app. If you're getting paid well, then remember that it could be worse.</p>
http://stackoverflow.com/questions/1100632/understanding-programming-for-non-programmers/1100695#11006950Answer by Bernard Dy for Understanding programming for non-programmers?Bernard Dy2009-07-08T21:43:47Z2009-07-08T21:43:47Z<p>I love the previous suggestions. I might also recommend books on requirements and estimation by Steve McConnell and Karl Weigers, and others, that really speak to the challenges and value of the up-front parts of software projects, the parts that always get the short shrift when unenlightened management gets their hands on what they think are "easy" software projects.</p>
http://stackoverflow.com/questions/1099133/what-is-the-point-of-a-build-server/1099229#10992290Answer by Bernard Dy for What is the point of a "Build Server"?Bernard Dy2009-07-08T16:40:28Z2009-07-08T16:40:28Z<p>You are right that developers could build on their own machines. </p>
<p>But these are some of the things our build server buys us, and we're hardly sophisticated build makers: </p>
<ul>
<li>Version control issues (some have been mentioned in earlier responses)</li>
<li>Efficiency. Devs don't have to stop to make builds locally. They can kick it off on the server and get on to the next task. If builds are large, then that is even more time the dev's machine is not occupied. For those doing continuous integration and automated testing, even better.</li>
<li>Centralization. Our build machine has scripts that make the build, distribute it to UAT environments, and even to production staging. Keeping them in one place reduces the hassle of keeping them in sync. </li>
<li>Security. We don't do much special here, but I'm sure a sysadmin can make it such that production migration tools can only be accessed on a build server by certain authorized entities.</li>
</ul>
http://stackoverflow.com/questions/1095290/it-evaluating-quality-of-coding-how-do-we-know-whats-good/1098229#10982292Answer by Bernard Dy for IT evaluating quality of coding - how do we know what's good?Bernard Dy2009-07-08T13:53:01Z2009-07-08T13:53:01Z<p>I think it's great you're trying to evaluate something that typically isn't evaluated. There have been some good answers above already. You've already shown yourself to be more mature in dealing with software by accepting that since you don't practice development personally, you can't assume that writing software is easy. </p>
<p>Do you know a developer whose work you trust? Perhaps have that person be a part of the evaluation process. </p>
http://stackoverflow.com/questions/1068215/closing-currently-opened-window-while-change-in-another-window-in-power-builder/1071991#10719912Answer by Bernard Dy for Closing currently opened window while change in another window in power builderBernard Dy2009-07-02T00:36:13Z2009-07-02T00:36:13Z<p>It might help to know a little more about what you are trying to accomplish. Are both windows open at the same time on a single user's screen? Or is one window available to one user and the second being viewed by a separate user waiting to see the updates?</p>
<p>By themselves, the datawindows won't retrieve automatically on updates to the underlying table. In fact, if you have configured the datawindows properly, the update rules should provide some concurrency protection and will not let the second dw update the same table after the first updates. DataWindow2 will sense there's been a change and will try to prevent clobbering the DataWindow1's changes. But again, this may not be an issue if in your context the second window is read-only.</p>
<p>You could have the first window finish its update then check for the existence of the second window and have it retrieve. Even better, use a non-visual business object as an intermediate handler (and also keep nasty cross-window communication code out of the GUI). When the first window's update is successful have it tell the business object it's done, and the object can then tell the second window to retrieve. But there would need to be more done if your second window is updateable.</p>
http://stackoverflow.com/questions/1003134/is-contributing-internal-tools-to-open-source-worth-the-effort/1003884#10038841Answer by Bernard Dy for Is contributing internal tools to open source worth the effort?Bernard Dy2009-06-16T20:53:07Z2009-06-16T20:53:07Z<p>I think you've done a good job of identifying the pros and cons. And it's probably true that the pros will outweigh the cons. If no one likes the utilities and does nothing to or with them, then you've lost nothing really; bad code shouldn't scare experienced developers (most experienced developers, especially PB ones, have seen their share of legacy code). If even one person benefits, then you get the karma, eh?</p>
<p>If you proceed to submit your tools to the open source community, do as you have here, and admit up front that the tools are not polished. This may deter some from even looking at them, however, if they are at least functional and can be easily modified, then they still represent a head-start for any prospective beneficiaries. As a PB user myself, I would be curious to know more about free tools that can give us an edge in productivity.</p>
<p>Have you looked into Sybase CodeExchange? They have some open-source PB things there, including the PowerBuilder Foundation Class framework. </p>
http://stackoverflow.com/questions/258548/what-is-the-most-important-thing-you-werent-taught-in-school/998563#9985630Answer by Bernard Dy for What is the most important thing you weren't taught in school?Bernard Dy2009-06-15T21:46:01Z2009-06-15T21:46:01Z<p>It is better to be lucky than good.</p>
http://stackoverflow.com/questions/901320/anti-joel-test/904880#90488017Answer by Bernard Dy for Anti-Joel TestBernard Dy2009-05-24T23:42:45Z2009-05-25T14:56:38Z<p>Is unpaid overtime a regular occurrence, and nothing is being done to change that?</p>
<p>EDIT: StefanB notes that some overtime might be normal. I don't disagree with this, and in fact when I'm passionate about a project, I will give it of my own volition. But I've been in places where some is expected of the employee and is programmed into the schedule; I'm not talking about emergency situations that require occasional heroics, I'm talking about sizable chunks of time that show disrespect for the employee's personal time. </p>
<p>The law states you are paid for a standard work week of 40 hours. Dedicated employees have no problem giving a little extra, but when it's chronic or counted on by management, and that same management isn't comparably dedicated to offering comp time or overtime pay, that's when people are justified in being upset about it.</p>
http://stackoverflow.com/questions/869775/are-there-too-many-abstractions/869813#8698131Answer by Bernard Dy for Are there too many abstractions?Bernard Dy2009-05-15T17:02:58Z2009-05-15T17:02:58Z<p>The problem isn't that programmers are lazy. Laziness is sometimes a useful trait in a programmer. It's that programmers aren't thorough, or that they're inexperienced, or don't always know the nuances of the business, the problem, the software, the techniques, the interfaces to other systems, or how to communicate. </p>
http://stackoverflow.com/questions/839707/any-code-quality-tool-for-pl-sql/839793#8397931Answer by Bernard Dy for Any code quality tool for pl/sql?Bernard Dy2009-05-08T13:28:09Z2009-05-08T13:45:15Z<p>Quest's TOAD is a good tool for working with PL/SQL, but it is not free or lightweight. It provides formatting, color support in the editor for keywords, intellisense, and it will also provide analysis tools to rate the code's cyclomatic complexity, best practices, and more. </p>
http://stackoverflow.com/questions/828399/are-oracle-stored-procedures-faster-than-in-line-sql-for-a-microsoft-net-applicat/829525#8295250Answer by Bernard Dy for Are Oracle stored procedures faster than in line SQL for a Microsoft.NET application ?Bernard Dy2009-05-06T13:23:37Z2009-05-06T13:23:37Z<p><a href="http://stackoverflow.com/questions/828399/are-oracle-stored-procedures-faster-than-in-line-sql-for-a-microsoft-net-applicat/828418#828418">Jon Limjap</a> said: "All other answers are speculative."</p>
<p>There's much truth to this statement. There are so many factors: how's the DB server set up? How's the network speed/reliability? How's the SQL? How's the PL/SQL? I could write really slow SQL and/or PL/SQL if I wanted to (and have, inadvertently, on past projects!). So if you can, try both out.</p>
http://stackoverflow.com/questions/825385/porting-a-powerbuilder-application-to-net/826060#8260602Answer by Bernard Dy for Porting a PowerBuilder Application to .NETBernard Dy2009-05-05T17:33:32Z2009-05-05T17:38:45Z<p>I think gbjbaanb gave you a good answer above. </p>
<p>Some other questions worth considering:</p>
<ul>
<li>Is this PB10 app a new, well-written PB10 app, or was it one made in 1998 in PB4, then gradually converted to PB10 over the years? A well-written app should have some decent segregation between the business logic and the GUI, and you should be able to systematically port your code to .Net. At least, it should be a lot easier than if this is a legacy PB app, in which case it would be likely that you'd have tons of logic buried in buttons, datawindows, menus, and who knows what else. Not impossible, but more difficult to rework.</li>
<li>How well is the app running? If it's OK and stable, and doesn't need a lot of new features, then maybe it doesn't need rewriting. Or, as gbjbaanb said, you can put .Net wrappers around some pieces and then expose the functionality you need without a full rewrite. If, on the other hand, your app is cantankerous, nasty, not really satisfying business needs, and is making your users inefficient, then you might have a case for rewriting, or perhaps some serious refactoring and then some enhancements. There are PB guys serving sentences, er, I mean, making a living with the second scenario. </li>
</ul>
<p>I'm not against rewrites if the software is exceedingly poor and is negatively affecting the company's business, but even then gradual adjustments and improvements are a less risky way to achieve system evolution. </p>
<p>Also, don't bail on this thread until after Terry Voth posts. He's on StackOverflow and is one of the top PB guys.</p>
http://stackoverflow.com/questions/813190/what-was-the-most-difficult-concept-you-had-to-grasp-throughout-your-entire-softw/813271#8132711Answer by Bernard Dy for What was the most difficult concept you had to grasp throughout your entire software development career?Bernard Dy2009-05-01T21:02:16Z2009-05-01T21:02:16Z<p>Polymorphism was the trickiest of the big three OO concepts for me. </p>
<p>The literature I see today does a better job of illustrating it through analogy than when I first was learning it. Then moving on to the differences between inclusional and operational polymorphism. They seem simple now, but at the time, I didn't get it.</p>
http://stackoverflow.com/questions/802906/do-you-attend-user-group-meetings/802942#8029426Answer by Bernard Dy for Do you attend user group meetings?Bernard Dy2009-04-29T15:36:51Z2009-04-29T15:36:51Z<p>Yes. </p>
<p>Benefits include: </p>
<ul>
<li>networking with real people in your local area</li>
<li>free (if lightweight) training</li>
<li>exposure to new tools or techniques</li>
<li>sometimes a chance to interface with commercial product representatives</li>
</ul>
http://stackoverflow.com/questions/759061/powerbuilder-international-currency-formatting2PowerBuilder: international currency formattingBernard Dy2009-04-17T04:45:46Z2009-04-19T09:19:46Z
<h2>Background</h2>
<p>Users in the US were our application's initial user base, but this has expanded to the point that Canadian, British, and Scandinavian users also use the system. </p>
<p>The PowerBuilder datawindow didn't like the Scandinavian currency format with decimals and periods transposed (###.###,00). When we tried to set the format in the datawindow, it complained, saying something about the format not being valid.</p>
<p>We cannot be the only people that have encountered this problem, but I didn't see a lot about this topic on the usual searches over the Internet. </p>
<h2>Our current workaround</h2>
<p>For the time being, one of the developers found a workaround, by having the login script change the currency format on the Windows operating system for the session, and putting "[currency]" in the datawindow field's format property to pick up the operating system's format. </p>
<p>This seems to work but is a less than optimal solution in my opinion for a number of reasons. </p>
<ol>
<li>It requires that our Scandinavian users run the app via a different icon than the other users. I shouldn't have to go into details about how rotten it is to have two different icons to log into the app, plus the maintenance hassles of having each one kick off a different format script.</li>
<li>It only solves the issue of currency formatting for a single currency in a user session. As our app becomes more international, we may need to be able to display a variety of currencies in the same report. </li>
</ol>
<h2>There must be a better way</h2>
<p>I'm fairly certain someone will tell me I need to read Spolsky's unicode essay. But aside from that, I'm interested in details on a slicker PowerBuilder solution, if anyone has one. Thanks in advance.</p>
http://stackoverflow.com/questions/20981/how-many-lines-of-code-is-too-many/687288#6872880Answer by Bernard Dy for How many lines of code is too many?Bernard Dy2009-03-26T19:46:04Z2009-03-26T19:46:04Z<p>It depends. I'm totally with you on trying to keep script lengths reasonable, but have seen SQL statements of more than 100-200 lines written with sound technique; sometimes you have a lot of joins and conditions to include. </p>
<p>If you had asked what's worse: a 300 line function that was well formatted, sensibly constructed, and logical, or a 150 line function that was full of hard-coded values, needless looping structures, poorly named variables, serpentine GOTOs, no formatting, double negative logic, a lack of short circuit operators, and tons of ELSEIFs rather than case statements, well, that would be easier to answer.</p>
http://stackoverflow.com/questions/605619/powerbuilder-for-a-java-programmer/615336#6153362Answer by Bernard Dy for PowerBuilder for a Java programmer?Bernard Dy2009-03-05T15:43:40Z2009-03-14T14:06:55Z<p>Yes, any competent programmer, and even some not-so-competent ones can use PowerBuilder. However, I'd disagree somewhat with one of the earlier answers. It is different from pre-.Net VB in one sense: it supports true OO principles (encapsulation, inheritance, and inclusional polymorphism [but not operational polymorphism via Interfaces as in C# and Java]). Classic VB didn't have inheritance.</p>
<p>Other answers from Paul Lefebvre and Colin Pickard are correct: PB is still alive though more of a niche language than it used to be, and Sybase is indeed moving it in the direction of .Net. As for source control, PB supports some interfaces (we use it with VSS) but I'm thankful for Colin's nice set of links, which may come in handy in the future. </p>
<p>Frameworks: the most common one is the PowerBuilder Foundation Class, which Sybase open sourced years ago. </p>
<p>My caveat to you is this: I said above that people didn't have to be particularly strong programmers to write PB. PB is easy to learn but takes time to master. It had its biggest days in the late 90's, when anyone that could double-click on a Windows icon to launch an app thought they were a programmer. Despite truly supporting OO, most PB apps are not well designed and well written apps. They're usually total hack jobs (a criticism of the lack of experienced developers and immaturity of software development at the time, not of PB itself, which is still a very powerful tool). If you are inheriting a code base that is truly easy to maintain and manage, you are in the minority. PB code can nearly always be classified as legacy code. The good news is that there is plenty of challenge. You will have many quick-win refactoring opportunities and plenty of production support. </p>
http://stackoverflow.com/questions/1416387/why-separate-maintenance-work-from-development-work/1416411#1416411Comment by Bernard Dy on Why separate maintenance work from development work?Bernard Dy2009-12-03T15:38:52Z2009-12-03T15:38:52ZI think this probably happens a lot in a lot of shops. But what people don't talk about is how crappy the consultant-delivered software is, and the additional irony that the consultant was paid better than the people that end up fixing the app.http://stackoverflow.com/questions/1529498/going-to-jump-into-powerbuilder-any-advice/1532127#1532127Comment by Bernard Dy on Going to jump into Powerbuilder. Any advice.Bernard Dy2009-10-07T17:36:12Z2009-10-07T17:36:12ZI didn't mean that PB .Net is better than PB classic; your project can succeed with either. I meant that .Net is probably going to look better on your resume and make you accessible to more jobs than PB will; PB is a great tool, but doesn't seem to be used as often on new development. Perhaps that's not a huge concern in your situation if you've got a healthy supply of clients that don't push development choices on you (and good for you if that's the case!). http://stackoverflow.com/questions/1377184/how-to-hand-over-a-project-systematically/1377664#1377664Comment by Bernard Dy on How to hand over a project systematically?Bernard Dy2009-09-10T13:18:58Z2009-09-10T13:18:58ZGetting the original team to stick around and document their work? I'm with you, but really, good luck with that.http://stackoverflow.com/questions/901320/anti-joel-test/904880#904880Comment by Bernard Dy on Anti-Joel TestBernard Dy2009-09-01T15:28:29Z2009-09-01T15:28:29Z@Mike Arthur: I wish, for myself and so many others dealing with corporate America, that it was that simple.http://stackoverflow.com/questions/1244434/whats-the-api-of-powerobject-or-windowobject-classesComment by Bernard Dy on What's the API of PowerObject or WindowObject classes?Bernard Dy2009-08-07T14:46:45Z2009-08-07T14:46:45ZThis seems similar to your earlier Spy ++ question. Terry made references in the selected answer there to the control arrays used by PB objects; they can give you runtime information on instantiated objects. Or are you wanting something different?http://stackoverflow.com/questions/167498/what-is-less-annoying-no-source-code-documentation-or-bad-code-documentationComment by Bernard Dy on What is less annoying: no source code documentation or bad code documentation?Bernard Dy2009-08-05T20:42:02Z2009-08-05T20:42:02ZIt's important to note that documentation, like code, is a living thing. The code and documentation may have had a harmonious relationship at one time, but like people, over time they can grow apart. http://stackoverflow.com/questions/1210024/how-big-is-big-development-team/1210274#1210274Comment by Bernard Dy on How big is BIG? (development Team)Bernard Dy2009-08-03T04:40:00Z2009-08-03T04:40:00ZThey're like anyone else: there are good ones and bad ones. And admittedly, I think there are probably more bad ones than good ones. I've worked with plenty like the ones you describe: glorified MS Outlook jockeys. The rare good ones I've worked with did a lot though to help the devs understand the business and to stand up for the needs of the users (and the developers too). http://stackoverflow.com/questions/1210024/how-big-is-big-development-team/1210274#1210274Comment by Bernard Dy on How big is BIG? (development Team)Bernard Dy2009-07-31T19:36:14Z2009-07-31T19:36:14ZNo business analysts? Better add a few resources for all the support you'll have later.http://stackoverflow.com/questions/1160970/develop-for-the-customer-or-for-a-manager/1160980#1160980Comment by Bernard Dy on Develop for the customer, or for a manager?Bernard Dy2009-07-25T14:31:01Z2009-07-25T14:31:01ZYou have time for another job besides StackOverflow? What are you, cloned?http://stackoverflow.com/questions/1157935/what-should-be-the-differences-between-the-team-leader-and-team-member-in-a-inter/1158588#1158588Comment by Bernard Dy on What should be the differences between the team leader and team member in a internal development team? Bernard Dy2009-07-21T13:12:33Z2009-07-21T13:12:33Z"Work shy" LOL, good one. +1 for entropy too; a perfect way to describe code sloppily hacked together.http://stackoverflow.com/questions/1144703/what-should-the-penalty-response-for-missing-a-deadline-be/1144723#1144723Comment by Bernard Dy on What should the penalty/response for missing a deadline be?Bernard Dy2009-07-17T19:14:12Z2009-07-17T19:14:12ZI agree that "when it's done" isn't always an acceptable term, but the guys that made DOOM said "It'll be done when it's done," and now most of those guys are millionaires. http://stackoverflow.com/questions/1129442/polymorphismComment by Bernard Dy on polymorphismBernard Dy2009-07-15T04:44:46Z2009-07-15T04:44:46ZIf you need to write a term paper on it, chances are that somewhere in your course textbooks you'll find some information. Also, google and wikipedia will get you lots of data without having to actually learn it.http://stackoverflow.com/questions/1103888/powerbuilder-equivalent-to-debug-writeline/1103967#1103967Comment by Bernard Dy on PowerBuilder equivalent to Debug.WriteLine?Bernard Dy2009-07-09T14:32:06Z2009-07-09T14:32:06ZSome clarity: Typical legacy PB apps are notoriously hard to put into an automated unit test harness. A differently designed PB app would be far more amenable to such constructs. http://stackoverflow.com/questions/1095290/it-evaluating-quality-of-coding-how-do-we-know-whats-good/1098328#1098328Comment by Bernard Dy on IT evaluating quality of coding - how do we know what's good?Bernard Dy2009-07-08T15:22:06Z2009-07-08T15:22:06ZThings like application partitioning, caliber of exception handling, and general design. Those are things you can't always tell just from selected pieces of legible script. Note that I'm not disagreeing with you, just adding some context.http://stackoverflow.com/questions/1095290/it-evaluating-quality-of-coding-how-do-we-know-whats-good/1098328#1098328Comment by Bernard Dy on IT evaluating quality of coding - how do we know what's good?Bernard Dy2009-07-08T14:23:01Z2009-07-08T14:23:01ZGood advice overall, but I'd be careful about assuming that just because code is readable that it's great. There are many things beyond code legibility that affect its maintenance factor, although I'd agree that code you can understand is a heck of a lot better than code you can't.