User Sam - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T01:43:24Zhttp://stackoverflow.com/feeds/user/92551http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1593734/free-lightweight-php-e-commerce-solution/1593740#15937401Answer by Sam for Free, Lightweight PHP e-Commerce solutionSam2009-10-20T10:34:05Z2009-10-20T10:34:05Z<p>Try <a href="http://www.opencart.com/" rel="nofollow">http://www.opencart.com/</a></p>
http://stackoverflow.com/questions/148853/caching-in-urllib2/1591937#15919370Answer by Sam for Caching in urllib2?Sam2009-10-20T00:57:45Z2009-10-20T00:57:45Z<p>This article on Yahoo Developer Network - <a href="http://developer.yahoo.com/python/python-caching.html" rel="nofollow">http://developer.yahoo.com/python/python-caching.html</a> - describes how to cache http calls made through urllib to either memory or disk.</p>
http://stackoverflow.com/questions/811737/what-causes-this-genshis-template-syntax-error0What causes this Genshi's Template Syntax Error?Sam2009-05-01T14:55:32Z2009-09-13T09:50:55Z
<p>A Genshi template raises the following error:</p>
<blockquote>
<p>TemplateSyntaxError: invalid syntax in expression <code>"${item.error}"</code> of <code>"choose"</code> directive</p>
</blockquote>
<p>The part of the template code that the error specifies is the following (<em>'feed' is a list of dictionary which is passed to the template</em>):</p>
<pre><code><item py:for="item in feed">
<py:choose error="${item.error}">
<py:when error="0">
<title>${item.something}</title>
</py:when>
<py:otherwise>
<title>${item.something}</title>
</py:otherwise>
</py:choose>
</item>
</code></pre>
<p>Basically, item.error holds either a <code>'0'</code> or a <code>'1'</code> and I want the output based on that. I am not sure where the error is - any help is appreciated. Thanks.</p>
http://stackoverflow.com/questions/1264248/database-design-composite-key-vs-one-column-primary-key1Database Design: Composite key vs one column primary keySam2009-08-12T04:42:57Z2009-09-13T09:44:33Z
<p>A web application I am working on has encountered an unexpected 'bug' - The database of the app has two tables (among many others) called 'States' and 'Cities'.</p>
<p><strong>'<em>States</em>' table fields:</strong></p>
<pre><code>-------------------------------------------
idStates | State | Lat | Long
-------------------------------------------
</code></pre>
<p>'<em>idStates</em>' is an auto-incrementing primary key.</p>
<p><strong>'<em>Cities</em>' table fields:</strong></p>
<pre><code>----------------------------------------------------------
idAreaCode | idStates | City | Lat | Long
----------------------------------------------------------
</code></pre>
<p>'<em>idAreaCode</em>' is a primary key consisting of country code + area code (e.g. 91422 where 91 is the country code for india and 422 is the area code of a city in India). '<em>idStates</em>' is a foreign key derived from '<em>States</em>' table to associate each city in the '<em>Cities</em>' table with its corresponding State. </p>
<p>We figured that the country code + area code combination would be unique for each city, and thus could safely be used as a primary key. Everything was working. But a location in India found an unexpected 'flaw' in the db design - India, like the US is a federal democracy and is geographically divided into many states or union territories. Both the states and union territories data is stored in the '<em>States</em>' table. There is, however, one location - <a href="http://www.haryana-online.com/chandigarh.htm" rel="nofollow"><em>Chandigarh</em></a> - which belongs to TWO states (<em>Haryana</em> and <em>Punjab</em>) and is also a union territory by itself.</p>
<p>Obviously, the current db design doesn't allow us to store more than one record of the city '<em>Chandigarh</em>'. </p>
<p>One of the solutions suggested is to create a primary key combining the columns '<em>idAreaCode</em>' and '<em>idStates</em>'.</p>
<p>I'd like to know if this is the best solution possible?</p>
<p>(FYI: we are using MySQL with the InnoDB engine).</p>
<p><hr /></p>
<p>More information: </p>
<ul>
<li>The database stores meteorological information for each city. Thus, the state and city are the starting point of each query.</li>
<li>Fresh data for each city is inserted everyday using a CSV file. The CSV file includes an idStates (for state) and idAreaCode (for city) column which is used to identify each record.</li>
<li>Database normalization is important to us.</li>
</ul>
<p><hr /></p>
<p>Note: The reason for not using an auto incrementing primary key for the city table is that the database is updated everyday / hourly using a CSV file (which is generated by another app). And each record in the CSV file is identified by the idStates and idAreaCode column. Hence it is preferred that the primary key used in the city table is the same for every city, even if the table is deleted and refreshed again. Zip codes (or pin codes) and area codes (or STD codes) meet the criteria of being unique, static (don't change often) and a ready list of these are easily available. (We decided on area codes for now because India is in the process of updating its pin codes to a new format).</p>
<blockquote>
<p>The <strong>solution</strong> we decided on was to handle this at the application level instead of making changes to the database design. In the database we will only be storing one record of 'Chandigarh'. In the application we've created a flag for any search for 'Chandigarh, Punjab' or 'Chandigarh, Haryana' to redirect search to this record. Yeah, it's not ideal, but an acceptable compromise since this is the ONLY exception we've come across so far.</p>
</blockquote>
http://stackoverflow.com/questions/851666/free-website-templates-royalty-free-css-html-asp-net-stock-photos/851751#8517512Answer by Sam for Free Website Templates - Royalty Free - CSS HTML ASP.NET - Stock PhotosSam2009-05-12T08:35:45Z2009-05-12T08:45:05Z<p>Others have pointed to some good resources to free templates.
I'd like to offer you a different perspective -</p>
<p>On the templates idea:</p>
<ol>
<li><p>99% of all free templates require you to credit the original designer with a link. <strong>Especially the really good ones.</strong></p></li>
<li><p>Well designed (and thus popular) templates will be used by many other websites. I doubt if a fortune 500 company is going to be happy about that.</p></li>
</ol>
<p>What you should really be doing:</p>
<ol>
<li>Hire a good graphic designer. (Knowing HTML doesn't make anyone a 'designer').</li>
<li>For web applications, start by designing the interface first (wireframes, mockups will do) and then move on to coding the application. </li>
</ol>
http://stackoverflow.com/questions/829284/guid-vs-int-identity/829325#8293251Answer by Sam for GUID vs INT IDENTITYSam2009-05-06T12:29:18Z2009-05-06T12:29:18Z<p>I think the database also matters. From a MySQL perspective - generally, the smaller the datatype the faster the performance.</p>
<p>It seems to hold true for int vs GUID too -
<a href="http://kccoder.com/mysql/uuid-vs-int-insert-performance/" rel="nofollow">http://kccoder.com/mysql/uuid-vs-int-insert-performance/</a></p>
http://stackoverflow.com/questions/54998/how-scalable-is-sqlite/827194#8271945Answer by Sam for How Scalable is SQLite?Sam2009-05-05T22:27:36Z2009-05-05T22:27:36Z<p>Have you read this SQLite docs - <a href="http://www.sqlite.org/whentouse.html" rel="nofollow">http://www.sqlite.org/whentouse.html</a> ?</p>
<blockquote>
<p>SQLite usually will work great as the
database engine for low to medium
traffic websites (which is to say,
99.9% of all websites). The amount of web traffic that SQLite can handle
depends, of course, on how heavily the
website uses its database. Generally
speaking, any site that gets fewer
than 100K hits/day should work fine
with SQLite. The 100K hits/day figure
is a conservative estimate, not a hard
upper bound. SQLite has been
demonstrated to work with 10 times
that amount of traffic.</p>
</blockquote>
http://stackoverflow.com/questions/827010/sqlite-pre-allocating-database-size/827158#8271581Answer by Sam for SQLite - pre allocating database size...Sam2009-05-05T22:16:52Z2009-05-05T22:16:52Z<p>There is a hack - Insert a bunch of data into the database till the database size is what you want and then delete the data. This works because:</p>
<blockquote>
<p>"When an object (table, index, or
trigger) is dropped from the database,
it leaves behind empty space. This
empty space will be reused the next
time new information is added to the
database. But in the meantime, the
database file might be larger than
strictly necessary."</p>
</blockquote>
<p>Naturally, this isn't the most reliable method. (Also, you will need to make sure that auto_vacuum is disabled for this to work). You can learn more here - <a href="http://www.sqlite.org/lang_vacuum.html" rel="nofollow">http://www.sqlite.org/lang_vacuum.html</a></p>
http://stackoverflow.com/questions/819400/good-open-source-code-to-learn-web-programming/819611#8196112Answer by Sam for Good Open Source Code to learn Web ProgrammingSam2009-05-04T10:33:55Z2009-05-05T21:55:48Z<p>If I understand you correctly, you want to study the code of popular open source web applications to understand how 'real world, live, popular' applications are coded.</p>
<p>If that is so, I recommend the following popular, open source applications:</p>
<ul>
<li><p>Wordpress (@ wordpress.org ) - coded with PHP, this application is a very popular blog management system</p></li>
<li><p>Text Pattern (@ textpattern.com ) - coded with PHP, this application is similar to wordpress but slightly more advanced.</p></li>
<li><p>CGI Module (@ <a href="http://search.cpan.org/~lds/CGI.pm-3.43/CGI.pm" rel="nofollow">http://search.cpan.org/~lds/CGI.pm-3.43/CGI.pm</a> ) - coded with Perl, this perl module is used in most perl based web applications. Understanding the code of this module will give you great insights on a part of how the internet works.</p></li>
<li><p>SQLAlchemy (@ sqlalchemy.org ) - coded with Python, is a popular application in the python community to interface / interact with databases.</p></li>
</ul>
<p>It would be easier if you familiarize yourself with one of these languages well before you try to understand the working of any of the above.</p>
http://stackoverflow.com/questions/797284/database-design-defining-data-access-from-a-list-of-cities1Database Design: Defining Data Access from a List of CitiesSam2009-04-28T10:46:36Z2009-04-28T11:04:04Z
<p>I am trying to build an API that gives data on various cities. </p>
<p>Currently, there is a table called <em>APIPriv</em>, which has the following columns:</p>
<pre><code>===================================================
idApiPriv | idClient | Daily | Hourly | DevKey
===================================================
1 | 23 | 'Y' | 'N' |[MD5 Hex]
</code></pre>
<p><em>idClient</em> is a foreign key to the client table. </p>
<p><em>Daily</em> and <em>Hourly</em> are types of data - '<strong>Y</strong>' means the client / developer has access to the data and '<strong>N</strong>' means he / she doesn't. </p>
<p><em>DevKey</em> is an autogenerated MD5 string, provided to the developer, which is used as the developer key.</p>
<p>Now, for each developer having access to the API, the database also needs to store a list of cities associated with each developer. The developer will only recive data on these cities. </p>
<p>How do I define this in the database? The number of cities in a list is not fixed. A developer may have access to 5 cities, another to 10, another to 7. </p>
<p>(There is already a master <em>City</em> table, which holds a list of 1500 cities and, naturally, the list of cities for each developer needs to be a subset of this data.)</p>
http://stackoverflow.com/questions/796931/why-wasnt-code-managed-from-the-start/797320#7973200Answer by Sam for Why wasn't code "managed" from the start?Sam2009-04-28T11:02:02Z2009-04-28T11:02:02Z<p>The answer becomes clearer - humans weren't built for writing programs. Machines should be doing it and letting us relax by playing pacman.</p>
http://stackoverflow.com/questions/764184/python-how-do-i-get-time-from-a-datetime-timedelta-object2Python: How do I get time from a datetime.timedelta object?Sam2009-04-18T20:55:48Z2009-04-19T20:48:21Z
<p>A mysql database table has a column whose datatype is time ( <a href="http://dev.mysql.com/doc/refman/5.0/en/time.html" rel="nofollow">http://dev.mysql.com/doc/refman/5.0/en/time.html</a> ). When the table data is accessed, Python returns the value of this column as a datetime.timedelta object. How do I extract the time out of this? (I didn't really understand what timedelta is for from the python manuals).</p>
<p>E.g. The column in the table contains the value "18:00:00"
Python-MySQLdb returns this as datetime.timedelta(0, 64800)</p>
<p><hr /></p>
<p>Please ignore what is below (it does return different value) - </p>
<p><em>Added: Irrespective of the time value in the table, python-MySQLdb seems to only return datetime.timedelta(0, 64800).</em></p>
<p>Note: I use Python 2.4</p>
http://stackoverflow.com/questions/3630/sqlite-vs-mysql/3632#3632Comment by Sam on SQLite vs MySQLSam2009-10-20T10:49:30Z2009-10-20T10:49:30Z"Not fit for production" is quite a generalization. SQLite is used by Google, Adobe, Mozilla, Opera and many others. Even if you are trying to say to say that it is not fit for "production" use on a multi user environment, you are incorrect. http://stackoverflow.com/questions/54998/how-scalable-is-sqlite/62123#62123Comment by Sam on How Scalable is SQLite?Sam2009-10-20T10:43:19Z2009-10-20T10:43:19ZWhile the ideal use case for SQLite might be a single user, it doesn't mean it can't be used in a multi user environment.http://stackoverflow.com/questions/1264248/database-design-composite-key-vs-one-column-primary-key/1265723#1265723Comment by Sam on Database Design: Composite key vs one column primary keySam2009-08-14T14:45:59Z2009-08-14T14:45:59ZYes, the area code (or STD code as it is called in India) for all parts of the city is the same. This code is unique and set by a state owned telecom company and I use that data - <a href="http://www.bsnl.co.in/viewstatecode.php" rel="nofollow">bsnl.co.in/viewstatecode.php</a> . Chandigarh is a union territory and also the capital of two states - Haryana and Punjab ( <a href="http://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=chandigarh,+india&sll=37.0625,-95.677068&sspn=33.29802,56.513672&ie=UTF8&ll=32.026706,76.772461&spn=17.764991,28.256836&z=5" rel="nofollow">maps.google.com/maps?f=q&source=s_q&hl=en…</a> ) which share borders with each other.http://stackoverflow.com/questions/1264248/database-design-composite-key-vs-one-column-primary-key/1264340#1264340Comment by Sam on Database Design: Composite key vs one column primary keySam2009-08-13T16:56:31Z2009-08-13T16:56:31ZThis does appear to be the popular sentiment. Thanks.http://stackoverflow.com/questions/1264248/database-design-composite-key-vs-one-column-primary-key/1264268#1264268Comment by Sam on Database Design: Composite key vs one column primary keySam2009-08-13T16:54:59Z2009-08-13T16:54:59ZThanks, I'll look into your suggestion. (We currently have 2000+ cities in the db, which may double by next year). http://stackoverflow.com/questions/1264248/database-design-composite-key-vs-one-column-primary-key/1264256#1264256Comment by Sam on Database Design: Composite key vs one column primary keySam2009-08-13T16:33:53Z2009-08-13T16:33:53ZThanks! Yours and Walter Mitty's suggestions seems the most practical.http://stackoverflow.com/questions/1264248/database-design-composite-key-vs-one-column-primary-key/1264253#1264253Comment by Sam on Database Design: Composite key vs one column primary keySam2009-08-13T16:31:15Z2009-08-13T16:31:15ZThnaks, but this doesn't help for our setup- it is important that the idAreaCode be unique.http://stackoverflow.com/questions/1264248/database-design-composite-key-vs-one-column-primary-key/1265723#1265723Comment by Sam on Database Design: Composite key vs one column primary keySam2009-08-13T16:28:37Z2009-08-13T16:28:37ZThanks for posting. FYI - the database stores meteorological info of each city. The state table is important for (1) use in the mapping GUI (2) reducing query overhead when looking up a city (3) identifying a city with the same name in different state / country. So far this is the only unique situation I've come across where a city belongs to more than one state and it does seem to be a shame to add an extra table for this.http://stackoverflow.com/questions/851666/free-website-templates-royalty-free-css-html-asp-net-stock-photos/851751#851751Comment by Sam on Free Website Templates - Royalty Free - CSS HTML ASP.NET - Stock PhotosSam2009-05-12T09:09:41Z2009-05-12T09:09:41ZMy answer was based on your original question which didn't clarify that the templates would be used for "internal applications". By the way, you should also clarify what you mean by "I'm assuming that even giving credit to the original author can cause some heartburn for fortune 500 managers".http://stackoverflow.com/questions/819400/good-open-source-code-to-learn-web-programming/819611#819611Comment by Sam on Good Open Source Code to learn Web ProgrammingSam2009-05-06T12:13:48Z2009-05-06T12:13:48ZAgreed - it's a sorry state of affairs when quality and popularity are not directly proportional.http://stackoverflow.com/questions/827010/sqlite-pre-allocating-database-size/827158#827158Comment by Sam on SQLite - pre allocating database size...Sam2009-05-06T12:09:41Z2009-05-06T12:09:41ZGlad to help. Another thing that would help you slightly improve the performance of the SQLite db is to make sure that you defragment the db file (especially if you are using windows).http://stackoverflow.com/questions/819400/good-open-source-code-to-learn-web-programming/819611#819611Comment by Sam on Good Open Source Code to learn Web ProgrammingSam2009-05-04T20:19:21Z2009-05-04T20:19:21ZYou are right about WordPress, it is not very well coded. The WordPress team are making an effort to improve it though. (I am not a fan of WordPress and prefer TextPattern, but one can't deny that Wordpress is the most popular blog management system out there).http://stackoverflow.com/questions/811737/what-causes-this-genshis-template-syntax-error/812704#812704Comment by Sam on What causes this Genshi's Template Syntax Error?Sam2009-05-04T10:00:46Z2009-05-04T10:00:46ZThanks, Jorenko. I realized the mistake myself and changed it. But it still didn't work. I decided to use two if's instead and that worked.http://stackoverflow.com/questions/797284/database-design-defining-data-access-from-a-list-of-cities/797333#797333Comment by Sam on Database Design: Defining Data Access from a List of CitiesSam2009-04-28T11:46:42Z2009-04-28T11:46:42ZThe tip to include start and end date is useful. Thanks Joe.http://stackoverflow.com/questions/797284/database-design-defining-data-access-from-a-list-of-cities/797329#797329Comment by Sam on Database Design: Defining Data Access from a List of CitiesSam2009-04-28T11:44:39Z2009-04-28T11:44:39ZThanks for the tip Dave - A boolean value does make better sense.