User Bill - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T12:57:05Z http://stackoverflow.com/feeds/user/14547 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1670390/are-you-sure-you-want-to-print-x-pages-dialog-before-actually-printing-for/1683787#1683787 2 Answer by Bill for "Are you sure you want to print X pages?" dialog before actually printing... (for any app) Bill 2009-11-05T21:32:07Z 2009-11-05T21:32:07Z <p>One of the things you could do which is also kind of round about, is pause the print spooler, print your job, get a page count, and then prompt the user for confirmation. If the user okays the job, then release the spooler. I don't have the API calls handy but I have manipulated spooler queues quite easily. </p> <p>Of course the downside to this idea is if the queue is server-based and potential permission issues could be afoot.</p> <p>Another alternative would be to force the output to a WMF or EMF file and tally the page count that way, then hand it off to the spooler. This is similar to your notion of outputting it to a PDF, but uses a native approach. (This is essentially what applications typically do(did) for doing previews-- rendering the job in a metafile format which is then displayed on screen or spooled to the printer)</p> <p>Unfortunately there is no way to get the page count ahead of rendering the print job unless you are intimately aware of the contents and can judge it, so you are forced to at least go through the motions of printing. </p> <p>Hope this helps.</p> http://stackoverflow.com/questions/1314726/how-do-you-make-a-code-block-in-fogbugz-cases-tickets/1325956#1325956 2 Answer by Bill for How do you make a code block in fogbugz Cases (tickets)? Bill 2009-08-25T03:50:07Z 2009-08-25T03:50:07Z <p>No. I wish there was.</p> http://stackoverflow.com/questions/1186498/monthly-bill-payment-workflow/1190162#1190162 3 Answer by Bill for Monthly Bill Payment Workflow Bill 2009-07-27T19:34:37Z 2009-07-27T19:34:37Z <p>Bill payment seems like a simple topic, but can broaden once you start considering the details.</p> <p>The bill payment process at its simplest involves two data entities: an account (aka customer, client, etc.), and a ledger. The ledger records credits and debits to the customer's account. Debits are the invoices, and any document which increases a customer's balance. Credits are the payments and any document which decreases a customer's balance. There are exceptions to this, but lets keep it simple.</p> <p>The sum of credits and debits are the customer's account balance. </p> <p>One part of your system should be generating charges be they subscriptions, merchandise purchases, etc.</p> <p>An example table structure is shown below:</p> <pre><code>Customer Table Id Name Balance 1 Smith 1000.00 2 Jones 0.00 Ledger Table Id CustomerId Type Description Amount 1 1 D Services for June '09 1000.00 2 2 D Subscription for Jul '09 50.00 3 2 C Payment MC ****2908 -50.00 </code></pre> <p>Of course this is about as simple as you might want to get. </p> <p>Here are some other things to consider.</p> <p>Triggers on the tables can be used to keep the customer's balance in sync. If you need to know what payments are applied to what invoices then you need an additional table.</p> <p>Most larger and not-so-large accounting systems maintain two parts for this process: documents and ledgers.</p> <p>The documents consist of entities such as Invoices, Credit Memos, Sales Receipts, Refunds, and Payments. There are others.</p> <p>Depending on the document the ledger is impacted in different ways.</p> <p>Invoices: charge a customer but do not collect money, it is due to you so there is only one ledger entry- a debit for the invoice amount</p> <p>Credit Memos: credit a customer but do not refund the money, you owe it back so there is only one ledger entry- a credit for the credit memo amount</p> <p>Sales Receipts: charge a customer and collect money, the net effect is to have zero balance due from this activity and so there are two ledger entries: a debit for the amount of the sale and a credit for the amount of the payment netting to zero.</p> <p>Payments: record the collection of money from a customer therefore only one ledger entry- a credit for the payment amount.</p> <p>I hope this addresses your quesetion. If not let me know as I have written about a dozen custom accounting systems throughout the years.</p> http://stackoverflow.com/questions/1070287/vb-net-label-vs-picturebox/1077451#1077451 0 Answer by Bill for VB.NET: label vs picturebox Bill 2009-07-03T01:29:46Z 2009-07-03T01:29:46Z <p>I don't think you can compare them because fundamentally they are so different--VB6 controls versus .net framework controls that is. </p> <p>Take a look at the class hierarchy in .net and you will see that both picturebox and label derive from the same set of classes.</p> <p>While I didn't itemize the classes' properties and methods, I would guess that the only difference between a Label and a Picturebox is that there is a text property for a Label box thus alleviating you of rendering your own text if there were no Label control and all you had was a PictureBox.</p> <p>Both a Label and a PictureBox can be assigned an Image object or work in conjunction with an ImageList. So if all you are looking to do is display images then the PictureBox should be just fine (not to mention the fact that it clearly conveys the control's purpose in life: PictureBox:Icons::Label:Text).</p> http://stackoverflow.com/questions/787444/why-cant-i-share-types-with-an-assembly-loaded-dynamically-at-runtime-into-the-s/787511#787511 0 Answer by Bill for Why can't I share types with an assembly loaded dynamically at runtime into the same load context? Bill 2009-04-24T20:44:02Z 2009-04-24T20:44:02Z <p>This is just a quick response, so there may be some hole.</p> <p>We write plug-ins all the time. In the invokation you describe I would expect the ObjectOfTypeDefinedInAssemblyA to be something you declared in Assembly B, absent the naming conflict. It seems to seriously violate the loose coupling nature of OOP.</p> <p>For example one of our plug-ins in a line of business application handles a special type of inter-office messaging. I wouldn't expect Assembly A to know/define the object that encapsulates the message. I would expect that Assembly B would be invoked to instantiate that object from assembly A; asembly B would then pass it back to A via the invoke.</p> http://stackoverflow.com/questions/637124/how-to-determine-the-o-s-filename-of-an-installed-font 1 How to determine the O/S filename of an installed font? Bill 2009-03-12T02:02:35Z 2009-04-18T23:20:12Z <p>We use a third-party PDF Generator library which requires that you specify the TrueType or Type1 file name when using a font other than the 14 or so that are part of the default PDF standard. </p> <p>So if I want to use <code>Bitstream Arrus Bold</code> I have to know to reference <code>arrusb.ttf</code>.</p> <p>Short of enumerating all of the files in the font folder and creating a disposable PrivateFontCollection to extract the relationships, is there a way to obtain the underlying font name from font information, i.e. given Courier New, Bold, Italic derive <code>CourBI.ttf</code>?</p> <p>I've already looked at the InstalledFontCollection and there's nothing.</p> http://stackoverflow.com/questions/639830/best-practices-for-active-record-pattern-and-using-static-methods-for-group-opera 0 Best practices for Active Record Pattern and using static methods for group operations. Bill 2009-03-12T18:10:39Z 2009-03-12T19:54:48Z <p>It is true what they say about design patterns that they are simply the embodiment of techniques already in general use. I have been using the Active Record Pattern since 1985.</p> <p>One of the attributes of this pattern is the use of static members in the implementation to perform searches that return collections of the underlying data. </p> <pre><code>class Customer { static Customer FindCustomerById( int Id ) { ... } static Customer[] FindActiveCustomers() { ... } } </code></pre> <p>In many cases where I need much more flexibility I break encapsulation and include a method such as </p> <pre><code>static Customer[] FindCustomers( string criteria ) { ... } </code></pre> <p>where one would call it as</p> <pre><code>Customer[] customers = Customer.FindCustomers( "LastName = 'Smith'" ); </code></pre> <p>Of course this is a hold over from when I used this pattern in C, is clearly not a best practice, and in the wrong hands can lead to SQL injection and other problems.</p> <p>Is there a suitable pattern or practice that could be applied that would allow the Customer class to become a "criteria" for such a search?</p> <p>For example suppose I want to find customers whose last name was Smith, I might consider writing an implementation such as:</p> <pre><code>static Customer[] FindCustomers( Customer customer ) { ... } </code></pre> <p>to be called as (with the appropriate constructor of course):</p> <pre><code>Customer[] customersnamedsmith = Customer.FindCustomer( new Customer( "Smith" ) ); </code></pre> <p>Or is it better to create a co-class that would define the criteria?</p> http://stackoverflow.com/questions/118833/multiple-database-corruption-on-sql-server-2000-msde 0 Multiple database corruption on SQL Server 2000 MSDE Bill 2008-09-23T02:46:03Z 2009-03-12T03:42:35Z <p>We use SQL Server 2000 MSDE for an Point Of Sale system running on about 800 cash registers. Each box has its own copy, and only the local software accesses it. </p> <p>This is a newly updated platform for the cash register vendor--who shall remain nameless.</p> <p>Routinely we are seeing corruption of Master, MSDB, Model and the database used by the software. </p> <p>I am looking for some piece of mind here more than anything and the confidence to utter that age old response: "It's not a software problem, it's a hardware problem".</p> <p>My gut tells me that with this type of corruption a hardware problem is indicated. Can anyone suggest some alternatives to check out?</p> <p><strong>Edit</strong>: New information on problem </p> <p>It has been a while since I first posted this problem. It turns out that aggressive use of CHKDSK in a preventative fashion seems to minimize the occurrences of the problem. Also it seems I failed to mention that the registers are running the WePOS version of Windows XP. Finally I have had cases where there were also corrupted files not part of the app which were fixed with CHKDSK.</p> <p>Do any of these new facts strike a chord with anyone?</p> http://stackoverflow.com/questions/637120/sql-filter-on-a-combination-of-two-column-values/637132#637132 2 Answer by Bill for SQL: filter on a combination of two column values Bill 2009-03-12T02:06:02Z 2009-03-12T03:35:48Z <p>It may be helpful to have some more information.</p> <p>If you have criteria that are driving your particular list of bank and account entities then you should be joining on these tables. </p> <p>You do have a Bank table and an Account table don't you?</p> <p>Assuming you have the information in the accounts table that narrow down the specific accounts you want to reference, for example suppose your Accounts table has an IsActive char(1) NOT NULL field and you want the balances for inactive accounts you would write something like this: </p> <pre><code>SELECT date, sum( amount ) AS amount FROM Balances b INNER JOIN Accounts a ON b.Bank = a.Bank AND b.Account = a.Account WHERE a.IsActive = 'N' </code></pre> <p>From a design perspective your should probably have created an artificial key to remove replication of non-identifying data across tables. This would give you something like this:</p> <pre><code>CREATE TABLE Accounts ( AccountId int identity(1,1) NOT NULL, Bank nvarchar(15) NOT NULL, Account nvarchar(15) NOT NULL ) CREATE TABLE Balances ( AccountId int, Date datetime, Amount money ) </code></pre> <p>This allows errors in the Bank or Account fields to be edited without having to cascade these changes to the Balances table as well as a slightly simpler query.</p> <pre><code>SELECT date, sum( amount ) AS amount FROM Balances b INNER JOIN Accounts a ON b.AccountId = a.AccountId WHERE a.IsActive = 'N' </code></pre> http://stackoverflow.com/questions/571468/design-patterns-and-algorithms-for-applying-rules-to-facts 8 Design patterns and algorithms for applying rules to facts Bill 2009-02-20T22:22:20Z 2009-02-22T22:18:22Z <p>I am in the midst of trying to nail down requirements from a client for a pricing engine in a retail environment. We have defined the pricing engine as operating on a set of pricing rules that establishes new price points for purchased items based on existing items already in the shopping cart.</p> <p>A simple price rule might be <strong>GET A SHIRT 40% OFF</strong>. A more complex rule might be <strong>GET A FREE SHIRT WHEN YOU BUY 2 PANTS AND SPEND AT LEAST $30</strong>.</p> <p>The general industry practice for applying these rules seems to be final best price to the customer, but it has come up that there may need to be a ranking option as well as a stacking option.</p> <p>Ranking will allow a rule that would otherwise lose out to win. Stacking would allow multiple rules to win. </p> <p>I've reviewed many of the posts here on SO regarding rule engines and I need help determining if I should be looking at one of these tools as part of my design or if not what design patterns and algorithms might be applicable to the design.</p> <p>It is clear that this is potentially an NP problem, and the number of items(facts) that I will be dealing with could exceed 100+ per transaction with repricing required every time a new item is added.</p> http://stackoverflow.com/questions/156601/working-with-uncoorperative-vendors/571268#571268 0 Answer by Bill for Working with uncoorperative vendors Bill 2009-02-20T21:17:51Z 2009-02-20T21:17:51Z <p>As a product vendor myself, I gotta point out that support isn't cheap. If you are paying $300-$400 for a product, the vendor could end up losing his shirt on the sale if you expect open ended support without cost. The average tech support person that we have hired costs in the neighborhood of $15-$20/hr and that is to start. Add in benefits and overhead costs, you are now up to the $30/hr area. </p> <p>Clients expecting 10+ hours of free support are living in a dreamworld when a certain percentage of the product's price has to be routed back into covering accrued initial development costs, on-going development costs, and don't forget that evil word called profit. </p> <p>We offer 30 days of free technical support by email. After that we expect clients to pony up the per-hour costs if they want help customizing the product. Oh and we do offer a money back guarantee on our product.</p> http://stackoverflow.com/questions/447996/where-are-the-healthy-job-markets-for-software-devs-globally/448042#448042 0 Answer by Bill for where are the healthy job markets for software devs (globally)? Bill 2009-01-15T19:11:55Z 2009-01-15T19:11:55Z <p>I agree with TravisO. It appears that the thirst for top shelf talent when it is obtainable is not waning. </p> <p>At first glance, we appear to be weathering the situation with measurable demand from our client base. One of our clients is heavy in the gambling sector though. </p> <p>I have another client that has been looking for an architect / developer individual for 2 years ostensibly to replace some of our services, but they keep coming back to us because of the lack of talent. They can only hire one person in this position and that person has to be comfortable dealing with Business Process Management, System Architecture, Development and Database Design. Since I fill this bill, and I believe it a tall order to find a single individual to fit these requirements they are on a long quest.</p> http://stackoverflow.com/questions/431955/why-would-identity-or-scopeidentity-be-dbnull/431982#431982 0 Answer by Bill for Why would @@IDENTITY or SCOPE_IDENTITY() be DBNull? Bill 2009-01-10T23:41:24Z 2009-01-10T23:41:24Z <p>You might want to perform a check to see if @@ROWCOUNT > 0.</p> <p>Also there were known problems in past versions of SQL Server with triggers impacting the survivability of @@IDENTITY. Do you have any triggers?</p> http://stackoverflow.com/questions/381145/how-to-select-a-large-amount-of-records-in-sql-server/381460#381460 0 Answer by Bill for How to select a large amount of records in SQL SERVER Bill 2008-12-19T16:30:00Z 2008-12-19T16:30:00Z <p><em>@jmpena: sorry, the execution plan takes 2% reading from the bookmark and 98% scanning the index</em></p> <p>I think you answered your own question here. "98% scanning the index". Scanning an index just means that SQL found an index that <em>may</em> help performance chosen based on statistics. Depending on the index, the operation can be as bad as a table scan itself.</p> <p>What you should be seeing if the index/query were tuned properly would be an index seek.</p> <p>Can you share what indexes are on the table? (sp_help {tablename})</p> http://stackoverflow.com/questions/376168/dropdownlist-selectedindex-always-1/376185#376185 2 Answer by Bill for DropDownList SelectedIndex always = 1 Bill 2008-12-17T21:59:20Z 2008-12-17T21:59:20Z <p>Yes. The values are used to indicate what the selected item is on postback. If all of your items have the same value then it finds the first item that matches the value hence the SelectedIndex = 1.</p> <p>Practice suggests to use an ID in the value field.</p> http://stackoverflow.com/questions/375801/when-hiring-testers-and-or-developers-what-do-you-do-with-resumes-and-spelling/375810#375810 5 Answer by Bill for When Hiring Testers (and/or Developers) what do you do with resumes and spelling mistakes? Bill 2008-12-17T19:51:15Z 2008-12-17T19:51:15Z <p>My personal opinion is that if they did not take the time to run their documents through a word processor's grammar and spelling checker, their thoroughness is in question.</p> <p>I often grade resumes A, B, C for sorting purposes and I drop one letter grade immediately for any blatent errors.</p> <p><em>As an added bit of irony, I was reading a reply to an article on InfoWeek some months ago about the state of the resource shortage in IT. There was an individual who commented on the article that stated he was out of work for over a year and had listed various credentials such as MBA, SAP, various Oracle and MS certs, etc, but his comment which was quite wordy was rife with errors. The ironic thing is that the site provided a "Check Spelling" button that would have certainly have fixed these. Maybe that is why he is still unemployed after 12+ months.</em></p> http://stackoverflow.com/questions/375764/update-the-date-of-a-datetime-object-when-using-datetime-addhours-1/375793#375793 1 Answer by Bill for Update the date of a datetime object when using datetime.addhours(-1) Bill 2008-12-17T19:47:34Z 2008-12-17T19:47:34Z <p>Generally speaking, if you are handling time zone issues you should use the functions that store the datetime in a UTC format and then map to the correct TZ.</p> <p>However if that is overkill for your application what you are doing is correect. </p> <pre><code>DateTime datetime = new DateTime( 2008,12,17,0,59, 0 ); datetime = datetime.AddHours(-1); </code></pre> <p>This results in a time of 23:59:00 or 11:59PM on 12/16/2008.</p> <p>The time you are feeding in might not have the proper am/pm designator.</p> http://stackoverflow.com/questions/366358/datatype-for-storing-video-in-sql-server-2000/366751#366751 1 Answer by Bill for Datatype for storing video in SQL Server 2000 Bill 2008-12-14T17:18:56Z 2008-12-14T17:18:56Z <p>I agree with Tomalak, even pictures and other smaller assets are much better served outside of the database. Our products use only reference paths to the assets in the DB, with th DB serving as a dictionary to location. </p> <p>Of course the one down side is the disconnect that can develop between the filesystem and the DB entries, so you need to pay special attention to how you set this up and maintain it in an ongoing fashion.</p> http://stackoverflow.com/questions/346973/how-to-tell-if-a-button-click-event-was-triggered-by-keyboard-or-mouse-in-wpf/347850#347850 0 Answer by Bill for How to tell if a button click event was triggered by keyboard or mouse in WPF? Bill 2008-12-07T18:15:32Z 2008-12-07T18:15:32Z <p>Personally I find it annoying when people place buttons at the bottom of Windows forms and web pages. Read some of the literature on UI and you will find that most people don't even get that far if they don't find something interesting on the page/form. I like to be able to click next as soon as I know the content is of no interest to me, so keep the nav buttons prominent at the top.</p> <p>I would put the prev/next at the top of the picture where you can control their position. Dancing those buttons around goes against most opinions on UI consistency. Further creating a different experience for a mouse user versus a keyboard user also goes against most current wisdom on good UI design. </p> <p>The alternative is to choose a constant max size a picture can obtain on the UI and if it exceeds that scale to fit, otherwise allow it to change freely within a frame. This keeps your buttons at the same place if you absolutely must have them on the bottom.</p> http://stackoverflow.com/questions/346973/how-to-tell-if-a-button-click-event-was-triggered-by-keyboard-or-mouse-in-wpf/347192#347192 0 Answer by Bill for How to tell if a button click event was triggered by keyboard or mouse in WPF? Bill 2008-12-07T03:39:19Z 2008-12-07T03:39:19Z <p>Could you elaborate on why you would care? </p> <p>Having written many custom controls myself over the years, I cannot recall one instance where I cared how a click event was triggered. (Except for that pre VB6 control lifecycle glitch that fired the got focus-click-lost focus in a different order depending on whether you clicked a button, used an accelerator key, or pressed ENTER as the default).</p> http://stackoverflow.com/questions/331428/how-many-asm-instructions-per-c-instruction/331457#331457 4 Answer by Bill for How many asm-instructions per C-instruction? Bill 2008-12-01T17:00:17Z 2008-12-01T17:00:17Z <p>That varies tremendously! I woudn't believe anyone if they tried to offer a rough conversion.</p> <p>Statements like <code>i++;</code> can translate to a single <code>INC AX</code>.</p> <p>Statements for function calls containing many parameters can be dozens of instructions as the stack is setup for the call.</p> <p>Then add in there the compiler optimization that will assemble your code in a manner different than you wrote it thus eliminating instructions.</p> <p>Also some instructions run better on machine word boundaries so <code>NOP</code>s will be peppered throughout your code.</p> http://stackoverflow.com/questions/313282/what-is-the-sdk-vs-bits-on-the-wire-debate-about/313298#313298 3 Answer by Bill for What is the "SDK vs. 'bits on the wire'" debate about? Bill 2008-11-24T02:37:49Z 2008-11-24T02:37:49Z <p>While it is helpful in some situations to know what is going on at the bit level especially for troubleshooting, using a vendor's SDK may be the best way to isolate your integration from any future changes that the vendor may make in their messaging structure.</p> <p>This is not to say that there won't be an inconvenience in terms of getting the latest SDK and such, but at least if the vendor did their job right, you don't have to worry about changing your code, just using their new SDK.</p> <p>For example we have worked with a company called ISD who specializes in payment switch products. We coded to their SDK. While their products have gone through some versioning, the most we had to do is update the DLLs on the client machines. The DLL retained the same public interfaces.</p> http://stackoverflow.com/questions/302759/computing-california-sales-tax/303604#303604 1 Answer by Bill for Computing California Sales Tax Bill 2008-11-19T22:22:12Z 2008-11-19T22:44:45Z <p>My impementation was for retail point of sale, however it could be adapted to a zip based solution. As it was because of returns and the potential for returns to be from other tax districts the point of sale registers had to have the complete tax rule definitions.</p> <p>Our transaction supported unlimited number of taxing jurisdictions. Each tax jurisdiction provided a way to calculate tax based on a table concept just like income tax. The software would identify all of the jurisdictions that come into play and calculate the appropriate tax. </p> <p>For example NY has a luxury tax that comes into play on individual items priced over $110 each( it was regressive charging that rate on the first $109.99 ), and local counties have taxes so we were able to define:</p> <pre><code>Auth Start$ End$ Rate Base NY 0 109.99 0% $0.00 NY 110.00 - 4% $4.40 NYALB 0 - 4% $0.00 </code></pre> <p>So a sale of a $50.00 item in Albany resulted in a 4% tax of $2--the NYALB rate of 4% and the NY rate of 0% was in effect. A sale of $120.00 results in an effective 8% tax of $9.60--the NYALB rate of 4% and the NY rate of 4% on the amount at or over $110 + 4.40. </p> <p>Colorado has a single township that has PIF tax, which in addition to the state and county tax and is itself taxable.</p> <p>The state of Idaho rounds based on a .002 rule--if the calculated tax is 4.002 then the tax due is 4.01. Some jurisdictions round up always. For each jurisdiction we attach a rounding rule to further process the tax: Up, Down, .005 and .002.</p> <p>I have found organizing the tax data in this fasion is most flexible if you are interested in maintaining your own tax rules.</p> <p>But like several people already mentioned there are services that provide the tax data for you. You just have to figure out how to integrate it.</p> <p>EDIT: Tax Holidays... We had support for that too, just added a separate table that had start and end dates for a jurisdiction's holiday. The tax engine would just spit out zero during those dates.</p> http://stackoverflow.com/questions/265921/sql-design-around-lack-of-cross-database-foreign-key-references/266072#266072 0 Answer by Bill for SQL design around lack of cross-database foreign key references Bill 2008-11-05T18:06:05Z 2008-11-05T18:06:05Z <p>We have such a modularity in our products, but our database requirements are merged together during installtion. For example our admin package and product A may be the initial purchase by a client where they install the two modules into database X. If they later buy product B the database component is layered right on top of database X adding in the DRI where necessary.</p> <p>The only case where I have seen the need for separate databases from a design perspective is when you are drawing a hard line between business units (such as a corporation) at which point the issue is really a type of partitioning. Great Plains Dynamics does this where they have a single administrative database, and multiple corporation databases. However each module in GP for a given corporation resides in that single database.</p> <p>Of course if you are stuck with separate databases, I would agree that D is the best option.</p> http://stackoverflow.com/questions/248433/hooking-into-windows-with-c-to-produce-windows-7-new-feature/249302#249302 2 Answer by Bill for Hooking into Windows with C# to Produce Windows 7 New Feature Bill 2008-10-30T04:48:07Z 2008-10-30T04:48:07Z <p>If your goal is to create a hook that works across all applications and thus all windows on the desktop, then you cannot use a managed code assembly. You will have to write in a language that produces traditional DLLs such as C++. </p> <p>In order to hook at the system level which then hooks into all running applications you must provide a dll that can be placed into the address spaces of all running aps. I would venture to say that a large percentage of most people's daily aps are not managed .net framework apps.</p> http://stackoverflow.com/questions/249281/embedding-html-code-in-stored-procedures/249285#249285 2 Answer by Bill for Embedding html code in stored procedures Bill 2008-10-30T04:33:18Z 2008-10-30T04:33:18Z <p>Horribly wrong! Just my opinion though. </p> http://stackoverflow.com/questions/235394/how-do-you-apply-theoretical-computer-science/235519#235519 1 Answer by Bill for How do you apply Theoretical Computer Science? Bill 2008-10-24T22:45:57Z 2008-10-24T22:45:57Z <p>I found that all I need for daily bliss from the CS theoretical world is the utterance of the mantra "Low coupling and High Cohesion". <a href="http://rads.stackoverflow.com/amzn/click/007301933X" rel="nofollow">Roger S. Pressman</a> made it scholarly before <a href="http://rads.stackoverflow.com/amzn/click/0735619670" rel="nofollow">Steve McConnell</a> made it fashionable.</p> http://stackoverflow.com/questions/224298/are-there-benefits-to-a-case-sensitive-database/224332#224332 1 Answer by Bill for Are there benefits to a case sensitive database? Bill 2008-10-22T02:53:38Z 2008-10-22T03:02:01Z <p>Case insensitivity is a godsend when you have developers that fail to follow any sort of conventions when writing SQL or come from development languages where case insensitivity is the norm such as VB.</p> <p>Generally speaking I find it easier to deal with databases where there is no possibility that ID, id, and Id are distinct fields. </p> <p>Other than a personal preference for torture, I would strongly recommend you stay with case insensitivity. </p> <p>The only database I ever worked on that was set up for case sensitivity was Great Plains. I found having to remember every single casing of their schema namings was painful. I have not had the privilege of working with more recent versions.</p> <p>Unless it has changed and if my memory serves, the nature of case sensitivity you are speaking of is determined at installation time and is applied to all databases. It was the case with the SQL Server installion that ran the Great Plains database I mentioned that all databases on that installation were case sensitive. </p> http://stackoverflow.com/questions/203384/how-to-tell-when-windows-is-inactive/203410#203410 0 Answer by Bill for How to tell when Windows is inactive Bill 2008-10-15T01:14:24Z 2008-10-15T01:14:24Z <p>The keyboard and mouse hooks are what I find to be most valuable. The class below can be inserted and you just have to figure out what you want to do with the information about key and mouse updates. </p> <pre><code>using System; using System.Runtime.InteropServices; using System.Threading; using System.Windows.Forms; namespace Example { public class Hook { delegate int HookProc(int nCode, IntPtr wParam, IntPtr lParam); [FlagsAttribute] public enum WindowMessage { WM_KEYDOWN = 0x0000000000000100, // &amp;H100 WM_MOUSEMOVE = 0x0000000000000200, // &amp;H200 WM_LBUTTONDOWN = 0x0000000000000201, // &amp;H201 WM_RBUTTONDOWN = 0x0000000000000204, // &amp;H204 WH_KEYBOARD = 2, WH_MOUSE = 7, HC_ACTION = 0 } [DllImport("user32.dll",CharSet=CharSet.Auto, CallingConvention=CallingConvention.StdCall)] private static extern int CallNextHookEx(int idHook, int nCode, IntPtr wParam, IntPtr lParam); [DllImport("user32.dll",CharSet=CharSet.Auto, CallingConvention=CallingConvention.StdCall)] private static extern bool UnhookWindowsHookEx(int idHook); [DllImport("user32.dll",CharSet=CharSet.Auto, CallingConvention=CallingConvention.StdCall)] private static extern int SetWindowsHookEx(int idHook, HookProc lpfn, IntPtr hInstance, int threadId); //Declare MouseHookProcedure as a HookProc type. static HookProc MouseHookProcedure; static HookProc KeyboardHookProcedure; private static int mhMouseHook = 0; private static int mhKeyboardHook = 0; public Hook() {} public static void Init() { MouseHookProcedure = new HookProc( MouseHookProc ); KeyboardHookProcedure = new HookProc( KeyboardHookProc ); mhMouseHook = SetWindowsHookEx( (int)WindowMessage.WH_MOUSE, MouseHookProcedure, (IntPtr)0, AppDomain.GetCurrentThreadId() ); mhKeyboardHook = SetWindowsHookEx( (int)WindowMessage.WH_KEYBOARD, KeyboardHookProcedure, (IntPtr)0, AppDomain.GetCurrentThreadId() ); } public static void Terminate() { UnhookWindowsHookEx( mhMouseHook ); UnhookWindowsHookEx( mhKeyboardHook ); } private static int MouseHookProc( int nCode, IntPtr wParam, IntPtr lParam ) { if ( nCode &gt;= 0 ) { //do something here to update the last activity point, i.e. a keystroke was detected so reset our idle timer. } return CallNextHookEx( mhMouseHook, nCode, wParam, lParam ); } private static int KeyboardHookProc( int nCode, IntPtr wParam, IntPtr lParam ) { if ( nCode &gt;= 0 ) { //do something here to update the last activity point, i.e. a mouse action was detected so reset our idle timer. } return CallNextHookEx( mhKeyboardHook, nCode, wParam, lParam ); } } } </code></pre> <p>Of course this only works within the application you are hooking. If you need to track inactivity across the entire system, you need to create a DLL that can be loaded into the address spaces of all other windows. Unfortunately, I haven't heard of any hack that would allow a .net compiled .dll that will work in this scenario; we have a C++ DLL that hooks for this purpose.</p> http://stackoverflow.com/questions/203118/week-function-in-sql-script/203121#203121 0 Answer by Bill for Week() function in sql script. Bill 2008-10-14T22:39:27Z 2008-10-14T22:39:27Z <p>SELECT DATEPART( week, '2008-10-16')</p> http://stackoverflow.com/questions/360480/iso-9797-1-algorithm-1-cbc-mac-in-c Comment by Bill on ISO 9797-1 Algorithm 1 [CBC-MAC] in C# Bill 2009-09-18T13:50:42Z 2009-09-18T13:50:42Z Curious. Why would you need to get involved in en/decrypting PINPad data? The PINPad workflow is designed to send encrypted data directly to the merchant's bank using the DUKPT keys generated by the bank and installed in the PINPad by the PINPad Vendor. Even getting to the point where we were writing software to directly control various PINPads' UI and other behavior, we were never able to, nor did we need to encrypt/decrypt the encrypted PIN data envelope provided as part of the process. http://stackoverflow.com/questions/639830/best-practices-for-active-record-pattern-and-using-static-methods-for-group-opera Comment by Bill on Best practices for Active Record Pattern and using static methods for group operations. Bill 2009-03-12T19:34:47Z 2009-03-12T19:34:47Z I was indicating that encapsulation was broken when using generic SQL WHERE syntax criteria strings. In this case the criteria has no basis on the class's member fields. By requiring the consumer of the class to use SQL to specify the criteria I am over exposing implementation details. http://stackoverflow.com/questions/637124/how-to-determine-the-o-s-filename-of-an-installed-font/637150#637150 Comment by Bill on How to determine the O/S filename of an installed font? Bill 2009-03-12T02:17:38Z 2009-03-12T02:17:38Z Thanks I'll check that out. http://stackoverflow.com/questions/571468/design-patterns-and-algorithms-for-applying-rules-to-facts/572041#572041 Comment by Bill on Design patterns and algorithms for applying rules to facts Bill 2009-02-27T01:10:27Z 2009-02-27T01:10:27Z I am looking into this. I've read his volume of work, but haven't hopped through his online material recently. http://stackoverflow.com/questions/246701/what-is-normalisation-or-normalization-why-is-it-important/246751#246751 Comment by Bill on What is Normalisation (or Normalization)? Why is it important? Bill 2009-02-20T21:10:20Z 2009-02-20T21:10:20Z The example you gave for first normal isn't exactly correct. I always remember the first three normal forms by the terms repeating, redundant, non-dependent. Repeating data refers to when novice database developers write table defs that include columns like DogName1, DogName2, DogName3, etc. http://stackoverflow.com/questions/270635/is-there-a-way-to-use-custom-fonts-in-a-pdf-file/270653#270653 Comment by Bill on Is there a way to use custom fonts in a PDF file? Bill 2009-02-01T23:52:37Z 2009-02-01T23:52:37Z Yes fonts are represented by vectors, but the displayed text in a PDF is still represented by a particular character set and a stream of values representing the fonts, i.e. in an uncompressed PDF stream, assuming traditional character set, you will see an 'A' is still 65 (0x41). http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/164696#164696 Comment by Bill on What real life bad habits has programming given you? Bill 2009-01-29T17:51:16Z 2009-01-29T17:51:16Z @Sara: you are right on the money. A debit transaction costs only an average of .26, where as a credit transaction is a percentage and of course is linear with respect to transaction total. All new, good payment software has least cost routing where it &quot;suggests&quot;/urges the customer down a path. http://stackoverflow.com/questions/431175/what-was-your-first-computer-game-that-got-you-interested-in-computers/431234#431234 Comment by Bill on What was your first computer game that got you interested in computers? Bill 2009-01-20T03:50:15Z 2009-01-20T03:50:15Z I remember playing this on a Commodore CBM 8032. It really got me hooked. http://stackoverflow.com/questions/423823/whats-your-favorite-programmer-ignorance-pet-peeve/424161#424161 Comment by Bill on What's your favorite "programmer ignorance" pet peeve? Bill 2009-01-10T23:54:34Z 2009-01-10T23:54:34Z The word refactor comes to mind. The concept of refactoring something is right out of algebra. Combining terms or redistributing to create a more easily solvable expression. http://stackoverflow.com/questions/375764/update-the-date-of-a-datetime-object-when-using-datetime-addhours-1/375777#375777 Comment by Bill on Update the date of a datetime object when using datetime.addhours(-1) Bill 2008-12-17T22:34:59Z 2008-12-17T22:34:59Z I don't recall any datetime related changes between frameworks. How could .Subtract( new TimeSpan( 1, 0, 0 )) be faster, better, or even clearer to read than .AddHours( -1 ) http://stackoverflow.com/questions/375801/when-hiring-testers-and-or-developers-what-do-you-do-with-resumes-and-spelling/375810#375810 Comment by Bill on When Hiring Testers (and/or Developers) what do you do with resumes and spelling mistakes? Bill 2008-12-17T21:21:51Z 2008-12-17T21:21:51Z I think spelling errors on SO should be given some latitude. Given the fact that questions on this site are answered at the speed of Jeopardy you don't often have time to check much more than the technical accuracy. http://stackoverflow.com/questions/375764/update-the-date-of-a-datetime-object-when-using-datetime-addhours-1/375777#375777 Comment by Bill on Update the date of a datetime object when using datetime.addhours(-1) Bill 2008-12-17T19:58:11Z 2008-12-17T19:58:11Z Not sure how this could be the best answer when clearly the .AddHours(-1) method works just fine. http://stackoverflow.com/questions/375801/when-hiring-testers-and-or-developers-what-do-you-do-with-resumes-and-spelling/375818#375818 Comment by Bill on When Hiring Testers (and/or Developers) what do you do with resumes and spelling mistakes? Bill 2008-12-17T19:56:17Z 2008-12-17T19:56:17Z This is a definite reality because in our early days we used headhunters a great deal and on several occassion we had an opportunity to see what was presented as our resume. Didn't often look like what we gave the headhunter. They will taylor it even further to the specific position. http://stackoverflow.com/questions/262657/the-coolest-server-names/263014#263014 Comment by Bill on The Coolest Server Names Bill 2008-11-05T01:05:00Z 2008-11-05T01:05:00Z Not sure what all of those words mean, but Krankenwagen--literally sick car--is an ambulance. How is that related to trains? http://stackoverflow.com/questions/262657/the-coolest-server-names/263009#263009 Comment by Bill on The Coolest Server Names Bill 2008-11-05T01:02:09Z 2008-11-05T01:02:09Z Been there, done that. In fact it is a touch of irony that the person initially in charge of builds was named Bob.