User Cory House - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T23:32:51Z http://stackoverflow.com/feeds/user/26180 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1847909/efficient-implementation-of-faceted-search-in-relational-databases/1860792#1860792 0 Answer by Cory House for Efficient implementation of faceted search in relational databases Cory House 2009-12-07T15:44:23Z 2009-12-07T15:44:23Z <p>Regarding the counts, why pull them via SQL? You'll have to iterate through the result set in your code anyway, so why not make your count there? </p> <p>I'm currently using this approach in a faceted search app I'm developing and it's working fine. The only tricky part is to setup your code to not output the facet until it reaches a new facet. At that time, output the facet and the number of rows you found for it. </p> <p>This approach assumes you're pulling back a list of all matching items, and thus, multiple rows with the same facet. When you order this result by facet it's easy to get the count in your code instead.</p> http://stackoverflow.com/questions/1849754/best-practice-for-building-a-narrow-your-results-product-filtering-feature 0 Best practice for building a "Narrow your results" product filtering feature Cory House 2009-12-04T21:30:05Z 2009-12-04T21:48:20Z <p>I'm building a "Narrow your results by" feature similar to <a href="http://www.bestbuy.com/site/Laptop-Computers/Small-Business-Laptops/abcat0502002.c?id=abcat0502002" rel="nofollow">Best Buy's</a> and <a href="http://www.newegg.com/Product/ProductList.aspx?Submit=ENE&amp;N=2034940032%204084&amp;name=%241250%20-%20%241500" rel="nofollow">NewEgg's</a>. What is the best practice for storing the user's filter selections in a URL that can be shared/bookmarked? </p> <p>The obvious choice is to simply keep all the user's selections in the query string. However, both of these examples are doing something far more cryptic:</p> <p>Best Buy: <code>http://www.bestbuy.com/site/olstemplatemapper.jsp?id=pcat17080&amp;type=page&amp;qp=crootcategoryid%23%23-1%23%23-1~~q70726f63657373696e6774696d653a3e313930302d30312d3031~~cabcat0500000%23%230%23%2311a~~cabcat0502000%23%230%23%23o~~nf518||24363030202d2024383939&amp;list=y&amp;nrp=15&amp;sc=abComputerSP&amp;sp=%2Bcurrentprice+skuid&amp;usc=abcat0500000 </code></p> <p>It appears they're assigning some unique value to the search and storing it temporarily on their side. Or perhaps wrapping their db id's in a bunch of garbage because they believe in security through obscurity?</p> <p>Is there some inherent disadvantage to keeping things simple like this? <code>www.mydomain.com?color=blue&amp;type=laptop</code> </p> <p>So when I select a 17" screen size as a filter, it would simply reload the page with the additional query string tacked on: <code>www.mydomain.com?color=blue&amp;type=laptop&amp;screen-size=17</code></p> <p>Also, to clarify, I would likely use corresponding ids from the database in the URL to make validation and parsing easier/faster, but the question remains about whether there's some problem I'm missing in my simple approach.</p> <p>Thanks in advance!</p> http://stackoverflow.com/questions/1823554/converting-linq-to-xml-query-from-c-to-vb-net-can-you-spot-my-error 0 Converting Linq to XML query from C# to VB.Net. Can you spot my error? Cory House 2009-12-01T01:54:24Z 2009-12-01T15:33:31Z <p>I'm converting the Linq query below from C# to VB.Net. Can you spot my error? The query joins 3 XML datasets. Thanks in advance!</p> <p>C# - This one works great.</p> <pre><code>List&lt;Course&gt; courses = (from course in CourseXML.Descendants(ns + "row") join coursecategory in CourseCategoryXML.Descendants("Table") on (string)course.Attribute("code") equals (string)coursecategory.Element("DATA") join category in CategoryXML.Descendants("Table") on (string)coursecategory.Element("GRP") equals (string)category.Element("GRP") where (string)coursecategory.Element("RECTYPE") == "C" select new Course { CategoryCode = category.Element("GRP").Value, Code = course.Attribute("code").Value }).ToList&lt;Course&gt;(); </code></pre> <p>VB - I'm getting no results from this, so I suspect I'm either casting improperly or joining improperly.</p> <pre><code>Dim result = (From course In CourseXML.Descendants(ns + "row") _ Join coursecategory In CourseCategoryXML.Descendants("Table") On CType(course.Attribute("code"), String) Equals CType(coursecategory.Element("DATA"), String) _ Join category In CategoryXML.Descendants("Table") On CType(coursecategory.Element("GRP"), String) Equals CType(category.Element("GRP"), String) _ Where CType(coursecategory.Element("RECTYPE"), String) = "C" _ Select New Course() With _ { _ .CategoryCode = category.Element("GRP").Value, _ .Code = course.Attribute("code").Value _ }).ToList() </code></pre> http://stackoverflow.com/questions/1780389/converting-linq-to-xml-result-to-generic-list-in-vb-net-odd-error 1 Converting Linq to XML result to generic list in VB.Net. Odd error. Cory House 2009-11-22T23:22:40Z 2009-11-22T23:40:37Z <p>I have a function that works great in C# that I'm converting to VB.Net. I'm having an issue converting the result set to a generic list in VB.net. </p> <p>The code:</p> <pre><code> Public Function GetCategories() As List(Of Category) Dim xmlDoc As XDocument = XDocument.Load("http://my_xml_api_url.com") Dim categories = (From category In xmlDoc.Descendants("Table") _ Select New Category()).ToList(Of Category)() Return categories End Function </code></pre> <p>The error occurs when convertng the result via .ToList(Of Category)() The error:</p> <p>Public Function ToList() As System.Collections.Generic.List(Of TSource)' defined in 'System.Linq.Enumerable' is not generic (or has no free type parameters) and so cannot have type arguments. </p> <p>Category is a simple object I've created, stored in the App_Code directory.</p> <p>I have the necessary "Imports System.Collections.Generic" reference in the file so I don't see why I can't convert the result set to a generic list.</p> <p>I'm pulling my hair out on this so any help would be awesome! Thanks in advance!</p> http://stackoverflow.com/questions/1742066/why-is-pdo-better-for-escaping-mysql-queries-querystrings-than-mysqlrealescape/1742454#1742454 3 Answer by Cory House for Why is PDO better for escaping MySQL queries/querystrings than mysql_real_escape_string? Cory House 2009-11-16T14:20:59Z 2009-11-16T14:20:59Z <p>Unlike mysql_real_escape_string, PDO allows you to enforce a datatype.</p> <pre><code>&lt;?php /* Execute a prepared statement by binding PHP variables */ $calories = 150; $colour = 'red'; $sth = $dbh-&gt;prepare('SELECT name, colour, calories FROM fruit WHERE calories &lt; :calories AND colour = :colour'); $sth-&gt;bindParam(':calories', $calories, PDO::PARAM_INT); $sth-&gt;bindParam(':colour', $colour, PDO::PARAM_STR, 12); $sth-&gt;execute(); ?&gt; </code></pre> <p>Note that in the example above, the first parameter, calories, is required to be an integer (PDO::PARAM_INT). </p> <p>Second, to me, PDO parameterized queries are easier to read. I'd rather read:</p> <pre><code>SELECT name FROM user WHERE id = ? AND admin = ? </code></pre> <p>then</p> <pre><code>SELECT name FROM user WHERE id = mysql_real_escape_string($id) AND admin = mysql_real_escape_string($admin); </code></pre> <p>Third, you don't have to make sure you quote parameters properly. PDO takes care of that. For example, mysql_real_query_string:</p> <pre><code>SELECT * FROM user WHERE name = 'mysql_real_escape_string($name)' //note quotes around param </code></pre> <p>vs</p> <pre><code>SELECT * FROM user WHERE name = ? </code></pre> <p>Finally, PDO allows you to port your app to a different db without changing your PHP data calls.</p> http://stackoverflow.com/questions/1572306/sql-server-error-cannot-sort-a-row-of-size-x-which-is-greater-than-the-allowabl 0 SQL Server Error: Cannot sort a row of size x, which is greater than the allowable maximum of 8094. But I'm not sorting. Cory House 2009-10-15T13:16:05Z 2009-10-15T14:30:52Z <p>I understand that the "Cannot sort a row of size 9754, which is greater than the allowable maximum of 8094." from SQL server is caused by a row that has over 9k characters in it, which is greater than the page size limit in SQL Server 7. But I'm not calling an order by on the data below, so why does the error say it cannot sort? </p> <pre><code>SELECT &lt;a number of columns...&gt; FROM Category10Master c10 JOIN Category20Master c20 ON c10.Cat10ID = c20.ParentCatID JOIN Category25Master c25 ON c20.Cat20ID = c25.ParentCatID JOIN Category30Master c30 ON c25.Cat25ID = c30 .ParentCatID JOIN Item i ON c30.Cat30ID = i.ParentCatID </code></pre> <p>EDIT: And yes, I know I can call fewer columns to solve this - the actual query calls the columns needed explicitly and still exceeds the row size limit. This is actually in a view that's called site-wide so changing the view to pull back fewer columns isn't an attractive option - dozens of pages would need to be modified to get their data from somewhere other than the view. I'm unlucky enough to have interhited an ugly design and am hoping someone has a more attractive solution than pulling less data.</p> http://stackoverflow.com/questions/1540843/using-alias-with-mysql/1540850#1540850 0 Answer by Cory House for Using Alias with MySql Cory House 2009-10-08T22:26:01Z 2009-10-09T12:09:20Z <p>Give each alias a unique name. For example, amount1, amount2, etc.</p> <p>EDIT> If you'd like sum of the columns, use SELECT SUM(amount1, amount2, amount3, ...) FROM ... </p> http://stackoverflow.com/questions/1526204/selecting-from-a-table-where-field-this-and-value-that/1526703#1526703 0 Answer by Cory House for Selecting from a table where field = this and value = that Cory House 2009-10-06T16:34:21Z 2009-10-06T16:34:21Z <p>I know you say creating a new table with a better schema isn't feasible, but restructuring the data would make it more efficient to query and easier to work with. Just create a new table (called visitor in my example). Then select from the old table to populate the new visitor table.</p> <pre><code>vistor ---------------- vistor_id firstname province country </code></pre> <p>You could loop through the statement below with any scripting language (PHP, TSQL, whatever scripting language you're most comfortable with). Just get a list of all vistor_id's and loop through them with the sql below, replacing the x with the visitor_id.</p> <pre><code>INSERT INTO visitor (visitor_id, name, province, country) VALUES X, (SELECT value FROM old_table WHERE name='first_name' AND vistor_id = x), (SELECT value FROM old_table WHERE name='province' AND vistor_id = x), (SELECT value FROM old_table WHERE name='country' AND vistor_id = x); </code></pre> <p>This will produce a table where all a visitor's data is on a single row.</p> http://stackoverflow.com/questions/1504622/does-allowing-a-category-to-have-multiple-parents-make-sense-are-there-alternati 5 Does allowing a category to have multiple parents make sense? Are there alternatives? Cory House 2009-10-01T15:25:36Z 2009-10-05T13:35:58Z <p><strong>Short question:</strong> How should product categories that appear under multiple categories be managed? Is it a bad practice to do so at all?</p> <p><strong>Background info:</strong> We have a product database with categories likes this:</p> <pre><code>Products -Arts and Crafts Supplies -Glue -Paper Clips -Construction Paper -Office Supplies -Glue -Paper Clips </code></pre> <p><strong>Note that glue and paper clips are assigned to both categories.</strong> And although they appear in two different spots in this category tree, <strong>they have the same category ID in the database</strong>. Why? Two reasons:</p> <ol> <li>Categories are assigned attributes - for example, a paper clip could have a weight, a material, a color, etc. </li> <li>Products assigned to the glue category are displayed under arts and crafts and Office Supplies. Which is to be expected - they're the same actual category ID in the database.</li> </ol> <p>This allows us to manage a single category and it's attributes and assigned products, but place it at multiple places within the category tree.</p> <p>We are using the <a href="http://dev.mysql.com/tech-resources/articles/hierarchical-data.html" rel="nofollow">nested set model</a>, so the db structure we use to support this is:</p> <pre><code>Category ---------- CategoryID CategoryName CategoryTree ------------ CategoryTreeID CategoryID Lft Rgt </code></pre> <p>So there's a 1:M between Category and CategoryTree because there can be multiple instances of a given category within the category tree.</p> <p>Is there a simpler way to model this that would allow a product category to display under multiple categories?</p> http://stackoverflow.com/questions/1500476/jquery-work-with-divs/1500497#1500497 0 Answer by Cory House for JQuery - work with divs Cory House 2009-09-30T20:33:41Z 2009-09-30T20:33:41Z <p>All IDs must be unique. You're currently repeating menu_part. I'd suggest removing the duplicate IDs. Give the nav links a class of "nav_link" and then use jquery to reference that class with an onclick event that changes the class to "menu_choosed".</p> http://stackoverflow.com/questions/1463636/good-methods-for-human-readable-human-maintained-databases/1463699#1463699 0 Answer by Cory House for Good methods for human-readable & human-maintained databases Cory House 2009-09-23T02:37:58Z 2009-09-23T02:37:58Z <p>If the constraints you're referring to can be enforced at the database level, free software like Quest Toad could allow them enter data directly into the db. It feels very much like using a spreadsheet when in grid view and displays an error when constraints are violated.</p> <p>Alternatively, depending on what existing stack you have available, .Net grid views make it easy to slap together crud screens in little time.</p> http://stackoverflow.com/questions/190094/what-are-the-specific-differences-between-a-cs-and-cis-degree 3 What are the specific differences between a CS and CIS degree? Cory House 2008-10-10T04:10:31Z 2009-08-27T14:09:12Z <p>I know CIS is more business oriented and CS is more math based, but what specific developer related classes/skills are taught only in CS? I currently have a CIS degree and am trying to move my career toward heavier development work (currently doing ASP/PHP Web Dev). I'd really appreciate some advice on how to "fill in the gaps" in my core development knowledge.</p> http://stackoverflow.com/questions/1202551/jquery-passing-parameters/1202575#1202575 3 Answer by Cory House for JQuery, Passing Parameters Cory House 2009-07-29T19:41:10Z 2009-07-29T20:03:02Z <pre><code>function hover(img) { $("."+img).hover(function() { $(this).attr("src","_img/nav/"+img+"_over.gif"); }, function() { $(this).attr("src","_img/nav/"+img+"_off.gif"); }); } </code></pre> http://stackoverflow.com/questions/952895/how-to-perform-multithreading-background-process-in-classic-asp 2 How to perform multithreading/background process in classic asp Cory House 2009-06-04T20:26:22Z 2009-06-25T19:54:02Z <p>I need to send emails via a background job on a classic-asp app so the user doesn't have to wait for a slow webserver to complete sending the email.</p> <p>I know I can use Ajax to generate two separate requests, but I'd rather not require Javascript. Plus, I suspect there's a better way to pull this off. Ideas?</p> http://stackoverflow.com/questions/963284/web-developers-implement-the-code-or-design-first 5 Web developers: Implement the code or design first? Cory House 2009-06-08T02:53:05Z 2009-06-11T02:17:02Z <p>What comes first? <strong>After the design has been outlined and approved</strong>, should a designer create pages in HTML and then hand them to a developer to add code? Or should a developer build simple pages that work and hand them over to the designer?</p> <p>I've always done the latter, but recently worked with a designer who built an entire site in HTML and handed it to me to make it work. I found it saves a lot of time for 3 reasons:</p> <ol> <li>The developer doesn't have to create all the form fields and rudimentary layout.</li> <li>The designer doesn't have to rework all the "ugly" pages into something attractive, instead starting with a clean site which is faster.</li> <li>The code isn't accidentally broken by the designer. I've found designers are more likely to break the code doing their work than developers breaking the design adding the backend functionality. </li> </ol> <p>In short, if the designer does his work first, there's very little rework. I just make what already looks great actually work.</p> <p>So which is best practice? See other plusses and minuses?</p> <p>EDIT: Assume both designers and developers are already in agreement on the proposed design.</p> http://stackoverflow.com/questions/54771/website-monitoring-libraries/940372#940372 0 Answer by Cory House for Website Monitoring Libraries Cory House 2009-06-02T16:03:56Z 2009-06-02T16:03:56Z <p>Check out mon.itor.us as well.</p> http://stackoverflow.com/questions/869269/how-do-i-serve-a-downloadable-file-online-without-exposing-the-physical-path 7 How do I serve a downloadable file online without exposing the physical path? Cory House 2009-05-15T15:13:58Z 2009-05-18T17:10:32Z <p>I'm serving up documents that require the user to register before download. Currently, once you register and login, the links to the documents are displayed as:</p> <pre><code>myurl.com/docs/mypdf.pdf </code></pre> <p>So the physical path to the document is exposed to anyone logged in. What is the best practice for keeping the physical path to the document hidden so registered users can't share direct links with unregistered users or post direct links to the documents elsewhere?</p> <p><strong>EDIT:</strong> I was just looking for an idea that was language agnostic so I chose a few of my favorite languages for the tags. The actual implementation in this case is ASP classic. I'm currently using a download wrapper script that confirms the user is logged in before redirecting to the actual document URL. I just didn't include it in my question for simplicity. </p> http://stackoverflow.com/questions/855825/how-do-i-call-static-variable-in-a-separate-class-in-php 1 How do I call static variable in a separate class in PHP? Cory House 2009-05-13T02:45:53Z 2009-05-13T02:52:08Z <p>How can I access a static variable in a separate class in PHP? Is the scope resolution operator the wrong tool for the job? Example:</p> <pre><code>class DB { static $conn = 'Connection'; } class User { function __construct() { DB::conn; //throws "Undefined class constant 'conn' error. } } </code></pre> http://stackoverflow.com/questions/231189/whats-the-best-tool-or-method-to-search-for-a-specific-word-in-a-codebase 1 What's the best tool or method to search for a specific word in a codebase? Cory House 2008-10-23T19:47:51Z 2009-05-02T00:48:24Z <p>What tool or method do you recommend to find and replace values in your code? If code is on Linux/Unix, are find and grep the best method?</p> <p>I'm currently using Dreamweaver's find and replace and it's sloooow.</p> http://stackoverflow.com/questions/789170/best-practice-for-renaming-property-method-names-that-are-reserved-words 1 Best practice for renaming property/method names that are reserved words? Cory House 2009-04-25T15:42:30Z 2009-04-25T15:59:16Z <p>I'm creating a car class. Make and model are properties but both make and model appear to be reserved words in C#. What's the best practice for naming properties/methods when your preferred name is a reserved word?</p> <p>My first instinct is to call the properties CarMake, CarModel (so a convention of ClassNamePropertyName). Is there some better convention or is this the best approach?</p> <p>EDIT>> My mistake, make and model aren't actually reserved words. VS intelliesense and code coloring made it appear so to me at first glance. Though my question does stand for future reference.</p> <p>Thanks!</p> http://stackoverflow.com/questions/766257/what-components-of-the-net-framework-should-a-professional-developer-typically-a 7 What components of the .Net framework should a professional developer typically avoid? Cory House 2009-04-19T22:27:10Z 2009-04-21T08:43:55Z <p>.Net is a huge framework with some functionality that appears to target beginners or becomes problematic if much customization is involved. So what functionality available in the .Net framework do you feel professional developers should avoid and why? </p> <p>For example, .Net has a wizard for common user management functions. Is using this functionality considered appropriate for professional use or a beginner only? </p> <p><strong>One component/feature/class, etc per answer please</strong> so votes are specific to a single item.</p> <p>Thanks in advance for your input!</p> http://stackoverflow.com/questions/738401/best-practice-for-keeping-named-constants-in-code-and-database-reference-tables-i 3 Best practice for keeping named constants in code and database reference tables in sync? Cory House 2009-04-10T18:13:34Z 2009-04-10T18:24:51Z <p>It's generally best practice to use named constants in place of magic numbers, but it sure is tedious and error prone keeping a database reference table and a file of named constants in sync. Is there some easy way to keep these two sources for this info in sync, or am I overlooking an obvious design enhancement?</p> <p>In case my question isn't clear, here's an example. I have a reference table with 2 columns:</p> <pre><code>UserStatus ---------- UserStatusID UserStatus </code></pre> <p>So this table associates a UsersStatusID 1 with the UserStatus 'Active'. The User table relies on this table to normalize UserStatuses.</p> <p>So when querying for a User's status from code, I have two options:</p> <pre><code>SELECT UserStatusID FROM Users WHERE UserStatus = 1 </code></pre> <p>OR</p> <pre><code>SELECT UserStatusID FROM Users WHERE UserStatus = ACTIVE_USER_STATUS_ID </code></pre> <p>Best practice is to use the latter so the meaning of the number 1 is clear. But this means I have to maintain a complete list of valid UserStatusID's in my UserStatus table and in my code. How do I avoid having to keep both the DB reference table and my constants file updated? I'm using a centralized constants file so there's only 1 place I have to update for my code, but is there a way to avoid having to update a constants file at all when a new status in introduced?</p> <p>I have one idea: Schedule a script to run once a day to populate a constants file via a query of the reference tables in the db. Is this the best solution? </p> http://stackoverflow.com/questions/532413/how-do-you-refactor-a-codeigniter-controller-function-that-is-too-long 0 How do you refactor a Codeigniter controller function that is too long? Cory House 2009-02-10T13:53:37Z 2009-03-06T15:45:09Z <p>I have a function in my controller that has grown longer than I'd prefer and I'd like to refactor it to call a few discrete functions to make it easier to manage. How can I better organize a long function in a Codeigniter controller?</p> <p><strong>What I've tried:</strong></p> <p>I know you can create private functions in a controller by naming them with a leading underscore (_myfunc), but then the variables in the function are out of scope for the calling controller function. So you have to return all the needed data from the function which is a hassle. </p> <p>Is this the best option for managing a complex controller function? Is there an easier way where the variables could all be global to the controller class like a standard class member variable?</p> <p>Suggestions? Thanks in advance!</p> <p>EDIT: Someone requested the code so I added code for giant controller below. One opportunity for improvement is to move logic in switch statements to separate functions (delete, preview, order, etc). But I'm trying to decide on the next step after that. Moving the big validation setup code into it's own function would really take some weight out, but where should I move it to?</p> <pre><code> function categories() { $this-&gt;load-&gt;library('upload'); $this-&gt;load-&gt;model('categories_m'); $this-&gt;load-&gt;model('products_m'); $this-&gt;load-&gt;model('pages_m'); $this-&gt;load-&gt;model('backoffice/backofficecategories_m'); $data['body'] = $this-&gt;load-&gt;view('backoffice/categories/navigation_v', '', TRUE); $data['cat_tree'] = $this-&gt;categories_m-&gt;getCategoryTree(); $data['page_list'] = $this-&gt;pages_m-&gt;getPageList(); $data['category_dropdown'] = $this-&gt;load-&gt;view('backoffice/categories/category_dropdown_v',$data,TRUE); switch ($this-&gt;uri-&gt;segment(3)) { //display views based on parameter in URL. case 'delete': $categoryTreeID = $this-&gt;sitewide_m-&gt;checkURLParam($this-&gt;uri-&gt;segment(4),'CategoryTree'); //if parameter is in URL, show 404 if invalid parameter is passed. Otherwise, set variable known to be safe. if (isset($_POST['delete'])) { $this-&gt;backofficecategories_m-&gt;deleteCategory($categoryTreeID); $data['body'] .= '&lt;span class="error"&gt;Category Deleted.&lt;/span&gt;'; } else { $data['cat_details'] = $this-&gt;categories_m-&gt;getCategoryDetails('',$categoryTreeID); $data['parent_category'] = $this-&gt;categories_m-&gt;getParentCategory($categoryTreeID); $data['products_to_reassign'] = $this-&gt;products_m-&gt;getProductsInCategory('',$categoryTreeID); $data['body'] .= $this-&gt;load-&gt;view('backoffice/categories/delete_v',$data,TRUE); //pull fresh category tree data since tree was just updated. } break; case 'preview': if ($this-&gt;uri-&gt;segment(4)) $data['categoryTreeID'] = $this-&gt;sitewide_m-&gt;checkURLParam($this-&gt;uri-&gt;segment(4),'CategoryTree'); //if parameter is in URL, show 404 if invalid parameter is passed. Otherwise, set variable known to be safe. $data['cat_details'] = $this-&gt;categories_m-&gt;getCategoryDetails(NULL,$data['categoryTreeID']); //get category ID being edited from the URL and store it. Returns false if category ID isn't found. foreach ($data['cat_details']-&gt;result() as $detail) { $data['categoryName'] = $detail-&gt;Name; $data['categoryID'] = $detail-&gt;ID; } $data['body'] .= $this-&gt;load-&gt;view('backoffice/categories/preview_v', $data, TRUE); break; ...cases continue... default: $this-&gt;load-&gt;library('table'); $data['body'] .= $this-&gt;load-&gt;view('backoffice/categories/categories_v', $data, TRUE); break; } $this-&gt;load-&gt;view('backoffice/template_v',$data); } </code></pre> http://stackoverflow.com/questions/27242/where-can-i-learn-jquery-is-it-worth-it/602418#602418 1 Answer by Cory House for Where can I learn JQuery? is it worth it? Cory House 2009-03-02T13:50:51Z 2009-03-02T13:50:51Z <p>Jquery.com is well organized and has many great examples. You don't need to buy a book. I found it easy to pickup on the fly by just referencing website's documentation. If you're someone who learns best by doing, I'd suggest this approach.</p> <p>And yes, it's absolutely worth learning. It'll save you a lot of time and you'll actually look forward to doing js work!</p> http://stackoverflow.com/questions/543091/where-to-start-from-in-web-development/543467#543467 0 Answer by Cory House for Where to start from in web development? Cory House 2009-02-12T21:45:27Z 2009-02-13T01:57:14Z <p>I totally agree with Chris Pebble's list. However, I disagree with those recommending C# as a first server side language. While C# is an excellent language and .net is a powerful framework, all the "black boxes" in the .net framework can potentially greatly confuse someone who just learned html/css/js. .Net abstracts much away with its own conventions, which is handy for the professional, but a hindrance for someone who is still getting grounded in the fundamentals. Dragging an input field from a toolbar and styling it with a dialog box is quick and easy, but it doesn't give you practice dealing with the code. </p> <p>That being said, I'd recommend starting with PHP. It's not as strong an overall language as C#, but there are some real advantages for a beginner:</p> <ol> <li>You don't have to learn a framework to use it</li> <li>You can start out writing procedural code and move to writing object oriented PHP as you get comfortable.</li> <li>You have to do the work yourself. There is no framework writing HTML/JS/CSS for you. For a beginner, this is a great thing. After all, you learn by doing.</li> <li>Web hosting is dirt cheap. Cheaper, on average, than most competing technologies.</li> </ol> <p>For what it's worth, I code in PHP and C#.Net and prefer the .Net experience for a variety of reasons, but I believe you should learn to work without a framework first. The lessons you learn the hard way will do you a lot of good.</p> http://stackoverflow.com/questions/522967/forgot-password-what-is-the-best-method-of-implementing-a-forgot-password-functi/523149#523149 7 Answer by Cory House for Forgot Password: what is the best method of implementing a forgot password function? Cory House 2009-02-07T04:44:16Z 2009-02-07T15:13:58Z <p>A few important security concerns: </p> <ul> <li>A passphrase question / answer actually lowers security since it typically becomes the weakest link in the process. It's often easier to guess someone's answer than it is a password - particularly if questions aren't carefully chosen.</li> <li>Assuming emails operate as the username in your system (which is generally recommended for a variety of reasons), the response to a password reset request shouldn't indicate whether a valid account was found. It should simply state that a password request email has been sent to the address provided. Why? A response indicating that an email does/doesn't exist allows a hacker to harvest a list of user accounts by submitting multiple password requests (typically via an HTTP proxy like burp suite) and noting whether the email is found. To protect from login harvesting you must assure no login/auth related functions provide any indication of when a valid user's email has been entered on a login/pass reset form.</li> </ul> <p>For more background, checkout the <a href="http://rads.stackoverflow.com/amzn/click/0470170778" rel="nofollow">Web Application Hackers Handbook</a>. It's an excellent read on creating secure authentication models.</p> http://stackoverflow.com/questions/521310/rewriting-urls-in-asp-net/521656#521656 2 Answer by Cory House for Rewriting URLs in ASP.NET? Cory House 2009-02-06T18:53:38Z 2009-02-06T18:59:38Z <blockquote> <p>please explain the meaning of values such as "358630" in the URL</p> </blockquote> <p>That is (presumably) the ID for the question in the database. In the MVC model</p> <pre><code> myurl.com/questions/358630 </code></pre> <p>is analogous to </p> <pre><code>myurl.com/questions.aspx?id=358630 </code></pre> <p>The question title on the end of the URL is actually being ignored by the app. It's generally "tacked on" for search engine optimization and human readability purposes. In fact, you can change the title of this question in the URL and notice the page still loads just fine. </p> http://stackoverflow.com/questions/521618/qa-website-design/521641#521641 0 Answer by Cory House for Q&A Website Design Cory House 2009-02-06T18:48:24Z 2009-02-06T18:48:24Z <p>Off the top of my head</p> <ul> <li>Ban/block Users/ips</li> <li>Delete/Hide/Close threads</li> </ul> <p>Otherwise, since SO has a user moderated model, many moderation tools are available on the front end, so likely moderators/admins just use the same front end tool with escalated privileges.</p> http://stackoverflow.com/questions/505642/escape-html-to-php-or-use-echo-which-is-better/521549#521549 0 Answer by Cory House for Escape HTML to PHP or Use Echo? Which is better? Cory House 2009-02-06T18:29:35Z 2009-02-06T18:35:43Z <p>This should be considered more of a readability and maintenance issue than a performance issue. </p> <p>Thus, option 2 has a couple concrete advantages:</p> <ol> <li>Code coloring. With option 1 everything is colored as an echo statement which makes reading HTML more difficult.</li> <li>Intellisense - With many IDE's, HTML within a PHP echo statement won't engage intellisense, so you'll be typing all that HTML by hand.</li> </ol> http://stackoverflow.com/questions/520738/what-is-the-advantage-of-having-a-users-logs-records-in-a-website/520784#520784 0 Answer by Cory House for what is the advantage of having a users' logs records in a website? Cory House 2009-02-06T15:44:25Z 2009-02-06T15:44:25Z <p>The logs could be useful for:</p> <ul> <li>Investigating potential security issues (multiple login attempts from a single user, or concurrent logins from a given user)</li> <li>Reporting (For example, the number of "active" users who have logged in recently)</li> </ul> <p>I'd suggest getting clarity from your supervisor on how he plans to use the logs. Logging any activities the user performs on the site such as submitting a contact form is useful for reporting and can be the foundation for a system that assures all user input is responded to quickly. </p> http://stackoverflow.com/questions/1849754/best-practice-for-building-a-narrow-your-results-product-filtering-feature/1849863#1849863 Comment by Cory House on Best practice for building a "Narrow your results" product filtering feature Cory House 2009-12-05T14:32:25Z 2009-12-05T14:32:25Z Sometimes half the battle is just figuring out what term to Google - thanks for the tip on faceted search. I'd never heard the term. http://stackoverflow.com/questions/1849754/best-practice-for-building-a-narrow-your-results-product-filtering-feature/1849850#1849850 Comment by Cory House on Best practice for building a "Narrow your results" product filtering feature Cory House 2009-12-05T14:31:41Z 2009-12-05T14:31:41Z The practical length is 2048 per <a href="http://stackoverflow.com/questions/1344616/max-length-of-query-string-in-an-ajax-get-request" rel="nofollow" title="max length of query string in an ajax get request">stackoverflow.com/questions/1344616/&hellip;</a>, but yes, good point. http://stackoverflow.com/questions/1823554/converting-linq-to-xml-query-from-c-to-vb-net-can-you-spot-my-error/1826754#1826754 Comment by Cory House on Converting Linq to XML query from C# to VB.Net. Can you spot my error? Cory House 2009-12-03T01:06:26Z 2009-12-03T01:06:26Z I actually used the same site for the initial conversion. Very handy. However, the current tool doesn't deal well with LINQ yet. But +1 since this is certainly a relevant site for others. http://stackoverflow.com/questions/1832811/which-super-shell-scripting-language-should-i-learn-perl-ruby-or-tcl Comment by Cory House on Which 'super shell scripting' language should I learn, Perl, Ruby or Tcl? Cory House 2009-12-02T17:36:58Z 2009-12-02T17:36:58Z Subjective, sure. Argumentative? Now that's subjective. I see no issue with tone here. http://stackoverflow.com/questions/1832811/which-super-shell-scripting-language-should-i-learn-perl-ruby-or-tcl Comment by Cory House on Which 'super shell scripting' language should I learn, Perl, Ruby or Tcl? Cory House 2009-12-02T15:08:10Z 2009-12-02T15:08:10Z Closed? If you don't like it, don't read it. C'mon guys, this is a valid question. http://stackoverflow.com/questions/67729/the-best-php-editor-for-vista/67777#67777 Comment by Cory House on The best PHP editor for Vista Cory House 2009-12-02T14:06:26Z 2009-12-02T14:06:26Z Was an awesome tool in version 1.5, but the replacement of Aptana PHP with Eclipse PDT was a huge step backward. I'd suggest downloading the 1.5 version to enjoy awesome PHP support including very fast intellisense. http://stackoverflow.com/questions/1823554/converting-linq-to-xml-query-from-c-to-vb-net-can-you-spot-my-error/1823676#1823676 Comment by Cory House on Converting Linq to XML query from C# to VB.Net. Can you spot my error? Cory House 2009-12-01T14:02:38Z 2009-12-01T14:02:38Z Thanks for the reply Richard, I actually found my call to the method this Linq query is in was bogus so the issue wasn't even with the query itself. However, regarding throwing an exception, I'd actually prefer the joins operate like an inner join. So which solution are you suggesting in that case? http://stackoverflow.com/questions/1823554/converting-linq-to-xml-query-from-c-to-vb-net-can-you-spot-my-error Comment by Cory House on Converting Linq to XML query from C# to VB.Net. Can you spot my error? Cory House 2009-12-01T02:24:03Z 2009-12-01T02:24:03Z @ Richard - Yes, that's correct. Using XDocument. http://stackoverflow.com/questions/1823554/converting-linq-to-xml-query-from-c-to-vb-net-can-you-spot-my-error Comment by Cory House on Converting Linq to XML query from C# to VB.Net. Can you spot my error? Cory House 2009-12-01T02:22:25Z 2009-12-01T02:22:25Z Good point Andrew - I added it. http://stackoverflow.com/questions/510010/what-is-so-evil-about-flash-based-website/510065#510065 Comment by Cory House on What is so evil about flash based website? Cory House 2009-11-30T13:17:42Z 2009-11-30T13:17:42Z @Mk12 - Note the qualifier &quot;typically&quot; in my first sentence. Flash, regardless of whether or not it was/remains a technical limitation, has a reputation for the issues I've mentioned. http://stackoverflow.com/questions/630714/smarty-the-best-choice/631084#631084 Comment by Cory House on Smarty, the best choice? Cory House 2009-11-25T17:16:07Z 2009-11-25T17:16:07Z Gotta diagree on the nice syntax part - The curly brace was a poor choice of delimiter - you have to escape any js with curly braces to avoid smarty parsing it. http://stackoverflow.com/questions/1780389/converting-linq-to-xml-result-to-generic-list-in-vb-net-odd-error/1780407#1780407 Comment by Cory House on Converting Linq to XML result to generic list in VB.Net. Odd error. Cory House 2009-11-23T04:08:08Z 2009-11-23T04:08:08Z Excellent point and +1 for ya. I used a C# to VB converter that stripped the section assigning values to the category object. I added that back in and all is well. Thanks! http://stackoverflow.com/questions/1780389/converting-linq-to-xml-result-to-generic-list-in-vb-net-odd-error/1780404#1780404 Comment by Cory House on Converting Linq to XML result to generic list in VB.Net. Odd error. Cory House 2009-11-23T04:07:04Z 2009-11-23T04:07:04Z Jon, there's a reason you're #1 round here, huh? :) Spot on. Simple fix and clear answer. Can't thank you enough! http://stackoverflow.com/questions/1751183/help-with-searchform-with-get/1751217#1751217 Comment by Cory House on Help with searchform with GET Cory House 2009-11-17T19:44:21Z 2009-11-17T19:44:21Z Your comment is unclear. What didn't work? Are you concerned about the order of the get params? Did the name get truncated? http://stackoverflow.com/questions/1738518/php-framework-ebay-like-site/1738552#1738552 Comment by Cory House on PHP Framework: Ebay Like Site Cory House 2009-11-16T19:04:22Z 2009-11-16T19:04:22Z Of the options you listed, Codeigniter easily has the strongest documentation, which is why it's so easy to learn/use. I'd highly recommend it.