tghw
|
Registered User
|
For my day job, I work with C#, ASP.Net, and SQL Server. For fun I use Python, Django, and jQuery. I use Mercurial with custom extensions to keep track of it all.
|
|
Nov 18 |
comment |
Do you use distributed version control? The other way a DVCS avoids merge conflicts is that it has history of previous merges, so if a changeset was merged in already, the system does not try and merge it in again, whereas normal VCS systems like Subversion will include that changeset in the merge, increasing the chances of a conflict. |
|
Nov 18 |
comment |
Do you use distributed version control? A DVCS makes merges easier to manage because each individual check-in tends to be smaller, as you just end up doing them locally when they're done. That gives the system a finer grained view of how things changed, making it easier for it to automate the merge. With a regular VCS, you can't back up and redo the merge in the same way because the state of your code was never recorded anywhere. It's not in any check in. So while you can get the repo's status back, your changes are likely to be lost. In a DVCS, you can commit your changes first, so both sides of the merge have full history. |
|
Nov 4 |
awarded | ● Necromancer |
|
Nov 4 |
accepted | Django ModelForm: accessing a field’s value in the view template |
|
Nov 2 |
revised |
Ping FeedBurner in Django App updated for new ping url |
|
Nov 2 |
comment |
Django ModelForm: accessing a field’s value in the view template If the query had a model with it, you could use form.instance, but it sounds like since it's a query, there probably isn't one. Thinking about it now, it you really don't want to pass it in the view, you can always access form.cleaned_data.foo_bar in the template. That might be more what you're looking for. |
|
Oct 29 |
answered | Django ModelForm: accessing a field’s value in the view template |
|
Oct 29 |
revised |
Django ModelForm: accessing a field’s value in the view template Added django tag |
|
Oct 28 |
revised |
converting django ForeignKey to a usable directory name edited tags |
|
Oct 28 |
comment |
Where do you keep your code? Vista/Windows 7 use the C:\Users instead of C:\Documents and Settings. What more would you like me to specify, seems pretty straightforward, no? |
|
Oct 24 |
awarded | ● Nice Answer |
|
Oct 23 |
comment |
Dirty fields in django This is probably long overdue, but it should be if value != self.__dict__.get(key, missing): |
|
Oct 22 |
comment |
Practical non-image based CAPTCHA approaches? @mmr See, that's actually a benefit of the system, it keeps the smartasses from posting comments... |
|
Oct 13 |
accepted | How to validate/clean() a unique=True field without using a ModelForm? |
|
Oct 13 |
answered | How to validate/clean() a unique=True field without using a ModelForm? |
|
Oct 13 |
comment |
How to validate/clean() a unique=True field without using a ModelForm? Is there any reason you're making a custom form instead of a ModelForm? |
|
Oct 10 |
awarded | ● Good Answer |
|
Oct 7 |
comment |
A way to use method parameters in django templates? Guide to replacing the Django template system here: lethain.com/entry/2008/… |
|
Oct 7 |
comment |
A way to use method parameters in django templates? Well, the nice thing is that they don't tie you to it. I know a few people who use Jinja2 (jinja.pocoo.org/2/documentation) for their templates instead of the Django template system. Apparently it's pretty easy to switch out and use instead. |
|
Oct 7 |
answered | Django ModelForm Validate custom Autocomplete for M2M, instead of ugly Multi-Select |
|
Oct 7 |
accepted | A way to use method parameters in django templates? |
|
Oct 7 |
answered | A way to use method parameters in django templates? |
|
Sep 23 |
revised |
SimpleModal breaks ASP.Net Postbacks added 220 characters in body |
|
Sep 23 |
awarded | ● Nice Answer |
|
Sep 14 |
answered | What recognized computer language certificates exist? |
|
Sep 9 |
accepted | How do you set the username that Mercurial uses for commits? |
|
Sep 9 |
answered | How do you set the username that Mercurial uses for commits? |
|
Sep 8 |
comment |
HTTP Request Corruption Just for clarification, the closing <a> tag, <br>s and <p> tag come across in the requested url? |
|
Aug 31 |
comment |
Django : save a new value in a ManyToManyField Assuming he's using some sort of multi-select widget from the forms, the values coming back in form.cleaned_data['authors'] should be the user ids, so he wouldn't need another call to the database. In either case, his comments make it clear that form.cleaned_data['authors'] is empty, so he's appending the user from the request instead (authors = form.cleaned_data['authors'] or request.user), so it's kind of a moot point. |
|
Aug 31 |
comment |
Django : save a new value in a ManyToManyField I'm pretty sure af is correct here, post.authors will not be saved to the database unless post.save() is called (which will, in turn, call save_m2m()). |
|
Aug 25 |
comment |
include line numbers in stack trace without pdb? You don't have to ship the PDB file to have the PDB file. As long as you stash it away somewhere when you build, you can refer to it when you get the stack trace. See stackoverflow.com/questions/1328836/… |
|
Aug 22 |
awarded | ● Yearling |
|
Aug 20 |
comment |
How can I get my webapp’s base URL in ASP.NET MVC? Sorry, forgot the .Url part, fixed |
|
Aug 20 |
revised |
How can I get my webapp’s base URL in ASP.NET MVC? added 8 characters in body |
|
Aug 17 |
revised |
How can I get my webapp’s base URL in ASP.NET MVC? added 22 characters in body |
|
Aug 17 |
accepted | How can I get my webapp’s base URL in ASP.NET MVC? |
|
Aug 17 |
answered | How can I get my webapp’s base URL in ASP.NET MVC? |
|
Aug 6 |
revised |
Regex to search for a word in a string in Visual Studio added 74 characters in body |
|
Aug 6 |
revised |
Regex to search for a word in a string in Visual Studio edited body; added 237 characters in body |
|
Aug 6 |
answered | is it ever useful to define a class method with a reference to self not called ‘self’ in Python? |
|
Aug 6 |
answered | Regex to search for a word in a string in Visual Studio |
|
Aug 4 |
comment |
Automatically Compile Linq Queries Yeah, I was looking at the wrong object...ignore me... |
|
Aug 4 |
comment |
Automatically Compile Linq Queries This is almost exactly the same as I've started working up. The only problem I see is that calling q.ToString() would cause the query to be compiled anyways, since ToString() outputs the parametrized SQL. Am I missing something? |
|
Aug 4 |
awarded | ● Nice Question |
|
Aug 3 |
revised |
Automatically Compile Linq Queries added 637 characters in body; added 4 characters in body |
|
Aug 3 |
comment |
Automatically Compile Linq Queries This has nothing to do with SQL Server. LINQ to SQL compiles queries -- which can take quite a while -- from both of the LINQ syntaxes (chaining or SQL-style) to SQL each time those queries are run. Read the link at the top to learn more. |
|
Aug 3 |
asked | Automatically Compile Linq Queries |
|
Jul 22 |
answered | C# ASP.NET MVC: Dynamic Querystring for Search |
|
Jul 22 |
comment |
Automatically determine the natural language of a website page given its URL All I said was that it's better than TLD, which some people are suggesting, and I addressed the multiple languages issue. |
|
Jul 22 |
answered | Automatically determine the natural language of a website page given its URL |
