S.Lott
|
Registered User
|
Software Architect, aspiring writer. Programmer for well over 30 years, about 70% of my working life.
Blog:
S.Lott-Software Architect.
Books: Building Skills in Python.
Technorati: SLott.
LinkedIn: Profile.
|
|
3h |
comment |
Creating portable Django apps - help needed. @stricjux: it's harder to do than reading (and modifying) source files. Not really. This "obfuscate Python" is a duplicate topic. stackoverflow.com/questions/261638/… |
|
12h |
comment |
Django - Populating a database for test purposes. I just had to add some details. |
|
12h |
revised |
Django - Populating a database for test purposes. added 251 characters in body |
|
12h |
comment |
“Better option” from the python library, any list? @Stefano Borini: "you have to be aware of the existence of something before you can search for it" That's the best excuse I've heard in a long time. I'm going to use that one until my skills become so obsolete I can no longer hold down a paying job in software. A truly brilliant excuse for not keeping up with news, PEP's, library changes, etc. |
|
14h |
comment |
What is the best way to call Java code from Python? Duplicate: stackoverflow.com/questions/438594/…, stackoverflow.com/questions/1201628/… |
|
14h |
comment |
SyntaxError inconsistency in Python? Suppressing compile-time errors???? What can that possibly mean? Can you provide some definition for the use case in which you want unparseable code to parse? What is supposed to happen? How bad can the code be and yet still be "parsed"? What are you talking about? |
|
14h |
comment |
Mac Based Python GUI Libraries When you did the search (upper left-hand corner of this page) what did you see? Type "[python] GUI Framework". Read the previous questions, then update your question with some detail which is different from all those other identical copies of your question. |
|
16h |
awarded | ● Epic |
|
16h |
awarded | ● Mortarboard |
|
17h |
comment |
What modules ought I to consider in Python if I wish to use CGI sessions? @MetaHyperBolic: Why do you keep harping on the LAMP "agenda" and the "Greater Glory of blah-blah". It's simpler. The fact that it doesn't work for you is a simple fact. Not politics. Fact. Please stop reading politics into something that's factual. It's simpler. You have good reasons for not using it. Leave it at the facts, please. |
|
1d |
awarded | ● Nice Answer |
|
1d |
comment |
Django: PYTHON_EGG_CACHE, access denied error +1: Set this env variable AND make that directory owned by the Apache user. |
|
1d |
comment |
Python web application Duplicate: Please search for "[Python] simple web app" before posting. There are a hundred or more answers to your question here: stackoverflow.com/search?q=%5BPython%5D+simple+we…. Example: stackoverflow.com/questions/1641616/… |
|
1d |
accepted | RESTful design - how to model entity’s attachments |
|
2d |
comment |
Objective reasons for using Python or Ruby for a new REST Web API +1: Good idea for an objective criteria. It makes the language decision moot, which is an excellent additional point. |
|
2d |
comment |
Objective reasons for using Python or Ruby for a new REST Web API @Srdjan Pejic: Please provide an example of an "objective" determination for selecting a programming language. Asking for "objective" is nice, but actually providing an actually objective measurement is a different thing. Perhaps you know of an actual objective measurement? If so, please suggest that measurement when noting that something isn't "objective". |
|
2d |
comment |
Why are file handles such an expensive resource? @hobbs: Really? Many OS's actually do have separate pools of pre-allocated memory for this kind of thing to eliminate the overhead of dynamic allocation. |
|
2d |
comment |
Why are file handles such an expensive resource? Unless, of course, your buffers aren't written properly because your leaked file handle wasn't closed properly. In that -- very common -- case, a single leaked handle can be a debugging nightmare. |
|
2d |
comment |
Good tutorials for Joomla? -1: Uselessly vague question title. Please change the title to reflect your actual question, not the topic of your question. |
|
2d |
comment |
Objective reasons for using Python or Ruby for a new REST Web API What does "objective" mean to you? Can you give specific things which you consider suitably "objective". Are you counting something? Weighing something? Measuring something? What? What units will this "objective" thing have? How many different measurements do we take? Can we average them? |
|
2d |
comment |
Why should functions always return the same type? @David X: The expression -- as a whole -- is ill-formed because one part is ill-formed. That's the most logical because it's the most consistent and easiest to reason with. If you're talking about using the list comprehension as some kind of "filter", then you'd have to actually write the actual filtering expression. Consistency is easier to work with and a list of mixed values and `None`s is potentially confusing. |
|
2d |
comment |
What are some recommended, high quality, non-basic python books? Fixed. Thanks for the alert. |
|
2d |
revised |
What are some recommended, high quality, non-basic python books? added 68 characters in body; added 4 characters in body |
|
Dec 4 |
comment |
What modules ought I to consider in Python if I wish to use CGI sessions? @MetaHyperBolic: I would suggest that Apache is simpler than IIS. The greater glory of blah-blah isn't the issue. The issue is simply simpler. Apache is simpler. It does less. Making it handle mod_wsgi very, very cleanly and simply. |
|
Dec 4 |
comment |
[Python] Strings are wrapped in b’…’ Which python? 3.x? Please specify the version. |
|
Dec 4 |
comment |
From a coder’s perspective, what kind of project should I choose python over php for where both could do the job? @Citizen: Since we have absolutely no idea what kind of projects you would consider, we can't possibly list anything that would make sense to you. Provide an example of a project (any project) that you define as a "project" and "not totally focused on the one thing PHP does better than every other language." |
|
Dec 3 |
comment |
Get webpage contents with Python? @Andrew: It helps to check the questions and answers carefully to see if they say Python 3 or not. If they don't say Python 3, they don't apply to you. |
|
Dec 3 |
comment |
Get webpage contents with Python? Duplicate: Search for urlib2 or get web page [python] in SO and you'll find 100's of similar questions. |
|
Dec 3 |
answered | how to transition from c# to python? |
|
Dec 3 |
comment |
Sending movie stream from client to server. The python server should play the stream on the fly. When you googled streaming video servers or streaming video protocols, what did you see? What specific questions do you have on the things that a Google search turned up for you? |
|
Dec 3 |
comment |
From a coder’s perspective, what kind of project should I choose python over php for where both could do the job? @Citizen: It sounds like "anything" provide a nearly infinite domain of examples. Since we don't know what you actually might do that's not website development, it's really hard to pick something from that nearly infinite set that would resonate with you. How about you update your question with specific examples from your worklife so we can comment on them rather than guessing. |
|
Dec 3 |
comment |
Why should functions always return the same type? Interestingly, many of the counter examples -- functions that actually return an unpredictable type -- are inherited from OS library routines that are forced to cater to the C API, which lacks exceptions. Making them bad examples of Pythonic things to do. The only relevant example, so far, is re.search which spontaneously returns an expected value -- a object which is not of class Match. And that's often frustrating because of all the extra if-statements required. |
|
Dec 3 |
awarded | ● Guru |
|
Dec 3 |
comment |
Why should functions always return the same type? @Scott Griffiths: the point is to reduce complexity, by reasoning about things we can know and understand. By limiting ourselves to functions that mirror mathematical formalisms, we have a fighting chance of creating software that really works. That's the "why". |
|
Dec 3 |
answered | How do I call a property setter from __init__ |
|
Dec 3 |
revised |
Why should functions always return the same type? added 211 characters in body; added 4 characters in body |
|
Dec 3 |
comment |
Why should functions always return the same type? The copy.copy() is still a function. The signature (domain and range) are fixed. For a given domain value, the range is predictable. Yes, there are a lot of combinations, but the combinations are trivially predictable. It's a function with a simple, predictable signature in a mathematical sense. It does not spontaneously return an unpredictable type. |
|
Dec 3 |
revised |
Why should functions always return the same type? added 271 characters in body |
|
Dec 3 |
accepted | Why should functions always return the same type? |
|
Dec 3 |
answered | Converting UTF-8(or other 8-bit encoding) to 7 or fewer bits. |
|
Dec 3 |
answered | python web app logging through pipe? (performance concerned) |
|
Dec 3 |
answered | Why should functions always return the same type? |
|
Dec 3 |
comment |
What is internal representation of string in Python 3.x What does this matter? What problem is solved by knowing internal representations? |
|
Dec 3 |
comment |
Definition of the word “patch” @hacker: Disagree. Everything resolves issues. If there's no issue, then the "information" doesn't mean anything. Here's an example: 42. That's the data. Since you don't have a specific question solved by 42, the data isn't really informative. Without a specific problem to solve, there's an indefinite amount of data that might be relevant or might be just "42". With a specific issue, then specific information can be provided that will specifically solve the specific problem. |
|
Dec 2 |
comment |
Need a zip of Python 2.6 for windows -1: Need zip, but can't install it? What does "need" mean if you can't actually use it? |
|
Dec 2 |
answered | Is Using eval In Python A Bad Practice? |
|
Dec 2 |
awarded | ● Good Answer |
|
Dec 2 |
accepted | Good way to pass variables for common elements to Mako templates? |
|
Dec 2 |
accepted | Getting data from the database with python(on Django framework) |
|
Dec 2 |
answered | Getting data from the database with python(on Django framework) |
