User Turnkey - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T12:37:10Zhttp://stackoverflow.com/feeds/user/13144http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1810450/what-are-the-right-uses-for-curl/1810474#18104741Answer by Turnkey for What are the right uses for cURL?Turnkey2009-11-27T20:08:40Z2009-11-27T20:22:09Z<p>One of it's big use cases is for automating activities such as getting content from another websites by the application. It can also be used to post data to another website and download files via FTP or HTTP. In other words it allows your application or script to act as a user accessing a website as they would do browsing manually. </p>
<p>There are no inherent security problems with it but it should be used appropriately, e.g. use https where required.</p>
<p><a href="http://curl.haxx.se/docs/features.html" rel="nofollow">cURL Features</a></p>
http://stackoverflow.com/questions/1285385/is-recording-possible-using-java-applets/1285392#12853922Answer by Turnkey for Is recording possible using java applets?Turnkey2009-08-16T21:34:10Z2009-08-16T21:34:10Z<p>Yes, it is possible, but only from a "signed" applet. It is strict in that regard because an applet could otherwise be spying on a user without their knowledge. Therefore the applet has to be signed, meaning that the user has to deliberately allow it to run. The "signed" part gives information about the publisher of the applet.</p>
<p><a href="http://java.sun.com/developer/onlineTraining/Programming/JDCBook/signed.html" rel="nofollow">Java Signed Applet Tutorial</a></p>
http://stackoverflow.com/questions/1184382/tomcat-playing-audio/1184497#11844970Answer by Turnkey for Tomcat: playing audioTurnkey2009-07-26T12:47:13Z2009-07-26T12:52:17Z<p>The path should be the relative path and it must be on a folder that is served by the web server. For example if you are serving the webpage that embeds the video from the root and your media file is in a sub-folder called "videos" you would code it as follows:</p>
<pre><code><PARAM NAME="FileName" VALUE="videos/videofilename.wmv">
</code></pre>
<p>You can test that it is visible on your web server by just trying to load the video from the client directly without the embedding, e.g.</p>
<pre><code>http://www.yoursite.com/videos/videofilename.wmv
</code></pre>
http://stackoverflow.com/questions/1026909/what-are-the-file-system-of-cd-and-dvd/1026955#10269553Answer by Turnkey for What are the file system of CD and DVD ?Turnkey2009-06-22T12:32:35Z2009-06-22T12:32:35Z<p><a href="http://en.wikipedia.org/wiki/ISO%5F9660" rel="nofollow">ISO9660</a> (CDFS) is widely used for CD's and <a href="http://en.wikipedia.org/wiki/Universal%5FDisk%5FFormat" rel="nofollow">UDF</a> is widely used for DVD's, although both standards are used for both media types.</p>
http://stackoverflow.com/questions/906566/how-can-i-quickly-improve-my-abilities-as-a-programmer/906612#9066122Answer by Turnkey for How can I quickly improve my abilities as a programmer?Turnkey2009-05-25T12:50:32Z2009-05-25T12:50:32Z<p>Besides picking an interesting project and implementing it from scratch, reading others' code can also be valuable in improving your skills. Scott Hanselman has a good series on reading code: <a href="http://www.hanselman.com/blog/googleresults.html?&sa=Search&domains=www.hanselman.com&sitesearch=www.hanselman.com&client=pub-7789616507550168&forid=1&ie=UTF-8&oe=UTF-8&safe=active&cof=GALT:%23B47B10;GL:1;DIV:%23A9501B;VLC:6F3C1B;AH:center;BGC:FFFFFF;LBGC:336699;ALC:B47B10;LC:B47B10;T:000000;GFNT:A9501B;GIMP:A9501B;FORID:11&hl=en&q=weekly%20source%20code" rel="nofollow">Weekly Source Code</a></p>
http://stackoverflow.com/questions/786891/authenticated-webservice-with-ldap/786949#7869490Answer by Turnkey for Authenticated Webservice with LDAPTurnkey2009-04-24T18:00:33Z2009-04-24T18:00:33Z<p>Check out <a href="http://msdn.microsoft.com/en-us/library/system.directoryservices.protocols.aspx" rel="nofollow">System.DirectoryServices.Protocols</a> and the <a href="http://msdn.microsoft.com/en-us/library/system.directoryservices.protocols.ldapconnection.aspx" rel="nofollow">LdapConnection class</a>.</p>
<p>This namespace is more general for LDAP than the System.DirectoryServices namespace which is more specific to Active Directory. I've found that it's also much better to use if you need to get other attributes specific to LDAP such as pwdChangedTime.</p>
<p>You can can establish an LDAP connection and use the Bind function to check if it can bind to the specific dn of the user given the password.</p>
<pre><code>ldapConnection.Credential = new NetworkCredential(dn, password);
try
{
ldapConnection.Bind();
}
catch (Exception exc)
{
// return failurecode depending on exception
}
// return successcode
</code></pre>
http://stackoverflow.com/questions/729797/can-you-be-too-old-to-start-learning-to-be-a-decent-programmer/729849#7298491Answer by Turnkey for Can you be too old to start learning to be a decent programmer?Turnkey2009-04-08T12:54:30Z2009-04-08T12:54:30Z<p>No, I don't think it's ever too late, especially if it's something you have a passion for. In any event it's a continuous learning experience with new technologies, so even those that have started very young have a lot to learn. As long as you commit to that mindset that there are always new things to learn and improve upon you will be OK.</p>
http://stackoverflow.com/questions/660483/what-are-the-most-common-problems-you-encounter-in-freelance-web-development/660519#6605191Answer by Turnkey for what are the most common problems you encounter in freelance web development?Turnkey2009-03-18T23:40:59Z2009-03-18T23:40:59Z<p>You did a good job enumerating the major ones. I think with large clients you sometimes get some internal dissension about what a product or website should be, and it can cause scope creep. The best way to handle that is to educate them on the hidden costs to schedule and quality. Also it helps to put a development cost and benefit score (simple rank of 1-5 for each) and do a cost/benefit for each one on a spreadsheet, to help them prioritize the features. And make it clear that additional features will be charged separately.</p>
http://stackoverflow.com/questions/367272/which-are-your-best-secrets-tricks-to-achieve-project-scheduling/367287#3672870Answer by Turnkey for Which are your best secrets/tricks to achieve project scheduling?Turnkey2008-12-15T01:50:19Z2009-03-17T09:00:55Z<p>By doing realistic estimation, which means that the tasks must be identified to as detailed a level as possible (best if less than one-day duration tasks). This analysis can also help identify when requirements are not detailed enough. Some developers are not good at estimation so some history of estimates versus actual results can be helpful when trying to adjust expectations.</p>
http://stackoverflow.com/questions/613349/would-you-quit-your-job-if-you-were-told-to-port-an-app-from-java-to-abap/613365#6133651Answer by Turnkey for Would you quit your job if you were told to port an app from Java to ABAP?Turnkey2009-03-05T02:09:40Z2009-03-05T02:09:40Z<p><a href="http://www.joelonsoftware.com/items/2007/12/06.html" rel="nofollow">Where there's muck there's brass.</a></p>
http://stackoverflow.com/questions/604710/what-is-the-best-windows-backup-solution/604728#6047282Answer by Turnkey for What is the best windows backup solution?Turnkey2009-03-03T01:01:43Z2009-03-03T01:01:43Z<p>I've found <a href="http://www.2brightsparks.com/syncback/sbse.html" rel="nofollow">SyncBack</a> by 2BrightSparks to be a good solution for Windows - it's flexible and affordable.</p>
http://stackoverflow.com/questions/590551/sum-columns-with-null-values-in-oracle/590573#5905731Answer by Turnkey for Sum columns with null values in oracleTurnkey2009-02-26T13:35:19Z2009-02-26T13:35:19Z<p>You need to use the NVL function, e.g.</p>
<p>SUM(NVL(regular,0) + NVL(overtime,0))</p>
http://stackoverflow.com/questions/550929/some-suggestions-on-which-net-orm-to-look-at-learning/550977#5509772Answer by Turnkey for Some suggestions on which .NET ORM to look at learningTurnkey2009-02-15T14:48:59Z2009-02-15T14:48:59Z<p>Many discussions on this topic on Stack Overflow:</p>
<p><a href="http://stackoverflow.com/questions/380620/what-object-mapper-solution-would-you-recommend-for-net-closed">What object mapper solution would you recommend for .net?</a></p>
<p><a href="http://stackoverflow.com/questions/67831/what-is-the-best-data-access-paradigm-for-scalability">What is the best data access paradigm for scalability?</a></p>
<p><a href="http://stackoverflow.com/questions/200847/persistence-framework">Persistence framework?</a></p>
<p>Both EF and Nhibernate are considered useful for large projects. Some of the main concerns expressed about EF are lack of lazy loading/persistence ignorance. Nhibernate has a steeper learning curve and requires more manual configuration. </p>
http://stackoverflow.com/questions/548378/what-are-the-main-components-layers-of-a-php-application/548404#5484040Answer by Turnkey for What are the main components/layers of a PHP application?Turnkey2009-02-14T03:09:01Z2009-02-14T03:09:01Z<p>I would add a data access layer as a component that provides the interface to the database.</p>
<p>There are existing patterns that take care of those types of concerns. And there are frameworks that are built upon those patterns that you might want to take a look at, where much of this work has already been done:</p>
<p><a href="http://cakephp.org/" rel="nofollow">Cake PHP</a> </p>
<p><a href="http://solarphp.com/" rel="nofollow">Solar PHP</a></p>
http://stackoverflow.com/questions/522871/how-to-make-sure-a-user-can-only-vote-once-on-an-asp-net-poll/522909#5229091Answer by Turnkey for How to make sure a user can only vote once on an ASP.NET poll.Turnkey2009-02-07T01:34:16Z2009-02-07T01:34:16Z<p>Have a registration that requires email confirmation of registration and make sure the email address is a unique column in the DB among your users. Then tie the vote to the email address. It won't completely prevent a sock puppet who has multiple email addresses but it will at least make it not worth the effort for most.</p>
http://stackoverflow.com/questions/311429/using-with-nolock-table-hint-in-query-using-view-does-it-propagate-within-the-v4Using WITH NOLOCK Table Hint in Query Using View - Does it Propagate Within the View?Turnkey2008-11-22T15:35:55Z2009-02-03T01:46:02Z
<p>If a "WITH NOLOCK" query hint is used on a View in SQL Server, does it propagate that hint to the view definition itself, even if NOLOCK is NOT used for the raw tables in the View definition? The reason to need this is that sometimes the support staff wants to do huge time-consuming queries but would rather not force this lock on all queries using the view within the application itself.</p>
http://stackoverflow.com/questions/499795/given-an-audio-stream-find-when-a-door-slams-sound-pressure-level-calculation/499913#4999131Answer by Turnkey for Given an audio stream, find when a door slams (sound pressure level calculation?)Turnkey2009-02-01T00:41:25Z2009-02-01T00:41:25Z<p>I would imagine that the frequency and amplitude would also vary significantly from vehicle to vehicle. Best way to determine that would be taking a sample in a Civic versus a big SUV. Perhaps you could have the user close the door in a "learning" mode to get the amplitude and frequency signature. Then you could use that to compare when in usage mode.</p>
<p>You could also consider using <a href="http://en.wikipedia.org/wiki/Fourier_analysis" rel="nofollow">Fourier analysis</a> to eliminate background noises that aren't associated with the door close.</p>
http://stackoverflow.com/questions/498865/how-do-i-check-constraints-between-two-tables-when-inserting-into-a-third-table-t/498931#4989310Answer by Turnkey for How do I check constraints between two tables when inserting into a third table that references the other two tables?Turnkey2009-01-31T14:50:13Z2009-01-31T14:50:13Z<p>You might be able to do this by creating a view "WITH SCHEMABINDING" that spans those tables and enforces the collective constraints of the individual tables.</p>
http://stackoverflow.com/questions/497669/powershell-has-anyone-tried-to-install-powershell-on-windows-2000-server/497795#4977950Answer by Turnkey for powershell : has anyone tried to install powershell on windows 2000 server? Turnkey2009-01-31T00:20:10Z2009-01-31T00:20:10Z<p><a href="http://www.ntldr.com/2008/07/26/WindowsPowerShellOnWindows2000.aspx" rel="nofollow">This blog</a> describes a method to do it, but I can't vouch for it.</p>
http://stackoverflow.com/questions/478562/c-how-to-catch-empty-rows-in-a-csv-file-using-csvreader/478624#4786241Answer by Turnkey for C# How to catch empty rows in a CSV file using CSVReader?Turnkey2009-01-26T00:56:14Z2009-01-26T00:56:14Z<p>This particular CSVReader looks to have some good handling of missing fields:</p>
<p><a href="http://www.codeproject.com/KB/database/CsvReader.aspx" rel="nofollow">A Fast CSV Reader</a></p>
<p>You can handle an empty row by using some code like this before invoking the reader:</p>
<pre><code>csv.MissingFieldAction = MissingFieldAction.ReplaceByNull;
</code></pre>
<p>or replace with an empty string:</p>
<pre><code>csv.MissingFieldAction = MissingFieldAction.ReplaceByEmpty;
</code></pre>
<p>Then you could test for an empty row by looping over it after reading it, and if any column is non-null then process the row.</p>
http://stackoverflow.com/questions/476296/sql-server-to-mysql-converter/476362#4763620Answer by Turnkey for SQL Server to mySQL converterTurnkey2009-01-24T17:21:25Z2009-01-24T17:21:25Z<p>There is a toolkit for data migration, available <a href="http://dev.mysql.com/doc/migration-toolkit/en/index.html" rel="nofollow">at this link</a>, but you might have to handle stored procedures manually. Another suggestion, that if you can find a conversion tool to move the SP's to DB2 you may have an easier time, as MySQL procedures are close to DB2 in style.</p>
http://stackoverflow.com/questions/476042/how-to-create-toolbar-in-window-application-using-c/476052#4760522Answer by Turnkey for how to create Toolbar in window Application using C#Turnkey2009-01-24T13:57:36Z2009-01-24T13:57:36Z<p>Drag a "ToolStrip" control from the Toolbox on to your Form.</p>
<p>Here's some doc: <a href="http://msdn.microsoft.com/en-us/library/a5swc13h.aspx" rel="nofollow">ToolStrip Technology Summary</a>.</p>
http://stackoverflow.com/questions/472779/ebay-login-script/472932#4729321Answer by Turnkey for Ebay Login ScriptTurnkey2009-01-23T13:47:02Z2009-01-23T13:47:02Z<p>Looks like you need to get some cookies before posting the login. Here is a link to do that from the libcurl site:</p>
<p><a href="http://curl.haxx.se/libcurl/php/examples/ebay_login.html" rel="nofollow">The ebay_login.php Example</a> (example at bottom of linked page)</p>
http://stackoverflow.com/questions/468045/error-sqldatetime-overflow-must-be-between-1-1-1753-120000-am-and-12-31-9999/468087#4680871Answer by Turnkey for Error - SqlDateTime overflow. Must be between 1/1/1753 12:00:00 AM and 12/31/9999 11:59:59 PM. Turnkey2009-01-22T04:56:51Z2009-01-22T04:56:51Z<p>That usually means a null is being posted to the query instead of your desired value, you might try to run the SQL Profiler to see exactly what is getting passed to SQL Server from linq.</p>
http://stackoverflow.com/questions/467620/what-are-the-differences-and-pros-and-cons-of-these-orm-tools-technologies/467666#4676662Answer by Turnkey for What are the differences and pros and cons of these ORM tools/technologies?Turnkey2009-01-22T00:39:51Z2009-01-22T00:39:51Z<p>There's some good coverage on this topic on Stack Overflow, although maybe not as much on Entity Framework, but it is covered some in the third link.</p>
<p><a href="http://stackoverflow.com/questions/66156/whose-data-access-layer-do-you-use-for-net">Whose Data Access Layer do you use for .NET?</a></p>
<p><a href="http://stackoverflow.com/questions/380620/what-object-mapper-solution-would-you-recommend-for-net-closed">What object mapper solution would you recommend for .NET?</a></p>
<p><a href="http://stackoverflow.com/questions/217655/using-entity-framework-entities-as-business-objects">Using Entity Framework entities as business objects?</a></p>
http://stackoverflow.com/questions/460152/how-do-you-explain-to-a-sales-person-that-programming-is-really-difficult-and-tak/460180#4601801Answer by Turnkey for How do you explain to a sales person that programming is really difficult and takes time.Turnkey2009-01-20T05:10:43Z2009-01-20T05:10:43Z<p>This one may be a good book for non-programmers to understand some of these issues and pitfalls of runaway requirements:</p>
<p><a href="http://rads.stackoverflow.com/amzn/click/1400082471" rel="nofollow">Dreaming in Code: Two Dozen Programmers, Three Years, 4,732 Bugs, and One Quest for Transcendent Software</a></p>
http://stackoverflow.com/questions/457537/reading-ldap-group-member-from-c/457625#4576252Answer by Turnkey for Reading ldap group member from c#Turnkey2009-01-19T13:50:46Z2009-01-19T13:50:46Z<p>Here's a reference about how to in Active Directory: </p>
<p><a href="http://www.codeproject.com/KB/system/everythingInAD.aspx" rel="nofollow">Howto: (Almost) Everything In Active Directory via C#</a></p>
http://stackoverflow.com/questions/456172/how-to-find-all-nodes-in-a-subtree-in-a-recursive-sql-query/456207#4562071Answer by Turnkey for How to find all nodes in a subtree in a recursive SQL query?Turnkey2009-01-19T00:25:58Z2009-01-19T00:25:58Z<p>Some methods were covered previously in this article:</p>
<p><a href="http://stackoverflow.com/questions/38801/sql-how-to-store-and-navigate-hierarchies">SQL - how to store and navigate hierarchies</a></p>
http://stackoverflow.com/questions/455924/is-using-null-to-represent-a-value-bad-practice/455991#4559910Answer by Turnkey for Is using Null to represent a Value Bad Practice ?Turnkey2009-01-18T22:03:29Z2009-01-18T22:03:29Z<p>I don't think NULL is the best way to do it but you might use a separate tinyInt column to indicate that the row in MyRelatedTable is related to everything in MyTable, e.g. MyRelatedTable.RelatedAll. That would make it more explicit for other that have to maintain it. Then you could do some sort of Union query e.g.</p>
<pre><code>SELECT M.ID, R.ID AS RelatedTableID,....
FROM MyTable M INNER JOIN MyRelated Table R ON R.myTableId = M.Id
UNION
SELECT M.ID, R.ID AS RelatedTableID,....
FROM MyTable M, MyRelatedTable R
WHERE R.RelatedAll = 1
</code></pre>
http://stackoverflow.com/questions/455140/which-editor-would-you-give-your-mom-to-let-her-edit-her-own-website/455217#4552170Answer by Turnkey for Which editor would you give your mom to let her edit her own website?Turnkey2009-01-18T14:28:27Z2009-01-18T14:28:27Z<p>WordPress could be a good option and it has some options to install in German and other languages. See <a href="http://codex.wordpress.org/WordPress_in_Your_Language" rel="nofollow">WordPress in Your Language</a> for more information.</p>
http://stackoverflow.com/questions/1622528/database-structure-advice-neededComment by Turnkey on Database Structure Advice NeededTurnkey2009-11-11T02:45:10Z2009-11-11T02:45:10ZI agree with the idea of the tags, because the categories that you describe don't seem hierarchical anyway, for example wood is just a classification and could go on either side of aircraft.http://stackoverflow.com/questions/604273/advice-please-sql-server-identity-vs-unique-identifier-keys-when-using-entity-frComment by Turnkey on Advice Please: SQL Server Identity vs Unique Identifier keys when using Entity FrameworkTurnkey2009-08-17T17:28:02Z2009-08-17T17:28:02ZDid the identity as clustering key work out Ok? I would think there would be some collisions on that during the replication.http://stackoverflow.com/questions/1285417/mysql-table-with-only-a-varchar-as-a-foreign-key/1285426#1285426Comment by Turnkey on MySQL table with only a varchar as a foreign keyTurnkey2009-08-16T22:00:20Z2009-08-16T22:00:20ZAre all of the data really 512 bytes long? Storage should be limited to the size of the record on each row. If possible it would be better to go to an integer primary and foreign key.http://stackoverflow.com/questions/934577/should-i-normalize-my-db-or-not/934599#934599Comment by Turnkey on Should I normalize my DB or not?Turnkey2009-06-01T12:27:27Z2009-06-01T12:27:27Z"YMMV" = "Your Mileage May Vary", as in fuel mileage reported for cars. In other words you may not get exactly the same results for specific cases.http://stackoverflow.com/questions/466296/dropping-leading-zeros/466300#466300Comment by Turnkey on Dropping Leading ZerosTurnkey2009-01-21T17:55:02Z2009-01-21T17:55:02ZAO, I think you will have to add another column called LeadingZero to record the leading 0 (null by default). Then if the leading 0 is non-null then prefix it on the displays.http://stackoverflow.com/questions/455924/is-using-null-to-represent-a-value-bad-practice/455983#455983Comment by Turnkey on Is using Null to represent a Value Bad Practice ?Turnkey2009-01-18T22:13:31Z2009-01-18T22:13:31ZFor sure, remembering this one: <a href="http://www.codinghorror.com/blog/archives/001137.html" rel="nofollow">codinghorror.com/blog/archives/…</a>
http://stackoverflow.com/questions/441777/are-there-any-laws-when-working-with-confidential-financial-data/441787#441787Comment by Turnkey on Are there any laws when working with confidential financial data?Turnkey2009-01-14T17:57:17Z2009-01-14T17:57:17ZYes, and thanks to bad actors like Enron and Madoff those kind of regulations are unlikely to ease up.http://stackoverflow.com/questions/429006/why-do-web-applications-insist-on-defining-strict-password-rules/429015#429015Comment by Turnkey on Why do web applications insist on defining strict password rules?Turnkey2009-01-09T18:16:42Z2009-01-09T18:16:42ZUse KeePass in combination with Dropbox so they are on all of your machines and always synched. Be sure to use the Private Key file on your machines to keep it more secure and not password-dependent on the KeyPass itself.http://stackoverflow.com/questions/417579/when-to-say-when-with-a-startup-company/417588#417588Comment by Turnkey on When to say when with a startup company?Turnkey2009-01-06T18:37:40Z2009-01-06T18:37:40ZYou can do some networking looking for a replacement while looking for your future opportunity. Perhaps you'll find someone in a bigger company that would prefer a startup and you could affect a "swap" or alternate position in their company. In any event work out some overlap for knowledge transfer.http://stackoverflow.com/questions/398100/sql-selecting-window-around-particular-row/398247#398247Comment by Turnkey on SQL Selecting "Window" Around Particular RowTurnkey2008-12-29T18:56:29Z2008-12-29T18:56:29ZThanks le dorfier, that solves the issue with the limits, I'll edit as suggested.http://stackoverflow.com/questions/394651/what-program-can-i-use-to-remotely-help-clients/394653#394653Comment by Turnkey on What program can I use to remotely help clients?Turnkey2008-12-27T14:38:25Z2008-12-27T14:38:25ZNot much installation really, just running a downloaded executable that already has the security imbedded in it.http://stackoverflow.com/questions/370518/how-do-i-start-with-working-sub-version-delphi/370531#370531Comment by Turnkey on How do I start with working Sub-Version + Delphi?Turnkey2008-12-16T13:34:38Z2008-12-16T13:34:38ZYes, but I found this install tool to be an easy way to set up a local server on Windows: <a href="http://www.visualsvn.com/server/" rel="nofollow">visualsvn.com/server</a>http://stackoverflow.com/questions/366915/limit-per-criteria/367353#367353Comment by Turnkey on Limit Per CriteriaTurnkey2008-12-15T15:43:11Z2008-12-15T15:43:11ZDo you have indexes set up for the columns in the WHERE criteria?http://stackoverflow.com/questions/366915/limit-per-criteria/367367#367367Comment by Turnkey on Limit Per CriteriaTurnkey2008-12-15T13:40:27Z2008-12-15T13:40:27ZIt's because the <7 means only the categories that have less than 7 articles which is not what you originally wanted.http://stackoverflow.com/questions/366915/limit-per-criteria/366950#366950Comment by Turnkey on Limit Per CriteriaTurnkey2008-12-15T01:17:18Z2008-12-15T01:17:18ZI defer to the wisdom of Bill on this one whose suggested method is much better.