User - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T00:00:51Zhttp://stackoverflow.com/feeds/user/24079http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1601898/how-do-i-view-the-insecure-items-on-a-secure-page0How do I view the insecure items on a secure page.jimoc2009-10-21T16:11:33Z2009-10-21T16:22:09Z
<p>I have a web application which works perfectly fine on my own machines, perfectly fine on my customer's PCs but on their customers machines each page they visit they get a prompt for the Mixed Content coming up.</p>
<p>However it doesn't matter whether they answer yes or no to the question, they still get all of the functionality of the site.</p>
<p>We cannot ask them to disable the warning, since they would then consider our application not secure and not use it.</p>
<p>I've installed Httpwatch and none of the resources or urls being loaded are insecure.
The codebase for any flash objects is called using https:
I've checked for any removechild() function calls in the scripts and none of them are called on divs with a background image.
We have no calls to javascript:void anywhere in the codebase.</p>
<p>I'm at a loss as to what to check next.
Is there any way without being too intrusive, to find out what insecure objects the page is trying to load?
This has to be something that will work on IE7 or 8 as we are not allowed to install anything on their machines.</p>
http://stackoverflow.com/questions/1578922/document-ranking-strategy-for-p2p-file-sharing-system/1578961#15789610Answer by jimoc for Document ranking strategy for P2P file sharing system.jimoc2009-10-16T16:03:55Z2009-10-16T16:03:55Z<p>I would go with a combination of 1 and 4 but without forcing users to give a ranking.
However I would give more weight in the algorithm to user rankings rather then downloads, as the downloads only indicate how many times it was downloaded not how useful it was to the user.
The problem with forcing a user to give a ranking is that they can't give a ranking before they download the file, since they won't know its contents without having gotten it.</p>
<p>If this is a system that requires users to login, then you could present them with some sort of dialog or something to rate files they have previously downloaded, therefore not forcing anything but giving them the option.
If they choose not to rank to a file, then count that as a zero rank or just ignore it depending on your needs.</p>
http://stackoverflow.com/questions/178572/what-is-the-best-format-for-a-customer-number-order-number/670245#6702451Answer by jimoc for What is the best format for a customer number, order number?jimoc2009-03-21T23:43:42Z2009-03-21T23:43:42Z<p>I would suggest using 16 digit identifiers that when printed or shown to customers are formatted in the format of xxxx-xxxx-xxxx-xxxx but stored as numbers without the dashes in your system.</p>
<p>The reason for using this format is that it makes it easier for people reading out the number over to phone to read as they can do it in batches of 4 rather then trying to remember how much they have said already.</p>
<p>If you wish the first 4 digits can be used to identify the type of number, 1000 for customers, 2000 for suppliers, 3000 for orders, 4000 for invoices etc.</p>
<p>The second set can then by a year/month identifier if you wish to keep that sort of information encoded in the number itself, using a format of yymm so 1000-0903-xxxx-xxxx would be a customer entered in march 2009.</p>
<p>This then leaves you with 8 digits for the actual data itself.</p>
<p>I would consider the use of letters in the identifiers to be a very bad idea for any system that deals with telephones as the differences in accents and understand is so varied that people are bound to get upset at trying to get their identifier recognised by someone who cannot understand their accent properly.</p>
http://stackoverflow.com/questions/591291/button-text-disappearing-with-4gb-ram-and-ibm-java-1-50Button text disappearing with 4Gb Ram and IBM Java 1.5jimoc2009-02-26T16:22:22Z2009-02-26T16:50:18Z
<p>We have a very strange error occurring at a developer site which we are unable to replicate ourselves.</p>
<p>A developer in Poland has recently upgraded his Windows XP Service Pack 3 machine to 4Gb of Ram
When he did so he started experiencing graphical errors in java programs using IBM JDK 1.5
This errors only occur in IBM JDK 1.5 and not in any other version.</p>
<p>The problem manifests itself when you create a button or control on a form and move the mouse over it.</p>
<p>We have a test program </p>
<pre><code>import java.awt.FlowLayout;
import javax.swing.JButton;
import javax.swing.JFrame;
public class GraphicTest {
public static void main(String args[]) {
JFrame frame = new JFrame("GraphicTest");
frame.getContentPane().setLayout(new FlowLayout());
frame.setSize(200, 200);
JButton button = new JButton("Test button");
button.setVisible(true);
frame.getContentPane().add(button);
frame.setVisible(true);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
}
</code></pre>
<p>which shows the problem straight away.</p>
<p>However the problem doesn't arise on my own machine when I upgrade the same windows version to 4Gb of Ram.</p>
<p>Has anyone else ever seen an issue like this?</p>
<p>Just to clarify this a bit, this issue only happens with IBM JDK 1.5 and only happens when we have 4Gb of Ram. It doesn't happen on any other version of the JDKs and if we reduce the amount of memory to 3 Gb the problem disappears.</p>
http://stackoverflow.com/questions/258317/jquery-changing-background-of-parent-div4Jquery changing background of parent div.jimoc2008-11-03T10:52:25Z2009-01-18T17:22:49Z
<p>I have the following snippet in one of my html pages :</p>
<pre><code><div class="inputboximage">
<div class="value2">
<input name='address1' value='Somewhere' type="text" size="26" maxlength="40" />
<br />
</div>
</div>
</code></pre>
<p>My problem is that I need the inputboximage background to change when I click in the address1 text field and to revert to the original when it loses focus.</p>
<p>I have used the following :</p>
<pre><code> <script>
$(document).ready(function(){
$("input").focus(function () {
$(this.parentNode).css('background-image', 'url(images/curvedinputblue.gif)');
});
$("input").blur(function () {
$(this.parentNode).css('background-image', 'url(images/curvedinput.gif)');
});
});
</script>
</code></pre>
<p>but instead of replacing the image, it seems to be adding a background image to the value2 div as you would expect. I can use parentNode.parentNode in this case, but there is also a chance that the inputboxImage node could be further up or down the parent tree.</p>
<p>Is there a way I can change this code so that it will navigate down the parent tree until it finds a div called inputboximage and replace the image there?</p>
<p>Also, if I have two different div classes, inputboximage and inputboximageLarge, is there a way to modify this function so that it will work with both, replacing the background image with a different image for each one?</p>
http://stackoverflow.com/questions/362488/should-i-prepare-my-code-for-future-changes/362491#3624911Answer by jimoc for Should I prepare my code for future changes?jimoc2008-12-12T11:16:18Z2008-12-12T11:16:18Z<p>In a word, yes.</p>
<p>In a few more words, you should always make your code as readable as possible, include comments, and always assume that at some time in the future, you will be called upon, or someone else will be, to modify the code.</p>
<p>If that someone in the future comes across a block of code, uncommented, unformatted, with no indication of what it does or should do, then they will curse you forever :)</p>
http://stackoverflow.com/questions/324150/how-many-lines-of-code-do-you-write-modify-per-day/324247#3242470Answer by jimoc for How many lines of code do you write / modify per day?jimoc2008-11-27T17:06:27Z2008-11-27T17:06:27Z<p>My average code modified per day is approaching zero.
I'm in production support so I spend most of my day debugging code.</p>
<p>If however the question was asked 'How many lines of code do you see/step through per day?' then that would be approaching 1000-5000 depending on the issue.</p>
http://stackoverflow.com/questions/313777/port-443-on-iseries-v5r4-is-filtered-to-internet-clients-even-it-is-allowed-in/313808#3138080Answer by jimoc for Port 443 on iSeries v5r4 is ‘filtered’ to internet clients, even it is allowed in firewall rules. How can I make it ‘open’? Can it be i5/OS bug? [SOLVED]jimoc2008-11-24T10:05:53Z2008-11-24T10:05:53Z<p>Port 443 is the SSL port so it is quite possible that either your firewall or your iSeries has a further filter that needs to be set to allow ssl traffic to it.</p>
http://stackoverflow.com/questions/281500/error-failed-to-generate-a-user-instance-of-sql-server/281530#281530-1Answer by jimoc for Error: Failed to generate a user instance of SQL Serverjimoc2008-11-11T17:17:22Z2008-11-11T17:17:22Z<p>Have you tried to connect to the SQL Server instance by using SQL Management Studio?</p>
<p>If this also doesn't allow you to connect then it could be because the SQL service is not starting correctly.</p>
<p>Verify that the service is running by checking the services in the control panel.</p>
http://stackoverflow.com/questions/271888/best-practice-for-handling-null-strings-from-database-in-java/271963#2719630Answer by jimoc for Best practice for handling null strings from database (in Java)jimoc2008-11-07T12:47:05Z2008-11-07T12:47:05Z<p>As Ruben said I would extend the JTextField to overwrite the setText() method and replace NULL with the empty string.</p>
<p>However I would also overwrite the getText() method to overwrite empty string with NULL so that when you are saving back into the database you do not overwrite a null value in there with the empty string.</p>
http://stackoverflow.com/questions/271899/integrating-paypal-checkout/271940#2719405Answer by jimoc for Integrating PayPal checkoutjimoc2008-11-07T12:40:04Z2008-11-07T12:40:04Z<p>This is from a few months ago, so may have been changed, but from what I remember Paypals APIs do not allow you to integrate a Paypal interface completely into a shop. This is because once you are off the paypal servers they lose control and can be liable for misuse of the API.</p>
<p>From what I remember of it using Paypal for payments does require the user to log into their paypal account and so Paypal do not want this under the control of any other site except their own.</p>
http://stackoverflow.com/questions/271923/how-do-i-add-a-sql-server-2008-service-instance/271936#2719362Answer by jimoc for how do I add a SQL Server 2008 service instance?jimoc2008-11-07T12:36:56Z2008-11-07T12:36:56Z<p>I've had similar issues and the solution we used was to reinstall SQL server 2008 and at the point where it asks you for default instance or named instance, used a named instance and continue on.</p>
<p>This does not affect any currently installed instances but creates a new instance of the name supplied and then from there on should be usable.</p>
http://stackoverflow.com/questions/271907/how-to-detect-using-c-if-a-pendrive-is-plugged-into-a-usb-port/271933#2719331Answer by jimoc for How to detect using c# if a pendrive is plugged into a USB port ?jimoc2008-11-07T12:34:55Z2008-11-07T12:34:55Z<p>If its a small environment and you want to prevent any usb devices from being used, then you can disable the usb ports in device manager, make sure no users are set up as adminstrators on the machines and that should prevent all usb use.</p>
<p>And if you are really paranoid about it, just open the machines and plug out the ports.</p>
http://stackoverflow.com/questions/271864/best-way-to-connect-to-mysql-locally/271885#2718855Answer by jimoc for Best way to connect to MySQL locally?jimoc2008-11-07T12:12:34Z2008-11-07T12:12:34Z<p>In terms of performance if both are running on the same machine then shared memory is the better option as it wont run into issues with firewall software that may be on the machine or installed at a later date.</p>
<p>However if in the future you need to seperate the web server and database due to upsizing, you will need to make changes to support this.</p>
<p>Therefore in the long run the better option is to go with TCP/IP as this will allow the servers to be seperated with the minimum of heartache.</p>
http://stackoverflow.com/questions/271870/enabling-controls-at-moment-of-opening-a-form-in-access/271879#2718791Answer by jimoc for Enabling controls at moment of opening a form in Accessjimoc2008-11-07T12:09:29Z2008-11-07T12:09:29Z<p>One way to do what you are trying here is to put the combobox.change() inside the form.current() method.</p>
<p>This will then act as if the combobox had been changed as soon as the form is up and running.</p>
<p>I have done something similar to this before but I dont have the code in front of me at the moment. As soon as I get a look at it I'll post it here in more detail, but off the top of my head I believe this was the way I did it.</p>
http://stackoverflow.com/questions/257124/what-is-the-best-online-recruitment-website/268931#2689310Answer by jimoc for What is the best online recruitment website?jimoc2008-11-06T14:45:41Z2008-11-06T14:45:41Z<p>I've found it doesn't really matter what online jobs board you use, its how you proceed after making your application that counts.</p>
<p>I have used jobs boards on 3 occassions and found that in the vast majority of cases, unless you follow up with a call to the recruitment agency/company your CV gets thrown on the pile and forgotten about.</p>
<p>I always ensure that I ring the company within at least 5 days of making the application to ensure that they got my CV. This helps your case because it causes the person to go looking for it to confirm its there and voila, you're at the top of the pile.</p>
http://stackoverflow.com/questions/268424/when-and-why-should-you-store-data-in-the-windows-registry/268466#2684664Answer by jimoc for When - and why - should you store data in the Windows Registry?jimoc2008-11-06T12:17:39Z2008-11-06T12:17:39Z<p>Coming at this both from a user perspective and a programmers perspective I would have to say there really isn't a good exceuse to put something in the registry unless it is something like file associations, or machine specific settings.</p>
<p>I come from the school of thought that says that a program should be runnable from wherever it is installed, that the installation should be completely movable within a machine, or even to another machine and not affect the running of it.</p>
<p>Any configurable options, or required dlls etc, if they are not shared should reside in a subdirectory of the installation directory, so that the whole installation is easily moved.</p>
<p>I use a lot of smaller utility like programs, so if it cant be installed on a usb stick and plugged into another machine and just run, then its not for me.</p>
http://stackoverflow.com/questions/264846/how-can-i-make-a-non-programming-person-recognize-a-good-programmer/264875#2648754Answer by jimoc for How can I make a non-programming person recognize a good programmer?jimoc2008-11-05T11:21:05Z2008-11-05T11:21:05Z<p>In my experience there really isn't a way that you can make a non-programming person realise that your competitor is worse then you, because no matter what you say, the customer has in the back of their mind the fact that you are trying to get the same work as your competitor and that is going to colour their judgement of whatever you say.</p>
<p>In my experience it is better to simply show the customer your past record of successes vs your competitors past record and then encourage them to ring former clients of both you and them and get their opinions.</p>
http://stackoverflow.com/questions/63668/confessions-of-your-worst-wtf-moment-what-not-to-do/260127#2601276Answer by jimoc for Confessions of your worst WTF Moment. (What not to do.)jimoc2008-11-03T21:57:25Z2008-11-03T21:57:25Z<p>Not quite a programming problem, but was caused by one so I'll include it.</p>
<p>Having worked for over 2 weeks on a particular bug in one of our modules that had been hanging around in various forms for over 6 months, I was particulary happy to finally find the cause and resolve it.</p>
<p>Being very pleased with myself I did what any program does at times like this.</p>
<p>Put my hands behind my head, stretched out my legs in front of me, beamed with happiness ....</p>
<p>and kicked the circuit breaker on the wall sockets below my desk, killing my PC, programmer2's PC, programmer3's PC ... you get the picture.</p>
<p>I no longer stretch my legs out under my desk.</p>
http://stackoverflow.com/questions/241602/what-non-technical-items-do-you-keep-on-your-desk/260061#2600610Answer by jimoc for What non-technical items do you keep on your desk?jimoc2008-11-03T21:40:58Z2008-11-03T21:40:58Z<ul>
<li>Cup for Coffee</li>
<li>Glass for Water</li>
<li>3 Notebooks</li>
<li>White Dwarf magazine (great conversation starter in an open plan office)</li>
<li>Golf Bag pen holder with pens.</li>
</ul>
http://stackoverflow.com/questions/245909/how-do-you-jump-start-yourself-to-do-a-task-that-you-just-despise-doing/260052#2600521Answer by jimoc for How do you jump start yourself to do a task that you just despise doing?jimoc2008-11-03T21:36:48Z2008-11-03T21:36:48Z<p>My usual method is to set a timer on my PC. </p>
<p>I use WorkRave (Workrave.org) to help minimise RSI, I use the rest break timer on the program to force myself to work for 1 hour on the horrible parts, then reward myself with 5 minutes surfing, usually on StackOverFlow reading questions :)</p>
http://stackoverflow.com/questions/259932/any-aids-to-help-you-get-back-in-the-flow/260035#2600358Answer by jimoc for Any aids to help you get back in the flow?jimoc2008-11-03T21:31:23Z2008-11-03T21:31:23Z<p>I always keep 3 notebooks on my desk for times like this.</p>
<p>The first is where I keep track of the task I'm working on, making notes every few minutes as to which part of the code I'm working on. This one helps me get back to position fairly quickly.</p>
<p>The second notebook is for notes on any tasks that I get interrupted with, any notes i need to take care of those tasks get put in there.</p>
<p>And the 3rd notebook is for the PHB. Each line begins with 'Interrupted by PHB at 'x o clock' to do 'mundane task', setting 'important task' back by 'x hours'</p>
<p>And then I just give it to him if he ever complains that the important tasks dont get done.</p>
<p>Notebook 1 helps you get back in the flow, Notebook 3 helps to stop it happening in the future.</p>
http://stackoverflow.com/questions/255201/splitting-development-of-new-versions-from-on-going-fixes-of-in-the-field-version/255267#2552672Answer by jimoc for Splitting development of new versions from on-going fixes of in-the-field versions?jimoc2008-10-31T23:45:10Z2008-10-31T23:45:10Z<p>In my current position we have exactly what you describe here.</p>
<p>We have Software Development team, who work on the most up to date version of the software, using fully specced out Customer requirements documents to design the newest features to be added to the system.</p>
<p>We also have Software Production team, who take issues from the helpdesk and resolve them, using either changes to the code, added in through service packs at customer defined intervals, or if the problem is a simple fix that does not require coding we simple write up the resolution document to pass back to the helpdesk who pass it to the customer.</p>
<p>Both teams work in the same cubicled office so we can interact if we need to pick someones brains on the opposite team.</p>
<p>During the interview process for a software position both positions are described to the candidates and they then decide which team they would like to be in. If someone finds that they aren't really suited for the team they are in, they can apply to move to the other team, and will be moved if there is a current need in the other team or someone else wants to move the same way.</p>
<p>For us, this seems to be a very workable solution as we have developers working always on the NBT, but the most important aspect (keeping the customers happy) is always covered.</p>
http://stackoverflow.com/questions/250536/sql-server-full-text-search/250549#2505490Answer by jimoc for SQL Server Full Text Searchjimoc2008-10-30T15:15:35Z2008-10-30T15:15:35Z<p>I found the following very useful when I needed to set this up :</p>
<p><a href="http://www.wherecanibuyit.co.uk/ASP/full-text-search.html" rel="nofollow">http://www.wherecanibuyit.co.uk/ASP/full-text-search.html</a></p>
http://stackoverflow.com/questions/250518/windows-service-or-sql-job/250539#2505392Answer by jimoc for Windows Service or SQL Job?jimoc2008-10-30T15:13:23Z2008-10-30T15:13:23Z<p>I would think a scheduled SQL job would be a safer solution since if the database is migrated to a new machine, someone doing the migration might forget that there is a windows service involved and forget to start/install it on the new server.</p>
http://stackoverflow.com/questions/190961/windows-authentication-problems-using-asp-net/191210#1912100Answer by jimoc for Windows authentication problems using asp.netjimoc2008-10-10T13:16:51Z2008-10-10T13:16:51Z<p>Have you tried to access the database on server2 using SQL SErver administrator from Server1 and made a successful connection?</p>
<p>If not then this could be because by default SQL Server installs itself with tcp turned off by default.</p>
<p>You will need to make sure that this is turned on for server2 to allow server1 to connect.
server1 has no problems connecting due to the fact it can use the shared memory connection.</p>
http://stackoverflow.com/questions/181805/absolute-path-relative-path/181825#1818250Answer by jimoc for Absolute path & Relative Pathjimoc2008-10-08T08:28:45Z2008-10-08T08:28:45Z<p><a href="http://www.communitymx.com/content/article.cfm?cid=AEDCC52C4AD230AD" rel="nofollow">http://www.communitymx.com/content/article.cfm?cid=AEDCC52C4AD230AD</a> should explain it all.</p>
<p>It details the difference between absolute, relative and document paths.</p>
http://stackoverflow.com/questions/178722/what-to-charge-clients-for-work-in-older-technologies/178754#1787541Answer by jimoc for What To Charge Clients For Work In Older Technologies?jimoc2008-10-07T14:37:45Z2008-10-07T14:37:45Z<p>I've encountered the exact scenario you describe here.</p>
<p>My personal resolution of it was to charge them my normal hourly (+ inflation year on year) for any development in it, but I have also told them that eventually a version of windows will come out on which the applications will fail to work due to deprecated features being removed and at that stage they will have to pay for a full redevelopment of the product.</p>
<p>They are happy with this situation, and so am I.</p>
<p>In your case I would probably do the same, but perhaps charge them a small premium due to the fact that you will need to keep the old ides and versions of the database server around to allow you to test in the same environment that they are still using.</p>
http://stackoverflow.com/questions/174008/is-it-worth-converting-my-functional-javascript-code-to-an-object-oriented-design/174041#1740415Answer by jimoc for Is it worth converting my functional JavaScript code to an object-oriented design?jimoc2008-10-06T12:13:46Z2008-10-06T12:13:46Z<p>If your code is well structured, well laid out, and well commented, and does the job that is required of it, then messing with it for any reason other then to add features is ill-advised.</p>
<p>While it might be nice to say that the program is nicely OOP etc, if it doesn't need to be changed to work then I would definetely leave it as it is.</p>
<p>If it aint broke, dont fidgit with it :)</p>
http://stackoverflow.com/questions/174013/linker-out-of-memory-lnk1102/174031#1740311Answer by jimoc for linker out of memory LNK1102jimoc2008-10-06T12:10:38Z2008-10-06T12:10:38Z<p>If you are running this on a windows machine, open up task manager while linking and go to the performance page.
If you see the page file usage increasing until its full, then increase the size of it to at least double your ram.
If the page file is not filling up before it throws the error, then ensure there is enough disk space on the machine.</p>
http://stackoverflow.com/questions/591291/button-text-disappearing-with-4gb-ram-and-ibm-java-1-5/591408#591408Comment by on Button text disappearing with 4Gb Ram and IBM Java 1.52009-03-04T16:35:48Z2009-03-04T16:35:48ZWe tried that with the latest graphics drivers and still the error occurs. I guess they just need to either keep the foot off the accelerator or get a new card. Thanks for all the help.http://stackoverflow.com/questions/591291/button-text-disappearing-with-4gb-ram-and-ibm-java-1-5/591408#591408Comment by on Button text disappearing with 4Gb Ram and IBM Java 1.52009-03-02T19:27:15Z2009-03-02T19:27:15ZTurns out this was exactly the problem, both developers had the same graphics chipset, Intel G31/G33 Chipset and with hardware acceleration turned down the graphic problems disappeared.http://stackoverflow.com/questions/591291/button-text-disappearing-with-4gb-ram-and-ibm-java-1-5/591410#591410Comment by on Button text disappearing with 4Gb Ram and IBM Java 1.52009-02-26T17:08:28Z2009-02-26T17:08:28ZWe have had the developer use 2 different machines, both machines using the memory from the other one, and on both occassions they see the same problem, but we cant reproduce it on machines in our own office.http://stackoverflow.com/questions/271864/best-way-to-connect-to-mysql-locally/272032#272032Comment by on Best way to connect to MySQL locally?2008-11-07T14:18:53Z2008-11-07T14:18:53Zwindows does support named pipes but SQL server 2005 did have a couple of foibles setting it up in that it sometimes used the wrong path for the pipe. I believe 2008 fixed most of those though.http://stackoverflow.com/questions/271892/is-there-any-fast-way-to-get-an-option-from-a-select-by-value-using-javascriComment by on Is there any fast way to get an <option> from a <select> by value, using JavaScript?2008-11-07T12:42:48Z2008-11-07T12:42:48ZWhat kind of select requires the user to have thousand of options in it?
Perhaps if we had a little more detail we could figure out a more elegant way of implementing it?http://stackoverflow.com/questions/258317/jquery-changing-background-of-parent-div/258319#258319Comment by on Jquery changing background of parent div.2008-11-03T11:44:58Z2008-11-03T11:44:58ZThanks Phil, this works perfectly.
All I need to do now is figure out how to make it work for other elements which need the same functionality but different background images.http://stackoverflow.com/questions/170939/how-to-specify-the-hardware-your-software-needs/170969#170969Comment by on How to specify the hardware your software needs?2008-10-05T15:39:21Z2008-10-05T15:39:21ZThe vm itself doesn't have a clock throttle but you could run a program such as <a href="http://cpu.rightmark.org/products/rmclock.shtml" rel="nofollow">cpu.rightmark.org/products/rmclock.shtml</a> or moslo to throttle the cpu in the vm.http://stackoverflow.com/questions/157361/whats-a-good-non-programming-interview-question-when-hiring-a-programmer/159733#159733Comment by on What's a good non-programming interview question when hiring a programmer?2008-10-02T08:30:20Z2008-10-02T08:30:20Z1. round is the only shape that can be cast in one piece and still have a locking mechanism. (have a protrusion on one side that drops into a notch and then push the cover 2 inches clockwise to lock under a flappy thing)
2. At least 10. (a valid and correct answer that can easily be proven :) http://stackoverflow.com/questions/159038/can-foreign-key-constraints-be-temporarily-disabled-using-tsql/159064#159064Comment by on Can foreign key constraints be temporarily disabled using TSQL?2008-10-01T18:44:13Z2008-10-01T18:44:13Zand you will also need to be aware that when you turn the constraints back on and do a data integrity check, your data may fail and fixng an issue like that can be a nightmare if the failing data is at the end of a long string of linked constraints.