User Alcides - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T20:34:21Zhttp://stackoverflow.com/feeds/user/28516http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1091274/keeping-django-views-dry/1091590#10915901Answer by Alcides for Keeping Django Views DRYAlcides2009-07-07T10:38:26Z2009-07-07T10:50:52Z<p>What about request.user?</p>
<pre><code>if request.user.is_authenticated():
name = request.user.username
else:
name = "Anonymous"
</code></pre>
<p>Anyway, if it wasn't already available in django, I'd suggest you to write a Middleware class just like django.contrib.sessions.middleware.SessionMiddleware or django.contrib.auth.middleware.AuthenticationMiddleware. That class alters the request details before they are sent to a view.</p>
<p>If you needed it on a per-view basis, you could write a decorator to do that small bit, and @decorator the views you want.</p>
http://stackoverflow.com/questions/1083948/why-is-it-dangerous-to-use-an-email-address-as-an-openid/1084004#1084004-11Answer by Alcides for Why is it dangerous to use an email address as an OpenID?Alcides2009-07-05T12:47:39Z2009-07-07T10:43:31Z<p>It's not more insecure than using plain urls.</p>
<p>Imagine my email is name@domain.com. It's the same thing as using domain.com/name, right?</p>
<p>It's as guessable as your homepage (almost everyone I know uses their homepage or blog as their OpenID).</p>
<p>What may (although I don't really believe it) be more insecure is if the authentication happens via email. For instance you give your email address, and you receive a token in your email that you have to insert in order to continue (like a temporary password).</p>
<p>That may be insecure if you have an insecure email workflow (specially the email client, and OS. This security is a special concern for Microsoft). That's maybe why they think it's less secure. But if you think you can reset your password by email in most OpenID providers, isn't it the same thing?</p>
<p>Notice however that you can also have email authentication (or even Twitter or SMS-based authentication, I've used for a while) in OpenID even without using email addresses as OpenID, but URLs instead.</p>
http://stackoverflow.com/questions/91846/rails-or-django-or-something-else/941504#9415041Answer by Alcides for Rails or Django? (or something else?)Alcides2009-06-02T19:40:56Z2009-06-02T19:40:56Z<p>I've written a <a href="http://wiki.alcidesfonseca.com/rails-vs-django" rel="nofollow">blog entry about Rails vs Django</a> that replies to your question.</p>
<p>Since you will just need to display (or insert or something) data and have an admin interface, I'd go for Django since it gives you that out of the box. On everything else, I'd say it's a tie, but the post explains it in detail.</p>
http://stackoverflow.com/questions/930716/alternatives-to-javascript/931022#9310222Answer by Alcides for Alternatives to JavaScriptAlcides2009-05-31T01:25:49Z2009-05-31T01:25:49Z<p>As already said, you have Flash (ActionScript, which is a derived language from Javascript) and Silverlight/Moonlight (IronPython, IronRuby, JScript, VBScript, C#) that can run in the browser via plugins (the first one being much more ubiquitous).</p>
<p>There is also another alternative if you like Ruby: <a href="http://hotruby.yukoba.jp/" rel="nofollow">HotRuby</a>, it's a ruby implementation in javascript that will run in the browser. It is not very mature yet, but you can have a look at it.</p>
http://stackoverflow.com/questions/841669/advice-for-windows-system-scriptingprogramming/841707#8417074Answer by Alcides for Advice for Windows system scripting+programmingAlcides2009-05-08T20:44:40Z2009-05-08T20:44:40Z<p>You can do that in either IronPython|IronRuby or Powershell. I'd recommend IronPython since it's a real language (older than C# or even Java), with lots of support and full access to the .NET APIs you will need (or even COM APIs).</p>
<p>I'd suggest you to read this article that answers your exact question: <a href="http://pythonconquerstheuniverse.blogspot.com/2009/04/ironpython-windows-scripting-language.html" rel="nofollow">http://pythonconquerstheuniverse.blogspot.com/2009/04/ironpython-windows-scripting-language.html</a></p>
http://stackoverflow.com/questions/476762/setting-up-a-personal-java-workspace-what-do-i-need/476789#4767894Answer by Alcides for Setting up a personal (Java) workspace: What do I need?Alcides2009-01-24T22:32:56Z2009-01-24T22:32:56Z<p>Too generic question, but here it goes:</p>
<p>Netbeans or Eclipse IDE. If you do GUI development, I suggest Netbeans, otherwise go for eclipse.</p>
<p>Git or Mercurial as a VCS. If you're dealing with a large code base or if you dig the UNIX philosophy go for Git. If you don't want to handle cross-OS differences, go for Hg.</p>
<p>Any of these IDE gives you integration with the source control system, so you're just a google search away from it.</p>
<p>As for opensource, if you use Git, just push to github. If you use Hg, push it to bitbucket and you're done.</p>
<p>For issue tracking I suggest you hosted Redmine (RoR app) that integrates with CVS, SVN, Git, Mercurial and a few others.</p>
<p>If you choose Eclipse, you can integrate it with Mylyn.</p>
http://stackoverflow.com/questions/432457/do-you-use-jquery-extjs-or-other-javascript-libraries-with-actionscript-and-fle/432896#4328961Answer by Alcides for Do you use jQuery, extJS, or other javascript libraries with Actionscript and Flex?Alcides2009-01-11T13:06:02Z2009-01-11T13:06:02Z<p>I ported some stuff from prototype.js to AS:</p>
<p><a href="http://wiki.alcidesfonseca.com/hacks/prototypeas" rel="nofollow">http://wiki.alcidesfonseca.com/hacks/prototypeas</a></p>
http://stackoverflow.com/questions/411761/variable-number-of-inputs-with-django-forms-possible/411852#4118521Answer by Alcides for Variable number of inputs with Django forms possible?Alcides2009-01-04T22:57:03Z2009-01-04T22:57:03Z<p>If you run</p>
<pre><code>python manage.py shell
</code></pre>
<p>and type:</p>
<pre><code>from app.forms import PictureForm
p = PictureForm()
p.fields
type(p.fields)
</code></pre>
<p>you'll see that p.fields is a SortedDict. you just have to insert a new field. Something like</p>
<pre><code>p.fields.insert(len(p.fields)-2, 'fieldname', Field())
</code></pre>
<p>In this case it would insert before the last field, a new field. You should now adapt to your code.</p>
<p>Other alternative is to make a for/while loop in your template and do the form in HTML, but django forms rock for some reason, right?</p>
http://stackoverflow.com/questions/408588/django-apps-equivalent-in-asp-net-mvc/410901#4109013Answer by Alcides for Django apps equivalent in ASP.NET MVC?Alcides2009-01-04T12:18:52Z2009-01-04T12:18:52Z<p>Django doesn't follow the traditional MVC pattern, since they advocate that in the Web world, their MTV is more suitable. In the overall, I prefer Django over Rails because of the django apps. You can do almost the same in RoR with the Rails vendor plugins, but it's not the same.</p>
<p>ASP.NET follows RoR structure, and therefor you don't have the reusable apps. If you check the folder structure in a MVC project, you don't even find the RoR's Plugin folder, so I bet you should do it VisualStudio-Like.</p>
<p>Create a reusable app, as a separated project, include references for that project in your main one, and in your Route file, just redirect to the other project's controllers.</p>
http://stackoverflow.com/questions/408978/any-javascript-frameworks-with-the-aim-of-standard-based-cross-platform-js-and-do/409081#4090810Answer by Alcides for Any JavaScript Frameworks with the aim of standard based cross-platform JS and DOM?Alcides2009-01-03T14:14:56Z2009-01-03T14:24:13Z<p>Although it has its own API, Prototype tries to do that (at least partially). If you use Firebug, you can notice a lot of methods added to the DOM, in order to make the DOM equally in all browsers.</p>
<p>I know it's not exactly what you were looking for, but it's a half-way solution.</p>
<p>Also, in some browsers, it might not be possible to override some elements of the DOM. Try doing <code>window.alert = function(i) {};</code> and it will raise errors in some browsers.</p>
http://stackoverflow.com/questions/406155/in-place-editing-version-control-whats-your-solution/409071#4090713Answer by Alcides for In-place editing, version control - what's your solution?Alcides2009-01-03T14:06:54Z2009-01-03T14:06:54Z<p>As said before you are trying to use SVN for something that should be using a DVCS like git or Mercurial.</p>
<p>Everyone can have their own repository, and then sync it with the mais central repo (like the SVN repo).</p>
<p>This is actually what I use in my own projects.</p>
<p>The only thing I didn't get is why you need locks. A file doesn't have to be read-only. You are probably thinking that way because of the way SVN does merges (you almost always have to do it by hand). Git really does magic[1] and the majority of merges goes without human intervention.</p>
<p>[1] Ok, it's not magic. While SVN cares about files, Git cares about chunks of code. This way it can merge a file changed twice at the same time, as long as you don't change exactly the same chunk of code.</p>
http://stackoverflow.com/questions/58711/how-would-you-design-a-very-pythonic-ui-framework/334828#3348281Answer by Alcides for How would you design a very "Pythonic" UI framework?Alcides2008-12-02T17:48:06Z2008-12-02T17:48:06Z<p>I have this same problem. I wan to to create a wrapper around any GUI toolkit for Python that is easy to use, and inspired by Shoes, but needs to be a OOP approach (against ruby blocks).</p>
<p>More information in: <a href="http://wiki.alcidesfonseca.com/blog/python-universal-gui-revisited" rel="nofollow">http://wiki.alcidesfonseca.com/blog/python-universal-gui-revisited</a></p>
<p>Anyone's welcome to join the project.</p>
http://stackoverflow.com/questions/1083948/why-is-it-dangerous-to-use-an-email-address-as-an-openid/1084004#1084004Comment by Alcides on Why is it dangerous to use an email address as an OpenID?Alcides2009-07-07T10:49:31Z2009-07-07T10:49:31ZThis was not MS bashing. If you check my CV you will see I was a Microsoft Student Partner and I promote MS technologies.
Maybe the way I exposed the idea was wrong (and someone would have edited it). The email protocol is not secure for all means (that's why something called OpenGPG exists, but sadly not mainstream). I was focusing in the email client (and underlying OS) which security is a big concern for MS.
In my experience there were no big issues with non-MS email clients like Thunderbird or Apple Mail (mainly because they are not that popular).
So you know, I've edited the answer.
http://stackoverflow.com/questions/856016/running-visual-studio-in-parallels-for-mac-problem-with-debugging-sites-sitting/911507#911507Comment by Alcides on Running Visual Studio in Parallels for mac - problem with debugging sites sitting in os x driveAlcides2009-06-01T16:05:48Z2009-06-01T16:05:48ZDropbox would also do the trick.http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/406804#406804Comment by Alcides on What's your most controversial programming opinion?Alcides2009-01-04T22:00:45Z2009-01-04T22:00:45ZRegarding Singletons, that may be wrong in languages like C# or Java, but with less OOP strict languages like Javascript or Scala, using singletons is okay. In JS every object is a singleton! (and classed using prototypes, at least in JS 1.x) And Scala has a singleton type called object.