User Alex. S. - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T16:31:01Zhttp://stackoverflow.com/feeds/user/18300http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/130061/book-and-tutorial-recommedations-for-django-1-0/130076#1300763Answer by Alex. S. for Book and tutorial recommedations for Django 1.0Alex. S.2008-09-24T21:25:23Z2009-12-03T12:48:01Z<p>Besides the Django book, start here: <a href="http://docs.djangoproject.com/en/dev/" rel="nofollow">http://docs.djangoproject.com/en/dev/</a>.</p>
<p>Then, if you find something weird, look at the Google Group <em><a href="http://groups.google.com/group/django-users/" rel="nofollow">Django users</a></em>.</p>
<p>Finally, as last resort look directly at the code. Unlike other frameworks, I like Django very much because of their architecture and good code.</p>
http://stackoverflow.com/questions/247301/what-are-the-advantages-of-using-plpgsql-in-postgresql3what are the advantages of using plpgsql in postgresqlAlex. S.2008-10-29T15:42:09Z2009-11-22T20:44:25Z
<p>Besides the syntactic sugar and expressiveness power what are the differences in runtime efficiency. I mean, plpgsql can be faster than, lets say plpythonu or pljava? Or are they all approximately equals?</p>
<p>We are using stored procedures for the task of detecting nearly-duplicates records of people in a moderately sized database (around 10M of records)</p>
http://stackoverflow.com/questions/1630379/is-there-any-open-source-project-similar-to-the-django-admin-but-in-net2Is there any open source project similar to the django admin, but in .NET?Alex. S.2009-10-27T12:08:22Z2009-11-16T11:53:28Z
<p>I would like to know if there exists some reusable/pluggable modules which implement CRUD operations on users, groups, roles and permissions available to be integrated in .NET web applications.</p>
http://stackoverflow.com/questions/1712817/what-is-best-several-tables-or-a-really-big-one2What is best: several tables or a really big one?Alex. S.2009-11-11T03:26:36Z2009-11-11T04:04:13Z
<p>I was wondering about this. Let's say I need to store in a datawarehouse the data for several measures vs time:</p>
<pre><code>t | x'
-------
1 | 20
2 | 50
3 | 30
t | x''
-------
3 | 23
4 | 56
6 | 28
</code></pre>
<p>and so on..</p>
<pre><code>t | x''n
-------
5 | 35
6 | 92
7 | 23
</code></pre>
<p>If I need to build some large fact table composing the previous data in ways not yet defined, what can be more efficient (in whatever sense), to have a large table storing everything or to have separate tables like I depicted?</p>
<pre><code>t | x' | x''
----------------
1 | 20 |
2 | 50 |
3 | 30 | 23 ...
4 | | 56
5 | | 28
6 | |
7 | |
</code></pre>
http://stackoverflow.com/questions/231767/can-somebody-explain-me-the-python-yield-statement45can somebody explain me the python yield statement?Alex. S.2008-10-23T22:21:11Z2009-11-10T11:54:51Z
<p>In plain english, please...</p>
<p>I'm trying to understand this code:</p>
<pre><code>def node._get_child_candidates(self, distance, min_dist, max_dist):
if self._leftchild and distance - max_dist < self._median:
yield self._leftchild
if self._rightchild and distance + max_dist >= self._median:
yield self._rightchild
</code></pre>
<p>And this is the code of the caller:</p>
<pre><code>result, candidates = list(), [self]
while candidates:
node = candidates.pop()
distance = node._get_dist(obj)
if distance <= max_dist and distance >= min_dist:
result.extend(node._values)
candidates.extend(node._get_child_candidates(distance, min_dist, max_dist))
return result
</code></pre>
<p>Can you explain me what is happening when the method _get_child_candidates_ is being called?
It returns a list?, a single element? is called again? what is the effect of the yield keyword in this case?</p>
http://stackoverflow.com/questions/704426/how-can-i-change-the-default-language-loaded-in-a-project-using-pinax-django0how can I change the default language loaded in a project using pinax (django)Alex. S.2009-04-01T07:37:52Z2009-11-10T06:00:02Z
<p>I'm working with the basic_project of Pinax and I need to change the default language of the application from english to french or to spanish</p>
<p>I'd tried changing the variable </p>
<p>LANGUAGE_CODE = 'es', </p>
<p>but it remains in english, even the admin, so Im guessing this change does not have any effect at all.</p>
<p>where can I continue looking for more information about this?</p>
<p>In the past, in a Django application (not using pinax) I have changed that parameter and it did work.</p>
http://stackoverflow.com/questions/1694447/how-to-set-an-event-handler-in-a-django-form-input-field0how to set an event handler in a django form input fieldAlex. S.2009-11-07T21:17:50Z2009-11-07T21:35:55Z
<p>How to set a javascript function as handler in the event onclick in a given field of a Django Form. Is this possible?</p>
<p>Any clue would be appreciated.</p>
http://stackoverflow.com/questions/234131/how-do-you-efficiently-determine-if-a-postgres-table-has-rows0How do you efficiently determine if a Postgres table has rows Alex. S.2008-10-24T15:57:19Z2009-11-07T01:28:09Z
<p>I did this tests and the results seems the count function scale linearly. I have another function relying strongly in the efficiency to know if there are any data, so I would like to know how to replace this select count(*) with another more efficient (maybe constant?) query or data structure.</p>
<blockquote>
<p>psql -d testdb -U postgres -f truncate_and_insert_1000_rows.sql > NUL</p>
<p>psql -d testdb -U postgres -f count_data.sql</p>
</blockquote>
<h2>--------------------------------------------------------------------------------</h2>
<p>Aggregate (cost=36.75..36.76 rows=1 width=0) (actual time=0.762..0.763 rows=1
loops=1)
-> Seq Scan on datos (cost=0.00..31.40 rows=2140 width=0) (actual time=0.02
8..0.468 rows=1000 loops=1)
Total runtime: <strong>0.846 ms</strong>
(3 filas)</p>
<blockquote>
<p>psql -d testdb -U postgres -f truncate_and_insert_10000_rows.sql > NUL</p>
<p>psql -d testdb -U postgres -f count_data.sql</p>
</blockquote>
<h2>--------------------------------------------------------------------------------</h2>
<p>Aggregate (cost=197.84..197.85 rows=1 width=0) (actual time=6.191..6.191 rows=
1 loops=1)
-> Seq Scan on datos (cost=0.00..173.07 rows=9907 width=0) (actual time=0.0
09..3.407 rows=10000 loops=1)
Total runtime: <strong>6.271 ms</strong>
(3 filas)</p>
<blockquote>
<p>psql -d testdb -U postgres -f truncate_and_insert_100000_rows.sql > NUL</p>
<p>psql -d testdb -U postgres -f count_data.sql</p>
</blockquote>
<h2>--------------------------------------------------------------------------------</h2>
<p>Aggregate (cost=2051.60..2051.61 rows=1 width=0) (actual time=74.075..74.076 r
ows=1 loops=1)
-> Seq Scan on datos (cost=0.00..1788.48 rows=105248 width=0) (actual time=
0.032..46.024 rows=100000 loops=1)
Total runtime: <strong>74.164 ms</strong>
(3 filas)</p>
<blockquote>
<p>psql -d prueba -U postgres -f truncate_and_insert_1000000_rows.sql > NUL</p>
<p>psql -d testdb -U postgres -f count_data.sql</p>
</blockquote>
<h2>--------------------------------------------------------------------------------</h2>
<p>Aggregate (cost=19720.00..19720.01 rows=1 width=0) (actual time=637.486..637.4
87 rows=1 loops=1)
-> Seq Scan on datos (cost=0.00..17246.60 rows=989360 width=0) (actual time
=0.028..358.831 rows=1000000 loops=1)
Total runtime: <strong>637.582 ms</strong>
(3 filas)</p>
<p>the definition of data is</p>
<pre><code>CREATE TABLE data
(
id INTEGER NOT NULL,
text VARCHAR(100),
CONSTRAINT pk3 PRIMARY KEY (id)
);
</code></pre>
http://stackoverflow.com/questions/831681/how-to-display-line-numbers-in-less-gnu1how to display line numbers in less (gnu)?Alex. S.2009-05-06T20:52:09Z2009-11-06T15:09:00Z
<p>somebody knows the command to make less display line numbers in the left column?</p>
http://stackoverflow.com/questions/1630379/is-there-any-open-source-project-similar-to-the-django-admin-but-in-net/1638050#16380500Answer by Alex. S. for Is there any open source project similar to the django admin, but in .NET?Alex. S.2009-10-28T15:35:16Z2009-10-28T15:40:25Z<p>The most similar thing I've found, are <a href="http://www.asp.net/learn/security/" rel="nofollow">these series of tutorials</a> in ASP.NET</p>
http://stackoverflow.com/questions/1552351/looking-for-free-agile-project-management-software/1552378#15523783Answer by Alex. S. for Looking for Free Agile Project Management SoftwareAlex. S.2009-10-12T02:05:20Z2009-10-12T02:05:20Z<p>Use <a href="http://redmine.org" rel="nofollow">redmine</a>. It's written on Ruby on Rails and is amazing!</p>
http://stackoverflow.com/questions/1520893/how-to-add-another-column-to-the-issues-table-report-in-redmine0How to add another column to the issues table report in redmine?Alex. S.2009-10-05T15:51:36Z2009-10-06T01:55:38Z
<p>I would like to know if someone can help me to determine what steps I do need to modify redmine in the table shown at the url</p>
<pre><code>http://0.0.0.0:3000/projects/my_project/issues
</code></pre>
<p>I need to add another column, lets say "close date", where it reports the last date on which an issue became closed state.</p>
<p>as I understand redmine, the matter is to return the field created _ on of the journal whose journal _ details change to status _ id = 5</p>
<p>and the change would be somewhere in issues_controller, but given my ignorance on ruby and ruby on rails I feel lost...</p>
<p>so any help would be very valuable</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/810096/what-algorithm-does-stackoverflow-use-to-determine-if-a-question-may-be-subjectiv5What algorithm does StackOverflow use to determine if a question may be subjective? [closed]Alex. S.2009-05-01T03:44:29Z2009-09-03T19:26:44Z
<p>I was asking a question in serverfault.com and this message warned me (correctly!):</p>
<blockquote>
<p>The question you're asking appears
subjective and is likely to be closed</p>
</blockquote>
<p>So, I'm curious if there any classifier or machine learning technique behind, or if it is just some heuristics on keywords.</p>
<p>Do you know?</p>
http://stackoverflow.com/questions/1301279/meeting-trackers-open-source0Meeting trackers open source?Alex. S.2009-08-19T17:02:54Z2009-08-26T17:11:22Z
<p>I'm looking for meeting trackers using Django or RoR.</p>
<p>Do you know anything on this subject?</p>
http://stackoverflow.com/questions/1301279/meeting-trackers-open-source/1336252#13362520Answer by Alex. S. for Meeting trackers open source?Alex. S.2009-08-26T17:11:22Z2009-08-26T17:11:22Z<p>Finally, I made some litle adaptation of redmine.org</p>
http://stackoverflow.com/questions/1295615/how-to-save-the-username-who-has-changed-one-django-model-using-a-custom-track-fi0How to save the username who has changed one Django model using a custom track field of AuditTrail Alex. S.2009-08-18T18:16:43Z2009-08-18T18:22:57Z
<p>From <a href="http://code.djangoproject.com/wiki/AuditTrail" rel="nofollow">AuditTrail</a>, I have this model definition:</p>
<pre><code>from django.db import models
import audit
import random
def some_callback(instance):
return `random.randrange(1, 99)` + 'trackable_val'
class Person(models.Model):
first_name = models.CharField(max_length=255)
last_name = models.CharField(max_length=255)
salary = models.PositiveIntegerField()
history = audit.AuditTrail(track_fields=(('extra_1', models.CharField(max_length=30), 'hardcoded_value'), ('extra_2', models.CharField(max_length=30), some_callback),))
def __str__(self):
return "%s %s" % (self.first_name, self.last_name)
</code></pre>
<p>How could I code the option to save some string in the audit? The way I think, if I knew how/where to pass the string with the username to the AuditTrail constructor that could solve my problem. I would like to add the <code>request.user</code> as argument of <code>some_callback</code>. </p>
<p>However in its current form, the callback doesn't accept parameters. Besides I don't know how to pass the string with the username to the Person constructor.</p>
<p>This is becoming more complicated of what I thought initially. That say me it's likely that I'm doing something wrong... What do you think?</p>
http://stackoverflow.com/questions/1286623/how-to-change-redmine-to-support-versioned-files-in-every-issue0How to change Redmine to support versioned files in every issueAlex. S.2009-08-17T07:43:56Z2009-08-17T07:43:56Z
<p>Its <a href="http://redmine.org" rel="nofollow">redmine</a>, a Ruby on Rails application. Currently, every issue can have one or more files. But if a user decide to update/change them, the old files are replaced. My task is to develop something to allow versioned files for every issue: so, if a user update the content of an existing issue, the previous state of the issue is preserved and it can be displayed in some form.</p>
<p>I'm new to RoR and Redmine development.</p>
http://stackoverflow.com/questions/1207492/how-to-force-a-browser-to-refresh-a-cached-version-of-a-webpage/1207744#12077440Answer by Alex. S. for How to force a browser to refresh a cached version of a webpageAlex. S.2009-07-30T16:29:06Z2009-07-30T16:29:06Z<p>change URLs of every resource</p>
http://stackoverflow.com/questions/155490/os-independent-api-to-monitor-file-system1OS-independent API to monitor file system?Alex. S.2008-09-30T22:59:30Z2009-07-18T17:52:23Z
<p>Hi,</p>
<p>I would like to experiment with ideas about distributed file synchronization/replication. To make it efficient when the user is working, I would like to implement some kind of daemon to monitor changes in some directory (e.g. /home/user/dirToBeMonitored or c:\docs and setts\user\dirToBeMonitored). So, I could be able to know which filename was added/changed/deleted at every time (or within a reasonable interval).</p>
<p>Is this possible with any high-medium level language?. Do you know some API (and in which language?) to do this?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/193677/what-ideas-do-you-think-can-it-be-applied-to-this-gui-to-make-it-more-effective-f0What ideas do you think can it be applied to this GUI to make it more effective for real people usage?Alex. S.2008-10-11T05:10:47Z2009-07-11T03:32:17Z
<p>I am talking about Google Text Translation User Interface, in <a href="http://www.google.com/language_tools" rel="nofollow">Google Language Tools</a>.</p>
<p>I like the fact that you can get translations of text for a lot of languages. However, I think is not so good always to show all options of translation. I believe is preferably to show, in first instance, only the most frequent options for text translation.</p>
<p>Really, it has become very annoying trying to translate from English to spanish, for example. Using the keyboard (E, Tab, then S Key repeatedly), the first three options presented are Serbian, Slovak, Slovenian, and finally Spanish...</p>
<p>Another example: from English to French. Using the keyboard again (F key repeatedly) shows Filipino and Finish before French!!!</p>
<p>What sort of ideas do you think can it be applied to this GUI to make it more effective for real people usage?</p>
http://stackoverflow.com/questions/304383/how-do-i-edit-a-commit-message-that-i-already-committed-in-subversion/1015407#10154072Answer by Alex. S. for How do I edit a commit message that I already committed in Subversion?Alex. S.2009-06-18T21:54:44Z2009-06-21T05:57:24Z<p>When you run this command, </p>
<pre><code>svn propedit svn:log --revprop -r NNN
</code></pre>
<p>and just in case you see this message:</p>
<blockquote>
<p>DAV request failed; it's possible that
the repository's pre-revprop-change
hook either failed or is non-existent</p>
</blockquote>
<p>Its because Subversion doesn’t allow you to modify log messages because they are unversioned and will be lost permanently.</p>
<p>Go to the hooks directory on your Subversion server (replace ~/svn/reponame with the directory of your repository)</p>
<pre><code>cd ~/svn/reponame/hooks
</code></pre>
<p>Remove the extension</p>
<pre><code>mv pre-revprop-change.tmpl pre-revprop-change
</code></pre>
<p>Make it executable (cannot do chmod +x!)</p>
<pre><code>chmod 755 pre-revprop-change
</code></pre>
<p><a href="http://jacqueschirag.wordpress.com/2007/07/22/changing-revision-property-in-subversion-with-tortoisesvn/" rel="nofollow">Source</a></p>
http://stackoverflow.com/questions/647582/which-approach-do-you-recommend-for-data-model-in-a-e-health-system1which approach do you recommend for data model in a e-health systemAlex. S.2009-03-15T10:00:23Z2009-06-17T14:24:27Z
<p>We have been assigned to build a e-health platform for a customer, and in the design process we have arrived to this dilema:</p>
<p>We have two options for the data model, the <a href="http://www.hl7.org/Library/data-model/" rel="nofollow">HL7 RIM</a> (reference information model) and another one (still to be designed).</p>
<p>Although the RIM has been documented extensively and it seems very complete, I'm not sure if it is the best choice, given its complexity and apparent slowness.</p>
<p>I would like to design a more simple model which take in account only the customer requirements aiming to be more easy to understand and maybe faster.</p>
<p>What do you think? Should I follow the HL7-RIM?, or should I think in a simpler model for the requirements of my customer?</p>
<p>In any case, the need for interchange of information would require an implementation of HL7 messaging protocol, so we must develop that part independent of the underlying model.</p>
<p>Any advice would be great!</p>
http://stackoverflow.com/questions/888224/what-is-your-longest-held-programming-assumption-that-turned-out-to-be-incorrect/890558#89055830Answer by Alex. S. for What is your longest-held programming assumption that turned out to be incorrect?Alex. S.2009-05-20T22:21:04Z2009-05-21T17:06:19Z<p>That XML would be a truly interoperable and human readable data format.</p>
http://stackoverflow.com/questions/627168/how-can-i-know-the-users-bandwidth-to-provide-the-best-possible-version-of-my-we1How can I know the user's bandwidth to provide the best possible version of my web application?Alex. S.2009-03-09T17:16:10Z2009-05-01T15:34:28Z
<p>We are developing a web application with a hetereogenous base of users. Additionally, we must provide a visually appealing experience. So, I would like to know if there is any way to get estimates of user bandwidth in such manner, that we can decide if we serve a given version, or another one.</p>
<p>Or should I aim for the lowest denominator at all?</p>
<p>No matter the technologies involved: I'm platform agnostic for this case (for example, a flash applet to estimate the capabilities of the user will be fine). I just want to hear your advice.</p>
http://stackoverflow.com/questions/795930/does-order-of-declaration-matter-in-models-py-django-python/795962#7959622Answer by Alex. S. for Does order of declaration matter in models.py (Django / Python)?Alex. S.2009-04-28T02:00:10Z2009-04-28T02:00:10Z<p>When you have references to classes defined after, you can use this trick:</p>
<pre><code>attribute = models.ForeignKey('ClassDefinedAfterThis')
</code></pre>
http://stackoverflow.com/questions/791364/how-to-access-to-fields-of-a-record-type-in-postgresql-without-knowing-their-name0How to access to fields of a record type in postgresql without knowing their names?Alex. S.2009-04-26T18:48:41Z2009-04-26T21:28:13Z
<p>I'm programming a PL/pgSQL function with this:</p>
<pre><code>cols_to_select := according to a set of rules, we get the name of the columns
FOR I IN EXECUTE 'SELECT '||cols_to_select||' FROM tabl' LOOP
-- how to access to fields of record I without knowing their names?
--
END LOOP;
</code></pre>
http://stackoverflow.com/questions/791364/how-to-access-to-fields-of-a-record-type-in-postgresql-without-knowing-their-name/791379#7913790Answer by Alex. S. for How to access to fields of a record type in postgresql without knowing their names?Alex. S.2009-04-26T18:54:12Z2009-04-26T19:24:29Z<p>This is one way I figured out:</p>
<pre><code>cols_to_select := according to a set of rules, we get the name of the columns
FOR I IN EXECUTE 'SELECT ARRAY['||cols_to_select||'] as AR FROM tabl' LOOP
-- how to access to fields of record I without knowing their names?
FOR j IN 1..array_upper(I.ar,1) LOOP
RAISE NOTICE '%', I.AR[j];
END LOOP;
END LOOP;
</code></pre>
<p>The problem with this solution is that fails when the columns have different types.</p>
http://stackoverflow.com/questions/760669/creating-a-social-networking-website-in-php/760720#7607201Answer by Alex. S. for Creating a Social Networking Website in PHPAlex. S.2009-04-17T14:53:40Z2009-04-17T14:53:40Z<p>Not in PHP, but if you need that with such short deadline you can get a social networking site ready for free with <a href="http://www.djangoproject.com" rel="nofollow">Django</a> and <a href="http://pinaxproject.com/" rel="nofollow">Pinax</a> (Python).</p>
http://stackoverflow.com/questions/727507/how-can-i-do-unicode-uppercase-in-python1How can I do unicode uppercase in pythonAlex. S.2009-04-07T20:41:46Z2009-04-07T23:09:10Z
<p>I have this:</p>
<pre><code>>>> print 'example'
example
>>> print 'exámple'
exámple
>>> print 'exámple'.upper()
EXáMPLE
</code></pre>
<p>What I need to do to print:</p>
<pre><code>EXÁMPLE
</code></pre>
<p><em>(where the 'a' gets its accute accent, but in uppercase)</em></p>
<p>In python 2.6.</p>
http://stackoverflow.com/questions/719915/how-to-put-comments-in-django-templates0how to put comments in django templatesAlex. S.2009-04-06T00:02:36Z2009-04-06T00:56:35Z
<p>I would like to comment this with a line </p>
<pre><code>{% if something.property %}
<table>
<tr>...
{% # this is a comment %}
{% if something.property %}
<table>
<tr>...
</code></pre>
http://stackoverflow.com/questions/283029/connected-vs-disconnected-architecture-in-asp-net/283083#283083Comment by Alex. S. on Connected vs Disconnected Architecture in asp.netAlex. S.2009-11-03T03:37:26Z2009-11-03T03:37:26ZThank you. Your answer indirectly had tell me why I was missing the point about disconnected in this tutorial <a href="http://aspalliance.com/1866_Building_Reports_using_ASPNET_and_Crystal_Reports__Part_3__An_Invoice_Report_Using_Disconnected_Data.all" rel="nofollow">aspalliance.com/1866_Building_Reports_using_ASPNE…</a>
http://stackoverflow.com/questions/1627855/tried-redmine-and-trac-but-none-of-them-allows-me-to-share-milestones-and-bugs-bComment by Alex. S. on Tried redmine and trac, but none of them allows me to share milestones and bugs between projectsAlex. S.2009-10-27T17:20:32Z2009-10-27T17:20:32ZIf you want that, you should consider thinking in subprojects.http://stackoverflow.com/questions/1426178/how-do-you-go-from-idea-to-implementation-when-designing-classes-for-other-develo/1467901#1467901Comment by Alex. S. on How do you go from idea to implementation when designing classes for other developers in other locations?Alex. S.2009-09-27T23:03:01Z2009-09-27T23:03:01Z@slf: Thank you! I didn't know about Microsoft SharedView, Adobe Connection, Drop.io, neither Google CodeReview. They seem great tools and they are free!http://stackoverflow.com/questions/282802/how-can-i-view-all-historical-changes-to-a-file-in-svn/283168#283168Comment by Alex. S. on How can I view all historical changes to a file in SVNAlex. S.2009-08-05T20:13:52Z2009-08-05T20:13:52ZThank you very much for this script. Its really useful!http://stackoverflow.com/questions/864688/where-can-i-find-a-syntax-highlighting-library-for-javaComment by Alex. S. on Where can I find a syntax highlighting library for Java?Alex. S.2009-05-14T18:00:27Z2009-05-14T18:00:27Z@Shog9 good rewrite!. The original was terrible...http://stackoverflow.com/questions/694966/impressed-or-angry-at-http-www-cnprog-com/695019#695019Comment by Alex. S. on Impressed or angry at http://www.cnprog.com?Alex. S.2009-04-17T14:59:52Z2009-04-17T14:59:52ZDoubtful. Chinese culture is very difficult to appeal.http://stackoverflow.com/questions/727507/how-can-i-do-unicode-uppercase-in-python/727517#727517Comment by Alex. S. on How can I do unicode uppercase in pythonAlex. S.2009-04-07T20:53:32Z2009-04-07T20:53:32ZI mean, how can I convert s in unicode w/o this error UnicodeDecodeError: 'ascii' codec can't decode byte 0xa0 in position 2 (I was using u''+s)http://stackoverflow.com/questions/727507/how-can-i-do-unicode-uppercase-in-python/727517#727517Comment by Alex. S. on How can I do unicode uppercase in pythonAlex. S.2009-04-07T20:52:06Z2009-04-07T20:52:06Zif I do s = 'exámñple', how can I print s correctly in uppercase?
http://stackoverflow.com/questions/38601/using-django-time-date-widgets-in-custom-form/719583#719583Comment by Alex. S. on Using Django time/date widgets in custom formAlex. S.2009-04-05T20:03:35Z2009-04-05T20:03:35ZI also found this link useful: <a href="http://groups.google.ca/group/django-users/msg/1a40cf5f153cd23e" rel="nofollow">groups.google.ca/group/django-users/…</a>http://stackoverflow.com/questions/662263/computer-science-master-program-in-franceComment by Alex. S. on Computer Science Master Program in France?Alex. S.2009-03-20T03:30:49Z2009-03-20T03:30:49ZI'm interested in computer science studies at France too. However I would like to know about Ph.D'shttp://stackoverflow.com/questions/659752/programming-challenge-can-you-code-a-hello-world-program-as-a-palindrome/659776#659776Comment by Alex. S. on Programming challenge: can you code a hello world program as a Palindrome?Alex. S.2009-03-18T22:33:19Z2009-03-18T22:33:19ZI do agree with ojrac (and I did see the answer in the first time). Nevertheless, Mr. Skeet answers usually are great.http://stackoverflow.com/questions/659752/programming-challenge-can-you-code-a-hello-world-program-as-a-palindrome/659896#659896Comment by Alex. S. on Programming challenge: can you code a hello world program as a Palindrome?Alex. S.2009-03-18T20:42:07Z2009-03-18T20:42:07Zha ha, pretty hard if you also provide the palindrome code of your palindrome compiler to compile itself to a palindrome binary...
http://stackoverflow.com/questions/646943/what-is-the-worst-abuse-of-xml-that-you-have-seen/647102#647102Comment by Alex. S. on What is the worst abuse of XML that you have seen?Alex. S.2009-03-15T05:46:42Z2009-03-15T05:46:42ZThis answer says the God's truth. http://stackoverflow.com/questions/627168/how-can-i-know-the-users-bandwidth-to-provide-the-best-possible-version-of-my-weComment by Alex. S. on How can I know the user's bandwidth to provide the best possible version of my web application?Alex. S.2009-03-09T17:24:11Z2009-03-09T17:24:11Zperhaps "download/upload speed" may be a better term.http://stackoverflow.com/questions/141110/what-is-the-single-software-company-that-you-most-want-to-work-for-why/141133#141133Comment by Alex. S. on What is the single software company that you most want to work for? Why?Alex. S.2009-03-03T21:53:19Z2009-03-03T21:53:19ZYep, Although is not easy nevertheless. Even if you are your own boss, your client also become your new boss...