536 reputation
310
bio website tomleo.com
location Boston, MA
age 24
visits member for 2 years, 7 months
seen 16 hours ago
stats profile views 72

My name is Tom and I am a Computer Science major at Wentworth Institute of Technology. Find out more at http://tomleo.com


May
16
comment What do I need to develop C#/XNA on Linux?
There is a great walkthrough at github.com/mono/MonoGame/wiki/… I would recommend.
Mar
28
answered Example of when to use render_to_response over render
Mar
5
awarded  Caucus
Feb
14
comment ImportError no module named accounts
Great to hear! It also scares me you are using Visual Studio for Django development :D
Feb
11
comment ImportError no module named accounts
have you tried playing around with the path of your installed app? For example it might be AdvancedLogin.accounts or something like that. What is the directory structure of your django project?
Feb
10
comment IndentationError message Django
Are you sure you are "python -m tabnanny -v manage.py" is doing what you think it should be doing? I think what that command is doing is checking for indentation problems in the file "manage.py" however the indentation error is likely somewhere else in the code. I would try doing something like "python -m tabnanny -v DjangoTutorial2" as the indentation is likely not from the stdlib
Feb
9
answered ImportError no module named accounts
Feb
9
comment IndentationError message Django
If the problem is in a django file they try deleting django and reinstalling it. If this does not solve the problem then it likely has nothing to do with importlib. Also what code editor are you using?
Feb
9
comment Add # -*- coding: utf-8 -*- will stop loading css and js file?
What do you have set for USE_I18N? docs.djangoproject.com/en/dev/topics/i18n/translation
Oct
3
awarded  Yearling
Sep
12
comment How do I make directory writable?
It is a bad practice to simply make directories readable, writable, and executable if they do not need to be. @samoz answer is a more appropriate action.
Aug
13
comment django-registration - new user to a specific group
@TiuTalk true it's outside your project but if you are using virtualenv then modifying installed packages for a single project shouldn't be too much of an issue. For me I changed the file in ENV/lib/python2.7/site-packages/registration which was local to my given django project.
Jun
8
awarded  Constituent
Jun
8
awarded  Caucus
Nov
30
comment How can I customize the output from pygments?
@S.Lott pygments gives you different ways to format text. The default way is to wrap the code around spans which signify different tokens in the programming language, to which you wish to add syntax highlighting. The style is then applied via CSS. However pygments can allow you to output the style as a separate CSS file or embedded. Your answer is extremely general and shows you have little understanding about the question or pygments.
Nov
18
comment How can you set class attributes from variable arguments (kwargs) in python
Yeah I realize @larsks answer is better. Learn something new everyday at SO!
Nov
18
answered How can you set class attributes from variable arguments (kwargs) in python
Nov
17
comment join list of lists in python
You come from a lisp background? I never would have guessed from the code... haha
Oct
28
answered Python formatting of strings with line breaks
Oct
13
comment How can I display unicode characters in a linux terminal using C++?
In gnome go to Edit->Profile preferences, then under the General tab make sure that the font you are using supports special characters. Monospace will probably not work, however a font like DejaVu Sans Mono or Droid Sans Mono will.