User Adam - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T03:54:59Z http://stackoverflow.com/feeds/user/13320 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1797484/sql-insert-as-1-query-with-all-fields-or-multiple-queries/1797896#1797896 0 Answer by Adam for SQL: insert as 1 query with all fields, or multiple queries? Adam 2009-11-25T15:55:57Z 2009-11-25T15:55:57Z <p>For a single row, you should really be doing a single INSERT. If there is concern about a column value not being valid, more emphasis should be placed in the application layer to validate the code (data type, data length, etc) before making the INSERT.</p> <p>You'll have more thorough code this way and will make much less of an impact on the application server, database server, and network at the same time.</p> http://stackoverflow.com/questions/260597/in-codeigniter-how-can-i-have-php-error-messages-emailed-to-me/260655#260655 7 Answer by Adam for In CodeIgniter, how can I have PHP error messages emailed to me? Adam 2008-11-04T02:40:08Z 2009-07-13T13:33:34Z <p>You could extend the Exception core class to do it.</p> <p>Might have to adjust the reference to CI's email class, not sure if you can instantiate it from a library like this. I don't use CI's email class myself, I've been using the Swift Mailer library. But this should get you on the right path.</p> <p>Make a file MY_Exceptions.php and place it in /application/libraries/</p> <pre><code>class MY_Exceptions extends CI_Exceptions { function My_Exceptions() { parent::CI_Exceptions(); } function log_exception($severity, $message, $filepath, $line) { $severity = ( ! isset($this-&gt;levels[$severity])) ? $severity : $this-&gt;levels[$severity]; log_message('error', 'Severity: '.$severity.' --&gt; '.$message. ' '.$filepath.' '.$line, TRUE); $this-&gt;load-&gt;library('email'); $this-&gt;email-&gt;from('your@example.com', 'Your Name'); $this-&gt;email-&gt;to('someone@example.com'); $this-&gt;email-&gt;cc('another@another-example.com'); $this-&gt;email-&gt;bcc('them@their-example.com'); $this-&gt;email-&gt;subject('error'); $this-&gt;email-&gt;message('Severity: '.$severity.' --&gt; '.$message. ' '.$filepath.' '.$line); $this-&gt;email-&gt;send(); } } </code></pre> http://stackoverflow.com/questions/556971/how-to-layout-folders-locally-and-in-svn-when-using-eclipse/557395#557395 1 Answer by Adam for How to layout folders locally and in SVN when using eclipse Adam 2009-02-17T15:34:17Z 2009-02-17T15:34:17Z <p>In both Macromedia Dreamweaver and Eclipse I've been doing the following:</p> <pre><code>Working folder: C:\Development\ \ProjectA \ProjectB \ProjectC </code></pre> <p>Each project has its own repository, and each checkout is only of the /trunk/.</p> <p>Note: For Eclipse, don't create a SVN Repository project, just create the "Java App" or "PHP App" project like you normally would, and use an external program to do the checkout into that folder. Eclipse will then automagically detect the .svn information and allow you to use the SVN tools, while still using the proper workspace.</p> http://stackoverflow.com/questions/555532/source-check-in-analysis-software-installed-now-what/555583#555583 0 Answer by Adam for source check-in analysis software installed ... now what? Adam 2009-02-17T05:09:44Z 2009-02-17T05:09:44Z <p>I wouldn't ignore it completely, but unless you are concerned about your volume/quality of commits, you really should have nothing to worry about.</p> <p>Having some experience with ohloh.net, I've seen how some developers can <strong>look</strong> really good by committing hundreds of lines of <em>new</em> code vs someone who is maintaining code with a handful of line changes, and obviously we are talking apples and oranges here. Sure, they could have a metric for add vs update commits, but that all depends on who is assigned what, etc, etc. Had one developer who would sit on code for weeks or months at a time and do these MASSIVE commits, totally would throw off the "when you deploy metric".</p> <p>Another issue with source control metrics is when you add SCM to an existing project way after development or deployment. I've had coworkers work on a section of code that was never version'd and they were responsible for getting it all added, and to someone not familiar with the life of the project, would think this developer had written all the 'initial commit' themselves when this was not the case (ok, it was my code, i admit it. lol)</p> <p>Just make sure you Q/A your own work well and people don't have to clean up after you. </p> http://stackoverflow.com/questions/546621/how-should-i-be-implementing-my-acl-in-a-web-application/546692#546692 1 Answer by Adam for How should I be implementing my ACL in a web application? Adam 2009-02-13T16:47:18Z 2009-02-13T16:47:18Z <p>I'm sure you've found phpgacl already, but here's a link in case you haven't. It can be a little rough to wrap your head around at first, and certainly the library is tricky (time consuming) to implement into a project, but the documentation and demo are EXCELLENT reference points.</p> <p><a href="http://phpgacl.sourceforge.net/" rel="nofollow">PHP Generic Access Control Lists</a></p> http://stackoverflow.com/questions/542396/coldfusion-linux-enctype/546425#546425 0 Answer by Adam for Coldfusion linux enctype Adam 2009-02-13T15:46:32Z 2009-02-13T15:46:32Z <p>I'm wondering if the temp folder that CF is trying to save the file to is either inaccessible (permissions) or not configured properly. </p> <p>You should try using the CFFILE tag and specify a folder you have access to.</p> http://stackoverflow.com/questions/523346/continue-a-classic-asp-site-or-insist-a-language-change 1 Continue a Classic ASP site or insist a language change? Adam 2009-02-07T07:00:46Z 2009-02-12T17:51:11Z <p>So today I was in a meeting to assist putting together a proposal to give one of our clients on how we can improve their web site. After two hours we had a pretty hefty list of new features and resource upgrades that coupled with their latest request for a site redesign, would put us in a good position to suggest a 'rewrite' in another language.</p> <p>The existing site is all Classic ASP... done very poorly. Every single function, definition, business logic, etc. is all found in a single file containing several thousand lines of code which unfortunately crashes our IDE, forcing us to use Notepad, not exactly optimal. Some sections of the site are dynamic, while others generate static HTML pages, remembering which are which has caused a lot of trouble in the past where pages suddenly revert and we're scrambling to recover.</p> <p>Another big problem for us is Classic ASP was not our language of choice, the shop I'm in is primarily ColdFusion, so our resources are limited when it comes to who can actually maintain the site; but in the early stages of development the client controlled the hosting and dictated the language, this has since changed and we now host the site internally and have full control. The database for some reason is also MySQL, which an equal number of the staff are familiar with, further limiting resources.</p> <p>What we would like to do is utilize a CMS we've been developing over many years and have polished into a fine system, and transfer all of their existing content into it, developing and modifying whatever is necessary to not only get the site to where it is at now, but implement the new features we will be proposing to them.</p> <p>Converting to ColdFusion for us will greatly open up human and hardware resources... more developers, and more machines configured to run a ColdFusion site should something happen to the primary server. For the client however, our turnaround has been very respectable and they could totally take a "If it is not broke, don't fix it" attitude.</p> <p>While Classic ASP is still a part of Windows 2008, what really is the future of this language when it can fairly easily be converted to run under .NET? </p> <p>We also need to be prepared to convince the client NOT to switch to .NET. Frankly most of us are not a big fan of it, and besides myself, we have maybe 1 other programmer capable of working in it. This particular site just isn't sophisticated enough to warrant .NET (blasphemy I know, but in my experience .NET can be overkill for simple web sites).</p> <p>We are working on a cost analysis of performing the upgrades to the existing site, as opposed to making the transition to ColdFusion; and are willing to eat some of the cost if it means a better environment for both parties. But what are good arguments we can bring up to them that would help sweeten the deal?</p> <p>Edit: I'm not talking about a total rewrite, we have a custom CF CMS that would take a lot less time to modify than to start from scratch. The estimate was about 40 hours to implement back-end, and I believe 30 hours for front-end. Meeting is tomorrow! <em>fingers crossed</em>!</p> http://stackoverflow.com/questions/500119/do-you-use-protective-gear-while-programming/500153#500153 0 Answer by Adam for Do you use protective gear while programming? Adam 2009-02-01T03:48:49Z 2009-02-01T03:48:49Z <p>if you haven't already, be sure to make sure your chair/desk/monitor alignment are optimal.</p> <p><a href="http://images.google.com/images?q=computer%20posture%20chart&amp;oe=utf-8&amp;rls=com.ubuntu:en-US:unofficial&amp;client=firefox-a&amp;hl=en&amp;um=1&amp;ie=UTF-8&amp;sa=N&amp;tab=wi" rel="nofollow">examples of good computer setups</a></p> <p>i myself have a nice padded armrest to take stress off my elbows.</p> <p>i also have to use the bean bag cushions in front of my keyboard and mouse so my wrists aren't touching any hard surfaces. <a href="http://www.imakproducts.com/" rel="nofollow">imak products</a></p> <p>make sure you get up and stretch often too!</p> http://stackoverflow.com/questions/493223/sql-drop-time-in-datetime/493643#493643 -2 Answer by Adam for SQL Drop Time in DateTime Adam 2009-01-29T21:59:57Z 2009-01-29T21:59:57Z <p>My favorite way to only display (and compare) on the date is to use:</p> <pre><code>convert(char(10),getdate(),101) </code></pre> <p>where getdate() can be your datetime value.</p> <p>i believe it converts to the format of MM/DD/YYYY</p> http://stackoverflow.com/questions/443432/sql-server-2000-backup-directly-to-a-separate-server/443468#443468 1 Answer by Adam for sql server 2000 backup directly to a separate server Adam 2009-01-14T15:55:33Z 2009-01-14T15:55:33Z <p>I'm not sure if SO is escaping your destination, but it should read:</p> <pre><code>'\\servername\f$\Backup\myDB_backup.bak' </code></pre> <p>(There's two \'s prefixing the server name)</p> <p>SQL Server will attempt connecting to this network share as the user that SQL Server's service is running as. You might need to run SQL Server as another account that matches an account with priveleges to that destination.</p> <p><a href="http://searchsqlserver.techtarget.com/tip/0,289483,sid87_gci1131243,00.html" rel="nofollow">Troubleshooting SQL Server backup and restore dilemmas</a></p> http://stackoverflow.com/questions/441018/replacing-spaces-with-underscores-in-javascript/441036#441036 4 Answer by Adam for Replacing spaces with underscores in JavaScript? Adam 2009-01-13T22:11:26Z 2009-01-13T22:11:26Z <p>try this:</p> <pre><code>key=key.replace(/ /g,"_"); </code></pre> <p>that'll do a global find/replace</p> <p><a href="http://www.w3schools.com/jsref/jsref_replace.asp" rel="nofollow">javascript replace</a></p> http://stackoverflow.com/questions/440779/is-there-any-reason-for-numeric-rather-than-int-in-t-sql/440872#440872 0 Answer by Adam for Is there any reason for numeric rather than int in T-SQL? Adam 2009-01-13T21:32:26Z 2009-01-13T21:32:26Z <p>It is possible they spend a LOT of time in MS Access and see 'Number' often and just figured, its a number, why not use numeric?</p> <p>Based on your findings, it doesn't sound like they are the optimization experts, and just didn't know. I'm wondering if they used schema generation tools and just relied on them too much. </p> <p>I wonder how efficient an index on a decimal value (even if 0 scale is set) for a primary key compares to a pure integer value. </p> <p>Like Mark H. said, other than the indexing factor, this particular scenario likely isn't growing the database THAT much, but if you're looking for ammo, I think you did find some to belittle them with.</p> http://stackoverflow.com/questions/432144/cross-browser-ajax-function-to-dynamically-load-html/432272#432272 9 Answer by Adam for Cross browser AJAX function to dynamically load HTML Adam 2009-01-11T02:55:47Z 2009-01-11T02:55:47Z <p>I would have to agree, don't go reinventing the wheel, or in this case, AJAX. </p> <p>JQuery and Prototype do an excellent job of letting you NOT have to deal with cross-browser support, and greatly simplifying Javascript type programming. I fell into JQuery first so I'm biased towards it, and from what I've seen the library is a little smaller (read: faster in the browser), but Prototype I believe has been around longer and has TONS of plugins and examples out there. Ruby on Rails also by default uses Prototype. Funny enough, the code in both looks very similar and takes little rewriting to change libraries.</p> <p><a href="http://docs.jquery.com/Tutorials" rel="nofollow">JQuery Tutorials</a> &lt;-- Just head on down to the AJAX section</p> http://stackoverflow.com/questions/431175/what-was-your-first-computer-game-that-got-you-interested-in-computers/432261#432261 3 Answer by Adam for What was your first computer game that got you interested in computers? Adam 2009-01-11T02:51:04Z 2009-01-11T02:51:04Z <p>I think the first game I was ever really hooked on was 'Bards Tale'. Great RPG game and at the time, the 'graphics' were just awesome.</p> <p>ALL of the Infocom (?) series like Zork, Leather Goddess's of Phobos, etc. I was reading the Zork 'pick your own adventure' at the time so the game was awesome, but honestly I found the book easier to get sucked into.</p> <p>Once I moved on to a C128D from the Apple ][e, it was over from there, starting learning BASIC and never stopped coding.</p> http://stackoverflow.com/questions/429622/what-do-you-deploy-to-clients-svn-branches-or-tags/429661#429661 0 Answer by Adam for What do you deploy to clients SVN branches or tags Adam 2009-01-09T20:45:17Z 2009-01-09T20:45:17Z <p>Since the source control concept is still pretty new here, especially SVN, we work off the trunk alone. Works great until we have commits that aren't supposed to go live yet, and the person deploying at the time isn't aware of that.</p> <p>Once everyone is comfortable with SVN here and I can get at least one other person familiar with merging, I'm going to setup a 'live' branch where all approved commits for production can be merged into.</p> <p>Tags are nice because you can put names to a development cycle, 'beta', 'alpha', 'release candidate 1', etc. But the most important thing you need is a good branch you can rely on for production use. Tags just make it easier to determine milestones.</p> http://stackoverflow.com/questions/425975/can-i-have-one-project-in-two-svn-repositories/426213#426213 1 Answer by Adam for Can I have one project in two SVN repositories? Adam 2009-01-08T22:08:11Z 2009-01-08T22:08:11Z <p>Like meador said you could setup SSH tunnels to tunnel through your workstation in the office while you're at home, and gain access to the office SVN. </p> <p>A great guide for setting up SSH on Windows can be found here: <a href="http://pigtail.net/LRP/printsrv/cygwin-sshd.html" rel="nofollow">Cygwin SSH for Windows</a></p> <p>I did this for a while to get remote desktop access until I was able to setup a proper SSH server with a port open on the firewall.</p> <p>What you do is from your office workstation, make an SSH connection to your home machine, or optionally a dedicated home server. The parameters for that initial connection would provide a -R (remote) tunnel which is essentially allowing the remote machine to come back through the line on the specified port.</p> <p>For example, if you issue the following command, all traffic which comes to port 1234 on the server will be forwarded to port 23 on the client. See Remote tunnel.</p> <p>ssh2 -R 1234:: username@sshserver ^^ from <a href="http://www.ssh.com/support/documentation/online/ssh/adminguide-zos/55/Remote_Tunnels.html" rel="nofollow">SSH</a></p> <p>Then on the home machine, you do something like svn://localhost:1234 and that would gain you access to SVN in the office. </p> <p>*NOTE: I wouldn't recommend doing this without talking to your admins first, because they can get real touchy when you bypass their security... trust me, i know. ;-)</p> http://stackoverflow.com/questions/341844/redirect-multiple-domains-with-same-ip-address/341901#341901 0 Answer by Adam for Redirect Multiple Domains with Same IP Address Adam 2008-12-04T20:16:55Z 2008-12-31T18:21:40Z <p>For the CNAME approach you need to pick ONE domain name and make that your primary. So make www.example.com the go-to, and every OTHER domain name redirects to this one. Then you can avoid the infinite loop.</p> <p>There is also a way to setup a configuration on the server so that browsers will allow multiple domains to look at a single cookie, in this case, www.example.com, then when www.examples.com and www.ex-ample.com try to read www.example.com's recaptha session info, it will work. This would allow you to still have multiple url's in the browser, and support shared sessions.</p> <p>Personally I would just redirect them all to a single domain, MUCH easier to implement.</p> <p>so do:</p> <pre><code>127.0.0.1 A example.com www.exmaple.com CNAME example.com examples.com CNAME example.com www.examples.com CNAME example.com </code></pre> <p>etc.</p> <p>EDIT: Yes, I was asleep when I wrote this. This is only part of the solution, I posted the remainder of it below.</p> http://stackoverflow.com/questions/341844/redirect-multiple-domains-with-same-ip-address/403693#403693 0 Answer by Adam for Redirect Multiple Domains with Same IP Address Adam 2008-12-31T18:20:49Z 2008-12-31T18:20:49Z <p>Ok, on top of my CNAME solution, you would have to do the following:</p> <p>An IIS solution would be to setup 2 sites in the IIS Manager:</p> <ol> <li>example.com (set in host header)which is the actual site pointing to the proper home directory.</li> <li>all other domains will be setup under one 'web site' with their host headers added in Properties->Web Site->Advanced. For the home directory, make it a redirection URL to example.com.</li> </ol> <p>The problem with this approach is I believe a request going to www.examples.com/somepage.htm will get forwarded to example.com/. (Will not point to example.com/somepage.htm)</p> <p>Now what you could do in IIS7 (or IIS6 with Isapi_Rewrite addon) is setup an .htaccess entry on the redirection web site to send all traffic to the example.com and append the path and query string information. </p> http://stackoverflow.com/questions/398600/why-would-someone-develop-a-new-application-in-cold-fusion/402241#402241 2 Answer by Adam for Why would someone develop a new application in Cold Fusion? Adam 2008-12-31T03:35:33Z 2008-12-31T03:35:33Z <p>I'm not sure what losses you ate on this 'mistake', but did it really outweigh the costs of the CF Pro license? Did you even get a chance to test the application for accuracy against the specifications and did they deliver a functioning application that wasn't full of bugs and errors?</p> <p>Myspace uses CF for their service, I believe it is built on Fusebox (based on the URL's and html source I've seen)... I'd hardly discredit CF for any application if it can run that site. </p> <p>I started web development back in the early 90's and there were 2 options, CF and ASP. Of the two, CF had better session management and was just easier to develop HTML sites in, even knowing VB/C/C++ in Visual Studio.</p> <p>Looking at the sheer lifetime of the platform, would you trust a product that has only been around &lt; 5-10 years, or a product that has gone through major releases and upgrades and enterprise usage > 10 years? Yes, I hate paying the license to run it on my server(s) as well, but hey, it's a small price to pay when you have an application framework already developed and can turn a project around quickly to a client. </p> <p>Yes, I also develop in PHP, Ruby, .NET, and a few other languages, my default choice for web is PHP. My day job unfortunately is in a CF shop so that's what we develop in. Sure I have my gripes with CF, but the same could be said for any other language.</p> <p>How did you not preview any of the progress on the site before getting to the "few thousand dollars" mark?</p> <p>I am also kind of shocked the hosting requirements never came up, such as the standard:</p> <ol> <li>web server</li> <li>database</li> <li>operating system</li> </ol> http://stackoverflow.com/questions/41010/smarty-integration-into-the-code-igniter-framework/364733#364733 1 Answer by Adam for Smarty integration into the Code Igniter framework. Adam 2008-12-13T03:04:29Z 2008-12-13T03:04:29Z <p>The CI template system is VERY lightweight. I use Smarty with my CI and it works like a charm. </p> <p>I used the following forum post as a starter on getting CI implemented.</p> <p><a href="http://codeigniter.com/forums/viewthread/44719/" rel="nofollow">Smarty in CodeIgniter</a></p> http://stackoverflow.com/questions/346980/what-code-igniter-authentication-library-is-best/364722#364722 0 Answer by Adam for What Code Igniter authentication library is best? Adam 2008-12-13T02:53:36Z 2008-12-13T02:53:36Z <p>Also take a look at <a href="http://www.kaydoo.co.uk/projects/backendpro" rel="nofollow">BackendPro</a></p> <p>Ultimately you will probably end up writing something custom, but there's nothing wrong with borrowing concepts from DX Auth, Freak Auth, BackendPro, etc.</p> <p>My experiences with the packaged apps is they are specific to certain structures and I have had problems integrating them into my own applications without requiring hacks, then if the pre-package has an update, I have to migrate them in.</p> <p>I also use Smarty and ADOdb in my CI code, so no matter what I would always end up making major code changes.</p> http://stackoverflow.com/questions/364622/should-i-buy-ruby-1-8-books-or-wait-for-ruby-1-9-books/364715#364715 0 Answer by Adam for Should I buy Ruby 1.8 Books or wait for Ruby 1.9 Books? Adam 2008-12-13T02:47:46Z 2008-12-13T02:47:46Z <p>Since 1.9 will likely go through a slew of changes in the first few weeks/months of release, probably safest to get the Ruby 1.8 book, learn the stable version of the environment, and if you find yourself having to upgrade to 1.9 for a new feature, or get involved in a project using 1.9, at least you'll have a solid foundation to advance from, and you'll only have to learn the nuances of the newer release.</p> <p>Ruby is awesome about allowing multiple versions to run on the same system, with the application determining to run the newest, or a specified release. </p> <p>Ruby is not so awesome on legacy applications that get broken along the way, however, I'd rather they break old applications in favor of releasing new versions that are revolutionary, not just bug fixes and feature hacks.</p> http://stackoverflow.com/questions/345056/diagnosing-programming-errors/345168#345168 0 Answer by Adam for Diagnosing Programming Errors Adam 2008-12-05T21:16:40Z 2008-12-05T21:16:40Z <p>Stored procedures can be difficult to debug because if the execution of the CREATE/ALTER procedure returns a 'command(s) completed successfully', then your left with a logic error if something does not work... generally. Of course if your doing dynamic sql inside that SP and use executesql or something along those lines, u can break something, but those are usually fairly obvious errors.</p> <p>The logic problems come down to good design and better testing of flow. </p> <p>With the example provided, the extra space occured on the code side, and probably could have been trimmed before being passed as an argument to the stored procedure, this does not sound like a SP issue per say, especially when the test works in the query analyzer.</p> <p>Another big problem is if you have nested SP's, and your code only sees the initial SP. THOSE are real fun to debug. </p> <p>The only approach I know is to re-enact what the code is attempting and determine where the logic/syntax flaw is.</p> http://stackoverflow.com/questions/345080/what-should-computer-science-be-called/345140#345140 0 Answer by Adam for What should 'Computer Science' be called? Adam 2008-12-05T21:06:05Z 2008-12-05T21:06:05Z <p>Initially I attended college for a BS in CS, but after already having a decent Full time job I took leave. Later when I returned, the degree was a BS in Information Technology (IT) which honestly is much more applicable to the kind of work that most programmers who leave college will end up at. </p> <p>It is also nice having the diversity of tech support in both hardware and software, networking, etc. Kind of like attending a University where they want you well versed in a few fields, not just focused on a single area.</p> http://stackoverflow.com/questions/342714/how-do-i-get-a-php-script-to-send-and-receive-data-from-an-already-running-proces/342769#342769 1 Answer by Adam for How do I get a PHP script to send and receive data from an already running process? Adam 2008-12-05T02:50:57Z 2008-12-05T02:50:57Z <p>For PHP, your talking about interfacing through the shell right? It would all depend on the telnet client you are trying to hook up with, and what CLI options it supports. Opening a stream to this would probably require having each telnet session outputting its' STDIO to a text file, and then having PHP read that text file and displaying the 'difference'.</p> <p>With Fsockopen() in PHP, you really don't need to interface with another program though, you can run socket commands directly in PHP and get the results there.</p> <p><a href="http://us3.php.net/manual/en/function.fsockopen.php#79160" rel="nofollow">PHP:Fsockopen</a></p> http://stackoverflow.com/questions/341813/would-little-man-computer-programming-be-a-good-interview-project/341892#341892 1 Answer by Adam for Would Little Man Computer Programming be a good Interview Project? Adam 2008-12-04T20:13:27Z 2008-12-04T20:13:27Z <p>Definitely depends on the kind of job your interviewing for and what you are looking for in an employee. I've never heard of LMC before, the classes I took for my BS were Assembler and Compiler, which touched on this subject.</p> <p>If you're trying to weed out the experienced and devoted developers from the hobbyists, then sure, this could be a worthwhile trip. A lot of amateur developers will see a new language, especially one that is reduced English and freeze, others will see this for what it is and welcome the challenge.</p> <p>Also consider that some people just don't have time to learn a new syntax/language, and could 'fail' because of this, ie. family obligations, commutes, life in general.</p> <p>For a low-mid range job I certainly wouldn't do it between 1st and 2nd interview. I also would make sure not to 'grade' someone on completeness or accuracy, and more in the execution (did they understand the task) and personality of it (were they p/o'd they had homework, did they enjoy it, etc.)</p> <p>Now I'm gonna spend the rest of my day writing LMC's! :-)</p> http://stackoverflow.com/questions/341178/how-can-i-merge-in-a-new-folder-structure-to-svn/341206#341206 2 Answer by Adam for How can I merge in a new folder structure to SVN? Adam 2008-12-04T16:25:02Z 2008-12-04T16:25:02Z <p>Would be so much easier if you could give them SVN access to the folders they need, and let them manage it. :-)</p> <p>Doh, Tim hit Post before I did!</p> <p>The only way to streamline what your doing is scripting the entire process of running the diff, getting the deleted/removed files, and feeding that into the svn -delete. Then at least you would have 1 command to run with a source and target folder. </p> <p>Ideally you want to just give the remote developers access to SVN, like Tim said, give them a branch if you can't lock down folders, but you'll still end up running merges then (with a branch).</p> http://stackoverflow.com/questions/330482/best-way-to-save-a-ordered-list-to-the-database-while-keeping-the-ordering/335050#335050 1 Answer by Adam for Best way to save a ordered List to the Database while keeping the ordering Adam 2008-12-02T18:59:34Z 2008-12-02T18:59:34Z <p>I wouldn't recommend the A, AA, B, BA, BB approach at all. There's a lot of extra processing involved to determine hierarchy and inserting entries in between is not fun at all.</p> <p>Just add an OrderField, integer. Don't use gaps, because then you have to either work with a non-standard 'step' on your next middle insert, or you will have to resynchronize your list first, then add a new entry.</p> <p>Having 0...N is easy to reorder, and if you can use Array methods or List methods outside of SQL to re-order the collection as a whole, then update each entry, or you can figure out where you are inserting into, and +1 or -1 each entry after or before it accordingly. </p> <p>Once you have a little library written for it, it'll be a piece of cake.</p> http://stackoverflow.com/questions/334919/mass-insert-into-sql-server/335033#335033 2 Answer by Adam for Mass Insert Into Sql Server Adam 2008-12-02T18:55:15Z 2008-12-02T18:55:15Z <p>Put your data to be imported into a csv file and run the bcp utility on the data. You can't get any faster with sequential calls inserting single rows at a time, you certainly need a bulk utility if you want performance.</p> <p>The SQLBulkCopy class will allow you to transmit all the data in a collection so the server can process everything at once, eliminating the back and forth. So if you want to avoid creating temporary files (which I would), then look to that class.</p> <p>Just having the connection remain open is a good start, but you still have the overhead of sending a row, having SQL store it, return a result, and then you must iterate to the next row.</p> http://stackoverflow.com/questions/332003/why-does-making-simple-edits-then-uploading-crash-my-site/332179#332179 2 Answer by Adam for Why does making simple edits then uploading crash my site? Adam 2008-12-01T20:56:16Z 2008-12-01T20:56:16Z <p>Sounds like your running into the Mac&lt;->PC FTP problem. I have a designer who uses Mac and when I had a Windows development environment (I'm now Linux), I had to run his files through a filter as well or I'd run into the same problem.</p> <p>Your FTP program (or however your uploading the file) is probably set to Binary mode to transfer text files, try switching it to ASCII, I believe that's the fix for this issue, and your host won't have to translate your files.</p> <p><a href="http://www.websiterepairguy.com/articles/os/crlf.html" rel="nofollow">How to Transfer Text Files Between Linux, Macintosh, and Microsoft Windows Operating Systems </a></p> <p><a href="http://www.dos2unix.org/" rel="nofollow">dos2unix manual</a></p> http://stackoverflow.com/questions/1883982/which-will-be-faster-out-of-these-two-queries/1883993#1883993 Comment by Adam on Which will be faster out of these two queries? Adam 2009-12-10T22:13:22Z 2009-12-10T22:13:22Z So wouldn't the IN statement be a fraction slower than the OR's since the db engine would need to make the translation? http://stackoverflow.com/questions/612423/sql-need-to-limit-the-resultset-based-on-a-subquery Comment by Adam on SQL: Need to limit the resultset based on a subquery Adam 2009-03-04T21:58:39Z 2009-03-04T21:58:39Z It is a shame that there is no identifier for each collection, if you have a collection span across 2 days, or two collections overlap, you're going to have trouble. http://stackoverflow.com/questions/515484/stored-procedures-are-timing-out-intermittently/583795#583795 Comment by Adam on Stored procedures are timing out intermittently! Adam 2009-02-24T22:04:42Z 2009-02-24T22:04:42Z Was the PK integer based? If it was, no sense in clustering sequential data (right?). I've had situations in SQL2000 where a table had to be fully recreated before an index would be 'repaired', that even removing/reindexing couldn't fix. http://stackoverflow.com/questions/515484/stored-procedures-are-timing-out-intermittently/515505#515505 Comment by Adam on Stored procedures are timing out intermittently! Adam 2009-02-24T22:01:40Z 2009-02-24T22:01:40Z I've seen this happen to views too where they need to be recreated after the source table(s) changed. Definitely worth a try. http://stackoverflow.com/questions/566950/is-php-allowed-to-modify-htaccess-file-in-current-folder Comment by Adam on Is PHP allowed to modify .htaccess file in current folder? Adam 2009-02-19T20:23:43Z 2009-02-19T20:23:43Z It is not advisable to let PHP manage the .htaccess on the fly like that, if it were compromised, bad things happen. I'm guessing there's SELinux or some other layer of security preventing PHP from doing this just for that reason. I agree with Chad Birch, take more of a MVC approach. http://stackoverflow.com/questions/557653/how-do-you-check-if-the-server-is-executing-the-php-script/557719#557719 Comment by Adam on How do you check if the server is executing the PHP script? Adam 2009-02-17T20:31:14Z 2009-02-17T20:31:14Z Should talk to your host, maybe shell access is an option they just don't enable by default. I do that for most of my clients. If your in a plesk environment, the security is so locked down, they should have little concern. http://stackoverflow.com/questions/542396/coldfusion-linux-enctype/546379#546379 Comment by Adam on Coldfusion linux enctype Adam 2009-02-13T15:46:53Z 2009-02-13T15:46:53Z great minds think alike :-) http://stackoverflow.com/questions/523346/continue-a-classic-asp-site-or-insist-a-language-change/541905#541905 Comment by Adam on Continue a Classic ASP site or insist a language change? Adam 2009-02-12T17:53:09Z 2009-02-12T17:53:09Z Yup, meeting is tomorrow and we're giving them the #'s for the conversion and for the maintenance. We've outlined the fact that Classic ASP job pool is dwindling and now is the best time for them to convert considering the amount of changes they already want; plus looking to the future. http://stackoverflow.com/questions/523346/continue-a-classic-asp-site-or-insist-a-language-change/523972#523972 Comment by Adam on Continue a Classic ASP site or insist a language change? Adam 2009-02-10T16:23:33Z 2009-02-10T16:23:33Z I haven't followed BlueDragon in a long time. Years ago they only had an alternative to the CF Server by running compiled CF apps. BD.Net sounds very cool and could be a great segway from some of our .NET clients into CFML http://stackoverflow.com/questions/523346/continue-a-classic-asp-site-or-insist-a-language-change/525012#525012 Comment by Adam on Continue a Classic ASP site or insist a language change? Adam 2009-02-09T16:47:59Z 2009-02-09T16:47:59Z This is basically the approach we are going. I was hoping for something more concrete, thank you though! http://stackoverflow.com/questions/523346/continue-a-classic-asp-site-or-insist-a-language-change/523972#523972 Comment by Adam on Continue a Classic ASP site or insist a language change? Adam 2009-02-09T16:46:33Z 2009-02-09T16:46:33Z Doesn't BlueDragon .NET require an enterprise license to be able to compile the CFML into a java app? http://stackoverflow.com/questions/523346/continue-a-classic-asp-site-or-insist-a-language-change/523511#523511 Comment by Adam on Continue a Classic ASP site or insist a language change? Adam 2009-02-09T16:24:17Z 2009-02-09T16:24:17Z I love PHP, it is not an option here. Tell the client I don't know how to do what exactly? We CAN continue maintaining the site, it would just be easier to standardize and not have to recode existing resources just for them. http://stackoverflow.com/questions/523346/continue-a-classic-asp-site-or-insist-a-language-change/528278#528278 Comment by Adam on Continue a Classic ASP site or insist a language change? Adam 2009-02-09T16:21:24Z 2009-02-09T16:21:24Z If our CMS was built more around CFC's I would totally agree with you, but to turn our existing software into a web service would require even more work. :-( http://stackoverflow.com/questions/523346/continue-a-classic-asp-site-or-insist-a-language-change/523371#523371 Comment by Adam on Continue a Classic ASP site or insist a language change? Adam 2009-02-09T15:46:07Z 2009-02-09T15:46:07Z If I could, I'd convert this whole office to LAMP/ROR and be done with M$ AND Adobe. The people above me feel there's too much invested in our proprietary software, and not enough experience among the staff to do so. At least I have outside consulting to get away from CF. :-) http://stackoverflow.com/questions/515199/what-free-web-development-ides-do-people-use/515210#515210 Comment by Adam on What (free) web development IDEs do people use? Adam 2009-02-06T05:56:53Z 2009-02-06T05:56:53Z Only Aptana Pro which costs $99 supports SVN if you use their plugin