User Abyss Knight - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T20:28:07Zhttp://stackoverflow.com/feeds/user/12234http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/825172/ie8-local-html-file-system-cannot-find-the-specified-file0IE8 Local HTML File - "System cannot find the specified file."Abyss Knight2009-05-05T14:39:23Z2009-06-18T15:47:43Z
<p>We're writing a Windows client application in VB.NET. On the first launch of the application it loads a local HTML file "User Guide" for the user to get acquainted with the new software. There is also a menu option to access the content which also produces the same error. Whenever the page is launched, a dialog box appears stating that "The system could not find the specified file.", and then the browser windows loads the content. This is IE8 specific, as we previously tested with IE6 and 7 as well as Firefox with no problems. </p>
<p>Apparently this behavior is also happening within Outlook 2007 for some of our users whenever they click a link in an email, but only on the first link they click. </p>
<p>Also, one condition for the error to appear is that no IE8 window is currently running, otherwise another tab opens and loads the content just fine. We get this error on XP and Vista.</p>
<p>So far this is all I have found about the issue:</p>
<p><a href="http://www.eggheadcafe.com/conversation.aspx?messageid=34394054&threadid=34361999" rel="nofollow">http://www.eggheadcafe.com/conversation.aspx?messageid=34394054&threadid=34361999</a></p>
<p><a href="http://www.microsoft.com/communities/newsgroups/en-us/default.aspx?query=general+failure.+the+url+was+&dg=microsoft.public.outlook.general&cat=en_US_db03bd1f-73aa-41e1-abfd-27a6e3c352e5&lang=en&cr=US&pt=&catlist=&dglist=&ptlist=&exp=&sloc=en-us&mid=cb1e6b6d-71fd-4351-ae98-c10fccf5809c" rel="nofollow">http://www.microsoft.com/communities/newsgroups/en-us/default.aspx?query=general+failure.+the+url+was+&dg=microsoft.public.outlook.general&cat=en_US_db03bd1f-73aa-41e1-abfd-27a6e3c352e5&lang=en&cr=US&pt=&catlist=&dglist=&ptlist=&exp=&sloc=en-us&mid=cb1e6b6d-71fd-4351-ae98-c10fccf5809c</a></p>
<p>Anything would be greatly appreciated.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/825172/ie8-local-html-file-system-cannot-find-the-specified-file/830186#8301860Answer by Abyss Knight for IE8 Local HTML File - "System cannot find the specified file."Abyss Knight2009-05-06T15:29:48Z2009-05-06T15:29:48Z<p>The issue is caused by the McAfee Host Intrusion Prevention service. Stopping the service mitigates the issue. So the answer is to contact the team who runs the HIPs application.</p>
http://stackoverflow.com/questions/168104/sql-server-service-broker-issue-tutorials0SQL Server Service Broker Issue & TutorialsAbyss Knight2008-10-03T17:54:55Z2009-03-31T04:49:50Z
<p>I've been looking into implementing an external activator in SQL Server Express 2005, and I added the queues, services, contracts, and event notifications to the database. I also added a trigger to send a message to the target queue. Everything parses, runs, and the trigger is firing. However, when I select from the target queue, or use a quick T-SQL script to receive from the queue, nothing is there. </p>
<p>I'm wondering:</p>
<ol>
<li>How is that even possible? Are the messages being auto-received?</li>
<li>Is there any way to check while sending a message if it arrived correctly?</li>
<li>Is there a better way to run a process on the server asynchronously after a trigger is fired?</li>
</ol>
<p>As an aside, good tutorial material for the Service Broker is hard to find. If anyone has any resources, please let me know. Right now, I'm reading a book from our companies' online resource but even that is a pain to filter through.</p>
<p>Thanks,</p>
<p><em>William</em></p>
http://stackoverflow.com/questions/674075/vb-net-array-intersection2VB.NET Array IntersectionAbyss Knight2009-03-23T16:25:00Z2009-03-23T16:42:06Z
<p>This could be terribly trivial, but I'm having trouble finding an answer that executes in less than n^2 time. Let's say I have two string arrays and I want to know which strings exist in both arrays. How would I do that, efficiently, in VB.NET or <em>is</em> there a way to do this other than a double loop?</p>
http://stackoverflow.com/questions/334686/how-can-i-detect-the-operating-system-in-perl/334712#3347121Answer by Abyss Knight for How can I detect the operating system in Perl?Abyss Knight2008-12-02T17:06:04Z2008-12-02T17:06:04Z<p><a href="http://www.rocketaware.com/perl/perlfaq8/How_do_I_find_out_which_operatin.htm" rel="nofollow">Here's</a> a quick reference on how to find the OS the local machine is running from Perl.</p>
<blockquote>
<p>The $^O variable ($OSTYPE if you use English) contains the operating system that your perl binary was built for. </p>
</blockquote>
http://stackoverflow.com/questions/331619/is-it-possible-to-do-count-while-doing-insert-select-query-in-mysql-php/331659#3316590Answer by Abyss Knight for Is it possible to do count(*) while doing insert...select... query in mysql/php ?Abyss Knight2008-12-01T18:01:05Z2008-12-01T18:01:05Z<p>Just to be clear, MySQL 4 isn't configured by default to use transactions. It uses the MyISAM table type which locks the entire table for each insert, if I remember correctly.</p>
<p>Your best bet would be to use one of the MySQL bulk insertion functions, such as <a href="http://www.modwest.com/help/kb6-253.html" rel="nofollow">LOAD DATA INFILE</a>, as these are dramatically faster at inserting large amounts of data. As for the counting, well, you could break the inserts into N groups of 1000 (or Y) then divide your progress meter into N sections and just update it on each group's request.</p>
<p><em>Edit:</em> Another thing to consider is, if this is static data for a template, then you could use a "select into" to create a new table with the same data. Not sure what your application is, or the intended functionality, but that could work as well.</p>
http://stackoverflow.com/questions/318361/timed-tasks-cron-like-in-php/318393#3183933Answer by Abyss Knight for Timed Tasks (cron-like) in PHPAbyss Knight2008-11-25T18:24:00Z2008-11-25T18:24:00Z<p>A quick google turns up a few decent results:</p>
<ul>
<li><a href="http://www.bitfolge.de/pseudocron-en.htm" rel="nofollow">http://www.bitfolge.de/pseudocron-en.htm</a></li>
<li><a href="http://www.phpclasses.org/browse/package/4140.html" rel="nofollow">http://www.phpclasses.org/browse/package/4140.html</a></li>
<li><a href="http://www.hotscripts.com/Detailed/61437.html" rel="nofollow">http://www.hotscripts.com/Detailed/61437.html</a></li>
</ul>
<p>Really, though, if you're on any decent shared hosting package you should have access to some sort of task scheduler be it Windows' Task Scheduler or cron under *nix. I know DreamHost allows user level crontabs, at least.</p>
<p>HTH</p>
http://stackoverflow.com/questions/318214/php-pear-package-for-remember-me-on-this-computer/318262#3182621Answer by Abyss Knight for php/pear package for "remember me on this computer"Abyss Knight2008-11-25T17:49:07Z2008-11-25T17:49:07Z<p>There is such functionality in <a href="http://pear.php.net/package/LiveUser" rel="nofollow">PEAR::LiveUser</a>, though I strongly believe it will be overkill. Here's a description of the functionality you are requesting taken from the <a href="http://pear.php.net/package/LiveUser/docs/latest/LiveUser/LiveUser.html#methodsetRememberCookie" rel="nofollow">end user docs</a>:</p>
<blockquote>
<p>setRememberCookie [line 1326] bool
setRememberCookie( string $handle,
string $passwd)</p>
<p>If cookies are allowed, this method
checks if the user wanted a cookie to
be set so he doesn't have to enter
handle and password for his next
login. If true, it will set the
cookie.</p>
<pre><code>* Return: true if the cookie can be set, false otherwise
* Access: public
</code></pre>
<p>Parameters: string $handle —
handle of the user trying to
authenticate string $passwd —
password of the user trying to
authenticate</p>
</blockquote>
<p>What about the cookie checking is giving you trouble? You could have the www vs. non-www, subdomain vs. domain, or any number of logic issues. I remember working on a PHP authentication system that did just what you are doing, but I also remember it being a bear to work on. Of course your mileage may vary. :)</p>
http://stackoverflow.com/questions/309160/what-programming-language-should-be-taught-in-computer-science-101/309534#30953423Answer by Abyss Knight for What programming language should be taught in Computer Science 101?Abyss Knight2008-11-21T17:20:22Z2008-11-21T17:20:22Z<p>Just to stir the pot up I'm going to say <strong>ANSI C</strong> would be my first choice.</p>
<p>Yes, it is <em>not</em> Object Oriented. Why should it be taught first? Developers are getting lazy. High level languages and constructs are eroding the low level knowledge and understanding of logic. I completely agree that OO is a prevalent feature in the newer languages, but for a new student I wholeheartedly believe we should go back to the basics. </p>
<p>Teach pointers. Teach memory management. Teach them to never rely on garbage collection alone, and to remember to close streams, files, connections. </p>
<p>So many developers these days rely on their language of choice to do their work for them. Sure, that works, but what do you learn from it?</p>
<p>Having been taught ANSI C, and later Java, I believe our curriculum had the best of both worlds. It really teaches you to respect proper code, and to do away with the zealotry of new concepts and methodology. </p>
<p>That said, I do believe that as a developer matures they need to learn all there is to learn, including patterns, unit testing, etc. I just don't think OO is a 101 concept, in fact, it should be class of its own to give a proper medium to teach it in. So many developers think they <em>know</em> OO, myself included, but they really haven't even scratched the surface.</p>
<p>Just an opinion, and certainly not a mandate. To each their own. :)</p>
http://stackoverflow.com/questions/306795/what-is-the-best-way-to-provide-search-as-you-type/306847#3068470Answer by Abyss Knight for What is the best way to provide "search as you type"?Abyss Knight2008-11-20T21:02:50Z2008-11-20T21:02:50Z<p>Check out the ASP.NET AJAX controls. There is a specific control for autocompletion:</p>
<blockquote>
<p>AutoComplete is an ASP.NET AJAX
extender that can be attached to any
TextBox control, and will associate
that control with a popup panel to
display words that begin with the
prefix typed into the textbox.</p>
<p>The dropdown with candidate words
supplied by a web service is
positioned on the bottom left of the
text box.</p>
<p>In the sample above, the textbox is
associated with an
AutoCompleteExtender that pulls words
that start with the contents of the
textbox using a web service.</p>
<p>When you have typed more content than
the specified minimum word length, a
popup will show words or phrases
starting with that value. Caching is
turned on, so typing the same prefix
multiple times results in only one
call to the web service.</p>
</blockquote>
<p><a href="http://www.asp.net/AJAX/AjaxControlToolkit/Samples/AutoComplete/AutoComplete.aspx" rel="nofollow">http://www.asp.net/AJAX/AjaxControlToolkit/Samples/AutoComplete/AutoComplete.aspx</a></p>
<p>There is also a control for searching lists, as you described.</p>
http://stackoverflow.com/questions/306708/must-haves-for-developers-office/306807#30680740Answer by Abyss Knight for Must haves for developers officeAbyss Knight2008-11-20T20:45:48Z2008-11-20T20:45:48Z<p>Things I absolutely need to get anything done:</p>
<ul>
<li>A machine that works consistently, and performs well for the work being done.</li>
<li>A good size desk, and preferably walls. Door not required, but having one's own space is invaluable. Though, open air work spaces are good for <em>very</em> small teams who need instant access to resources.</li>
<li>A nice set of headphones. Okay, these are probably unique to each developer but we need them. Noise canceling would be nice, but we can get by.</li>
<li>Paper. Lots and lots of paper. Some swear by whiteboards, but myself, I use pads of paper. I can keep all my notes from meetings and everything on my PC, but writing is 10x as effective when you are on a call or in a meeting and far less distracting.</li>
<li>Dual monitors. 2 monitors are the threshold for power computing. Without two <em>matching</em> monitors, you're losing at least 10% productivity per developer. (<a href="http://www.codinghorror.com/blog/archives/000012.html" rel="nofollow">See Jeff's post.</a>)</li>
<li>If I'm expected to make calls, give me a headset. Whether its wired or wireless, these things are great for being able to debug while on a call.</li>
</ul>
http://stackoverflow.com/questions/305654/what-php-specific-questions-would-you-ask-in-a-job-interview/305747#3057473Answer by Abyss Knight for What PHP-specific questions would you ask in a job interview?Abyss Knight2008-11-20T15:50:04Z2008-11-20T15:50:04Z<p>For me, I'd ask the following:</p>
<ul>
<li>Demonstrate the use of variable variables and explain a case where they would be useful. (Or, if the terminology stumps the candidate show an example and ask them to trace it.)</li>
<li>Run them through a few standard interview questionnaires if you have access to them. The Disney Web Developer & Software Engineer questions are excellent. Basically, cover everything from the basics of JavaScript, Web Standards, CSS, and even some PHP. A good, basic PHP question to see how they find all numbers divisible by 5 for n=1 to 10. If they don't use the mod (%) operator then ask why.</li>
<li>Ask them what database abstraction layers they have used and if they have ever used a prepared statement. If so, ask them why. If they can't tell you why, then you have a problem. Security is something that can be easily ignored, but knowing is half the battle.</li>
<li>Frameworks. Sure, every candidate will name 12 different frameworks they have worked in. What if they haven't worked in a framework? What if they have never worked <em>outside</em> a framework? These are things you need to know depending on the code the freelancer will be working on.</li>
</ul>
<p>Just a few ideas, but hope that helps. :)</p>
http://stackoverflow.com/questions/299448/screen-scraping-pages-that-use-css-for-layout-and-formatting-how-to-scrape-the/299595#2995950Answer by Abyss Knight for Screen scraping pages that use CSS for layout and formatting...how to scrape the CSS applicable to the html?Abyss Knight2008-11-18T18:02:45Z2008-11-18T18:02:45Z<p>A quick hack would be to pull down their CSS file and apply it to the page you are using to display the data. To avoid any interference you could load the page into an IFrame wherever you need to display it. Of course, I have to question the intention of this code. Are you allowed to republish the information you are scraping?</p>
http://stackoverflow.com/questions/296563/how-to-make-up-for-lack-of-a-computer-science-degree/296648#2966482Answer by Abyss Knight for How to make up for lack of a computer science degree?Abyss Knight2008-11-17T19:48:05Z2008-11-17T19:48:05Z<p>I would recommend looking at a minor in Computer Science, or at least something closer to the field you want to work in. That should give you a taste of the material without forcing you to dive right into another degree. However, if you are really serious about the field and want to pursue a job in Computer Science go for the full Bachelors degree. I know Echostorm's comment probably sounds horrible, but finishing school (at least in the US) is critical, even if the degree is not related to the field it shows dedication and commitment. With telecommunications as a major, you may even be able to snag a position with a company that specializes in telecom software too.</p>
<p>That said, I will echo what others are saying: experience is key. Get your head into code as early as you can, and learn to learn. In our field the ability to learn is an insurance policy worth its paper equivalent in gold. How do you get a job without experience? Easy, tell them up front that you're looking to learn and you'll take anything they offer you. Now, that won't make you rich but the experience you gain will be worth the investment.</p>
<p>I did that very thing whilst in college, and took a position doing far more in depth work than I do now and I made a fourth of what I do now as far as salary is concerned.</p>
http://stackoverflow.com/questions/296245/what-do-you-put-on-your-cubicle-walls/296476#2964761Answer by Abyss Knight for What do you put on your cubicle walls?Abyss Knight2008-11-17T18:49:36Z2008-11-17T18:49:36Z<p>I have a few things in my cube, but nothing intense. Just a process diagram for a project I no longer work on, the time recording guide for a legacy system (we use a new version), a few phone numbers and charge numbers, and a US flag. On my desk however, is a stuffed Domo Kun who guards my phone from fax machines gone wild, a can of Mountain Dew (invaluable), a tiny jar of peanut butter, and a ton of notes scribbled on notepads and strewn about for dramatic effect. Oh, and an ethics manual. My stapler is not red, but if you steal it I might just burn the building down. Not really.</p>
<p>A coworker of mine who has been here awhile longer has a ton of XKCD comics, a penguin water fountain, and a few other things in his cube. That said, I plan on expanding my cube warfare as soon as reviews are over. >:)</p>
http://stackoverflow.com/questions/128836/best-method-to-spawn-process-from-sql-server-trigger0Best Method to Spawn Process from SQL Server TriggerAbyss Knight2008-09-24T18:13:52Z2008-11-14T18:01:49Z
<p>How would I go about spawning a separate process using a SQL Server 05/08 trigger? Ideally, I would like to spawn the process and have SQL Server not wait on the process to finish execution. I need to pass a couple parameters from the insert that is triggering the process, but the executable would take care of the rest.</p>
http://stackoverflow.com/questions/290239/programming-as-a-meaningful-profession/290624#2906242Answer by Abyss Knight for Programming as a meaningful profession?Abyss Knight2008-11-14T16:20:23Z2008-11-14T16:20:23Z<p>Funny that this question would come up. I work for a division of our company, a company that builds war-fighter technology, which helps to prevent accidents, save lives, and promote a work/life balance. Is that even possible? Yep. I work on critical systems which enable those wounded on the job to receive compensation and time off. I also work on the systems which ensure safety compliance in our production facilities and systems which track accidents that <em>almost</em> happened.</p>
<p>Is it meaningful? Well, as a programmed I would say compared to the other work we do it pales in comparison, but to the guy who just had a large metal sheet crush his toe, maybe it is meaningful. :)</p>
<p>Perspective is certainly key in our line of work. If the customer appreciates what you do, then it is meaningful to someone.</p>
http://stackoverflow.com/questions/287236/examples-of-professional-useful-error-pages/287255#2872553Answer by Abyss Knight for Examples of professional & useful error pagesAbyss Knight2008-11-13T15:34:10Z2008-11-13T15:34:10Z<p>Not exactly professional, but it gets the point across:
<a href="http://www.thecenter2000.com/last/" rel="nofollow">http://www.thecenter2000.com/last/</a></p>
http://stackoverflow.com/questions/282084/php-access-to-remote-database/282112#2821121Answer by Abyss Knight for php access to remote databaseAbyss Knight2008-11-11T20:56:54Z2008-11-11T21:12:29Z<p>Just some ideas:</p>
<ul>
<li>HOST1 does not have remote access to HOST2 (shared host is disallowing)</li>
<li>MySQL account does not have access from HOST1 (IP address specified on account creation, or wildcard)</li>
</ul>
<p>Edit:</p>
<p>In response to your comment, I meant that HOST1 cannot get to the MySQL port on HOST2. Web services will work, of course, because port 80 is open to the public. As another user pointed out though, you are getting a response, so you are reaching it. I would try specifying the DB, and double checking the account creation command you ran.</p>
<p>For the second piece, I meant this: <a href="http://dev.mysql.com/doc/refman/5.0/en/adding-users.html" rel="nofollow">http://dev.mysql.com/doc/refman/5.0/en/adding-users.html</a></p>
<p>You can specify what host the username can connect from. If it isn't set to HOST2's IP or the wildcard, HOST2 can't log in with those credentials.</p>
http://stackoverflow.com/questions/281372/executing-shell-scripts-from-the-os-x-dock/281386#2813862Answer by Abyss Knight for Executing Shell Scripts from the OS X Dock?Abyss Knight2008-11-11T16:27:45Z2008-11-11T16:27:45Z<p>I think this thread may be helpful: <a href="http://forums.macosxhints.com/archive/index.php/t-70973.html" rel="nofollow">http://forums.macosxhints.com/archive/index.php/t-70973.html</a></p>
<p>To paraphrase, you can rename it with the .command extension or create an AppleScript to run the shell.</p>
http://stackoverflow.com/questions/253570/how-is-zend-certification-going-to-help-my-career/253631#2536316Answer by Abyss Knight for How is Zend certification going to help my career?Abyss Knight2008-10-31T14:09:53Z2008-10-31T14:09:53Z<p>To be honest, of the 3 or 4 shops I worked at using PHP none of our developers were certified under any certification whether it be Zend or otherwise. In general, it seems like PHP experience is less validated by examination, but more by portfolio. That said, if you are looking to improve your salary the Microsoft and CCNA exams are creme of the crop. PHP is often branded <em>cheap</em>, because the platform it runs on is inexpensive as are the developers. I'm definitely not saying PHP developers are less valuable, especially not the good ones, but the mediocre labor pool is very large. (I know, I was one of them my first 2 years in the field!) </p>
<p>To really improve your salary, and position the best thing to do would be to diversify your skill set. Learn as much as you can, and take the exams when you or your company can afford it. Experience that you can prove, and demonstrate is far more valuable. Certifications will get you to the top of the list, but the portfolio will seal the deal.</p>
http://stackoverflow.com/questions/253523/demos-of-mobile-web-abilities/253569#2535691Answer by Abyss Knight for Demos of Mobile Web Abilities?Abyss Knight2008-10-31T13:57:47Z2008-10-31T13:57:47Z<p>I don't think I've ever seen such a thing, but the thing to remember is the browser is just one key factor in the interaction between your application and the user. The capabilities of the device itself is a large part of what you can and cannot do. For one, the iPhone has a full JavaScript stack and CSS rendering ability as well as the ability to "click". However, on a BlackBerry you're going to lose a lot of that CSS and JavaScript functionality. Also, with Nokia handsets you're going to be dealing with a different beast. The best way to develop for something like this would be to either use a framework/device template like the <a href="http://www.asp.net/mobile/" rel="nofollow">ASP.NET Mobile platform</a>, or to go as close to basic HTML as you can. </p>
<p>There is no silver bullet, and you're just going to have to try to cover as much market share as you can. One thing I can share, is that the more standards compliant and semantic your markup, the better it will render across the devices. Sometimes, you can even get away with just coding the site once provided your site degrades well when CSS and JS are not available.</p>
http://stackoverflow.com/questions/247304/mysql-what-data-type-to-use-for-hashed-password-field-and-what-length/247353#2473531Answer by Abyss Knight for MySQL: what data type to use for hashed password field and what length?Abyss Knight2008-10-29T15:54:33Z2008-10-29T15:54:33Z<p>It really depends on the hashing algorithm you're using. The length of the password has little to do with the length of the hash, if I remember correctly. Look up the specs on the hashing algorithm you are using, run a few tests, and truncate just above that.</p>
http://stackoverflow.com/questions/243873/wordpress-plugin-development/243948#2439484Answer by Abyss Knight for WordPress Plugin DevelopmentAbyss Knight2008-10-28T16:23:14Z2008-10-28T20:03:51Z<p>Having written the MyBlogLog plugin (the original one, that is) I found that the Wordpress Hooks list (can't remember the link offhand) was incredibly useful, as was the sample code from the Codex and WP Install files. Reading through other developer's plugins is also a good way to learn, as you can see how they implemented things and use those techniques to save yourself some R&D time.</p>
<p>What are you looking to create, anyways?</p>
<p><strong>Edit:</strong></p>
<p>I posted a comment with this, but just in case it gets lost...</p>
<p>For your specific needs, you're going to want to store data and be able to manage and retrieve it so creating a custom database table in your plugin is something you will want to do. See this codex link:</p>
<p><a href="http://codex.wordpress.org/Creating_Tables_with_Plugins" rel="nofollow">http://codex.wordpress.org/Creating_Tables_with_Plugins</a></p>
<p>Then you can just add your management code into the admin screens using the techniques found on this Codex page:</p>
<p><a href="http://codex.wordpress.org/Adding_Administration_Menus" rel="nofollow">http://codex.wordpress.org/Adding_Administration_Menus</a></p>
<p>If you want to display the items on a page, you can either write yourself a custom PHP WP Page template to query the DB directly:</p>
<p><a href="http://codex.wordpress.org/Pages#Page_Templates" rel="nofollow">http://codex.wordpress.org/Pages#Page_Templates</a></p>
<p>Or just add a hook filter on your plugin to write the results to the page based on a keyword you specify:</p>
<p><a href="http://codex.wordpress.org/Plugin_API#Filters" rel="nofollow">http://codex.wordpress.org/Plugin_API#Filters</a></p>
http://stackoverflow.com/questions/244447/what-are-the-best-resources-for-getting-better-with-sql/244500#2445002Answer by Abyss Knight for What are the best resources for getting better with SQL?Abyss Knight2008-10-28T19:23:48Z2008-10-28T19:23:48Z<p>The best thing you can do to learn is first to specialize. Learn one of the SQL variants, and learn it to the best of your ability. The others will come by identifying their similarities.</p>
<p>Check out the documentation on left, right, equi, inner and outer joins as well as group by, having and where clauses. Learn a thing or two about subqueries, views, and stored procedures. Once you've hit all the goodies there, start to delve into the DBMS specific functions like date_format, to_char, and coalesce. If you get really daring, you can start looking into triggers and views.</p>
<p>You can learn a lot just from the documentation. I know the Oracle and MySQL docs are pretty extensive, and I'm certain the MSSQL documentation is quite good as well. I've had less luck with PostgreSQL, but the community fills in the blanks there. The key is to know what to look for. </p>
<p>If you want information from two or more tables that are related by one or more fields, check out joins.</p>
<p>If you want to make something happen after an event in the database, triggers is it!</p>
<p>If you need to roll up some data for reporting in an average or stddev you can use aggregate functions and group by clauses to get a great result.</p>
<p>If you need to filter data, where, exists and having are just what you need.</p>
<p>Hope that helps a little. I know that if I knew what to search for, it would have made my life 10x easier. Luckily, there were other developers and a university professor to help me out when I needed it most. :)</p>
http://stackoverflow.com/questions/242996/dealbreakers-for-new-programming-jobs/243597#24359750Answer by Abyss Knight for Dealbreakers for new programming jobs?Abyss Knight2008-10-28T14:46:00Z2008-10-28T14:46:00Z<p>The Joel Test is great, but (yes, but) in some cases early on in your career you need to experience things. Poor management, fumbling through bad code, learning from your mistakes are all things that the <em>perfect</em> job <em>should</em> have early in your career. Am I advocating sacrilege? Yep. Having done this very thing myself, I can honestly say you'll learn more and work smarter, not harder once you have. </p>
<p>I worked at a lowly web development company where the "desks" were kitchen counter tops bolted to a wall and our space was about 2 feet in either direction from the other station. I worked for peanuts, but you know what? I learned PHP, MySQL, XHTML and CSS in the year and a half I worked there and I also learned why source control was important, because we never had any and when you lose 8 hours of work to Joe-saves-over-me you start to wonder.</p>
<p>From there I worked at another start up company out in the middle of nowhere and was paid exceptionally well for my level of expertise. They had source control, and everyone there was great to work with. I learned that everything I learned could be improved, and I learned a bunch of new skills. Then I learned the next valuable lesson, which I had started to learn at my last position: Management is key. You need to be managed.</p>
<p>Now I work in what you call the "red tape bureaucracy" and will likely never go back, until I start my own horribly disorganized start up. Oh sure, the service oriented architecture and SOX compliance might get to you at first, but you have to remember that you are learning. Learn everything you can. Learn how you want to work, and how you hate working.</p>
<p><strong>Be open and honest with the hiring manager. Otherwise, you're likely to end up somewhere you won't enjoy. As far as red flags? Go for your gut feeling, and the Joel Test. Just don't devalue the experience of working through problems. After all, in our profession, problems are why we have jobs in the first place.</strong></p>
http://stackoverflow.com/questions/14987/do-you-listen-to-anything-while-programming/243556#2435560Answer by Abyss Knight for Do you listen to anything while programming?Abyss Knight2008-10-28T14:34:48Z2008-10-28T14:34:48Z<p>I'll often listen to Pandora through the AIR Application. Work is pretty locked down, but this one luxury is just enough to make me <3 it. If I get sick of the streams, I'll fire up my iPhone and hit my Recently Added playlist.</p>
<p>Kinds of music I'll listen to:</p>
<ul>
<li>Foreign music</li>
<li>House/Techno</li>
<li>Pop (yeah, yeah I know)</li>
</ul>
<p>The one thing I can't/won't listen to while working is the spoken word. I can't juggle a podcast or tutorial video while working. Sure, I'll try it sometimes but only when I'm not <em>actually</em> working. I call those mini-breaks. :)</p>
http://stackoverflow.com/questions/213057/5-years-experience-100k-salary-really/213379#2133792Answer by Abyss Knight for 5 years experience == 100k+ salary? Really?Abyss Knight2008-10-17T18:48:46Z2008-10-17T18:48:46Z<p>I can tell you from my recent interview experience that you can get $100k with <em>less</em> than 5 years experience. I was told up front that the particular position I was interviewing for would net from $80-110k. I had maybe 1 year of full-time, salaried work experience <em>but</em> the job was in California. On the flip side, I was offered a full $10k <em>lower</em> than the position I had at the time to do essentially the same work, but in my home town. Cost is relative, as is benefit. Personally, I settled for a new position in the city at the same salary I was making and haven't looked back. The killer? The benefits and career development.</p>
<p>Don't underestimate the value of career development. That stuff will get you far more than $100k, and much, much faster than brute force job jumping. I would know, I started at minimum wage in college doing work that far overshadows what I do now, but at least the pay is a bit better now! :)</p>
http://stackoverflow.com/questions/98449/how-to-convert-an-address-to-a-lat-lon/212849#2128492Answer by Abyss Knight for How to convert an address to a lat/lon?Abyss Knight2008-10-17T16:23:12Z2008-10-17T16:23:12Z<p>Having rolled my own solution for this before, I can whole heartedly recommend the <a href="http://search.cpan.org/~sderle/Geo-Coder-US/" rel="nofollow">Geo::Coder::US</a> Perl module for this. Just download all the census data and use the included importer to create the Berkeley DB for your country and point the Perl script at it. Use the module's built in address parsing, and there you have it: An offline geocoding system!</p>
http://stackoverflow.com/questions/210068/perl-golf-print-the-powers-of-a-number/210107#2101070Answer by Abyss Knight for Perl golf: Print the powers of a numberAbyss Knight2008-10-16T20:14:36Z2008-10-16T20:43:08Z<pre><code>perl -e "for(my $i = 1; $i < 10; $i++){ print((.37**$i). \"\n\"); }"
</code></pre>
<p>Just a quick entry. :)</p>
<p>Fixed to line break!</p>
http://stackoverflow.com/questions/674075/vb-net-array-intersectionComment by Abyss Knight on VB.NET Array IntersectionAbyss Knight2009-03-23T17:07:47Z2009-03-23T17:07:47ZI believe we are using 2.0 at this point. Corporate hosting policy, unfortunately.http://stackoverflow.com/questions/476818/asp-mvc-object-instance-lost-when-redirecting-after-authorizing/476860#476860Comment by Abyss Knight on ASP-MVC: Object Instance Lost When Redirecting After AuthorizingAbyss Knight2009-02-05T21:04:05Z2009-02-05T21:04:05ZThere is no ViewState in MVC, or am I mistaken?http://stackoverflow.com/questions/512984/linq-to-sql-complicated-query-with-aggregate-data-for-a-report-from-multiple-tabComment by Abyss Knight on LINQ to SQL: Complicated query with aggregate data for a report from multiple tables for an ordering systemAbyss Knight2009-02-04T21:58:02Z2009-02-04T21:58:02ZThis sort of thing is where LINQ gets complicated, and starts to introduce performance hits. You might try writing a view using the SQL you posted, then point LINQ at the view.http://stackoverflow.com/questions/513410/open-web-config-from-console-applicationComment by Abyss Knight on Open web.config from console application?Abyss Knight2009-02-04T21:55:41Z2009-02-04T21:55:41ZJust a sidenote, if your connection strings leverage trusted connections through use of an application pool identity this method likely will not work. If you aren't using trusted connections, shame on you! :)http://stackoverflow.com/questions/444055/is-it-possible-to-host-an-aspx-web-site-on-linux/444156#444156Comment by Abyss Knight on Is it possible to host an ASPX web site on Linux?Abyss Knight2009-01-14T19:44:15Z2009-01-14T19:44:15ZAre you sure it is VBScript and not VB.NET?http://stackoverflow.com/questions/444208/how-can-i-rotate-log-files-monthly-using-perlComment by Abyss Knight on How can I rotate log files monthly using Perl?Abyss Knight2009-01-14T19:00:56Z2009-01-14T19:00:56ZYou might want to try Googling this one, or provide more information about your specific needs. This has been done, and documented in many places.
<a href="http://oreilly.com/catalog/perlsysadm/chapter/ch09.html" rel="nofollow">oreilly.com/catalog/perlsysadm/…</a>http://stackoverflow.com/questions/379145/where-can-i-find-learn-industry-standard-sql-conventions/379170#379170Comment by Abyss Knight on Where can I find/learn industry standard SQL Conventions?Abyss Knight2008-12-18T21:08:06Z2008-12-18T21:08:06ZFunny, but true. I can honestly say there are no "enterprisey" ways to name tables, columns, stored procedures or functions. As far as syntax, the same applies. I'm guilty of old style joins (i.e. a.id = b.id or b.id is null), but that really comes down to readability.http://stackoverflow.com/questions/96501/perks-for-new-programmers/96723#96723Comment by Abyss Knight on Perks for new programmersAbyss Knight2008-12-18T20:27:51Z2008-12-18T20:27:51Z+1 Excellent list. The best things are perhaps "Experienced Coworkers" and "Casual Dress Code". I would know, I fell for at least 3 positions for just those reasons. Man I miss wearing jeans to work everyday and free lunch Tuesday's!http://stackoverflow.com/questions/377883/how-to-check-if-mysql-query-is-valid-without-executing-it/377904#377904Comment by Abyss Knight on How to check if MySQL query is valid without executing it?Abyss Knight2008-12-18T20:25:19Z2008-12-18T20:25:19Z+1 For prepare. That's the only way to do it to my knowledge.http://stackoverflow.com/questions/338073/how-to-wean-myself-from-ftp-in-favor-of-version-control/338261#338261Comment by Abyss Knight on How to wean myself from FTP in favor of Version ControlAbyss Knight2008-12-03T18:42:25Z2008-12-03T18:42:25ZExactly. I think the OP is thinking of using SVN to deploy, which can be done but does require some forethought. In all reality, an svn export shell script is what would be needed, to grab the latest revision and export a clean copy to the web server.http://stackoverflow.com/questions/52657/how-are-people-unit-testing-code-that-uses-linq-to-sqlComment by Abyss Knight on How are people unit testing code that uses Linq to SQLAbyss Knight2008-12-02T19:19:43Z2008-12-02T19:19:43ZI'm just trying out ASP.NET MVC with Linq2Sql and tried to write a few unit tests for the "TaskList" demo application. Ran into very strange errors, and then I stumble across this. Very sad to see something so simple thwart a great technology stack.http://stackoverflow.com/questions/331619/is-it-possible-to-do-count-while-doing-insert-select-query-in-mysql-php/331659#331659Comment by Abyss Knight on Is it possible to do count(*) while doing insert...select... query in mysql/php ?Abyss Knight2008-12-01T18:08:16Z2008-12-01T18:08:16ZTrue, very true. I think we need more information from the OP regarding the use case. Using a select x into tablename may be of some use, however. It all depends on what the end goal is.http://stackoverflow.com/questions/305035/how-to-use-ssh-to-run-shell-script-on-a-remote-machine/305054#305054Comment by Abyss Knight on how to use ssh to run shell script on a remote machine?Abyss Knight2008-11-21T17:44:47Z2008-11-21T17:44:47ZVoted you up. This is a valid solution. Obviously, the keys must be protected, but they can also be invalidated just like a password via the server side.http://stackoverflow.com/questions/306460/how-do-you-take-criticism/306471#306471Comment by Abyss Knight on How Do You Take Criticism?Abyss Knight2008-11-20T21:12:21Z2008-11-20T21:12:21ZAmen. Criticism is what makes or breaks a developer's ability to learn and grow. Without it, you won't learn what you're doing wrong. Knowledge is power, and power without wisdom is dangerous. ;)http://stackoverflow.com/questions/305434/good-way-to-query-many-databases-in-asp-net/306796#306796Comment by Abyss Knight on good way to query many databases in ASP.NETAbyss Knight2008-11-20T20:49:58Z2008-11-20T20:49:58ZThat's perhaps the best way to handle this. All those connections are points of failure. If you transform the data, you can also standardize. Even if its temporary, a local set is much more malleable.