| bio | website | jason.heddings.com |
|---|---|---|
| location | Colorado | |
| age | 34 | |
| visits | member for | 3 years, 7 months |
| seen | 7 mins ago | |
| stats | profile views | 409 |
An all-around-geek who loves music, sports, coffee, and above all, Christ.
|
Jan 9 |
comment |
Java Ant build.xml issue Any explanation for the down vote? It would help to know why this solution is not as valid as the others mentioned. |
|
Dec 8 |
comment |
vimscript code to create a new numbered file Should all numbers at the end of the name be considered up for changing, or only the last digit? |
|
Dec 6 |
comment |
What are the 3 digits in a so name? Edited answer... For sqlite, I don't believe the '0' is needed although it is generated by default. Because the soname is actually sqlite3 indicating the major version '3'. I haven't studied sqlite specifically, howoever I have seen this behavior form other libraries. |
|
Dec 3 |
comment |
Disable Cell Highlighting in a datagridview This is a good solution... The only drawback is that you cannot get selected items outside of this handler. |
|
Nov 29 |
comment |
Execute a Perl program in a subdirectory? Does it work for your use case if you use the -I option, e.g. perl -I assembler ? |
|
Nov 27 |
comment |
Using assembly.GetTypes() is successfull on my development machine but not on the machine i want to deploy to How about using an assembly in your control? Can you enumerate types from those? |
|
Nov 27 |
comment |
Using assembly.GetTypes() is successfull on my development machine but not on the machine i want to deploy to Are you able to enumerate types from other Get*Assembly calls? i.e. GetExecutingAssembly() or the like. Just trying to narrow down what the problem might be. |
|
Nov 20 |
comment |
htaccess, do not show index controller in url The [L,QSA] flags are only applied if the RewriteRule is matched. I believe you want to keep them even if you add the RewriteCond's. |
|
Nov 20 |
comment |
htaccess, do not show index controller in urlmod_rewrite routes the incoming request to your actual file location. It can be used to map full filesystem paths or for doing advanced URL rewriting. For your example, all requests to /contact would be treated on the server as if they were called by /index/contact. I believe this is what you want. |
|
Nov 20 |
comment |
htaccess, do not show index controller in url I'm not sure what you mean by "isn't mod_rewrite synomycol to htaccess." Because mod_rewrite acts on the incoming request path, you will need to map those to your intended destination. I have updated my answer in case it gives you more ideas. |
|
Nov 20 |
comment |
.htaccess rewrite rule - can't fetch second parameter Would you mind posting your solution? I can update my answer if it is not correct (want to make sure the content here is useful). |
|
Nov 20 |
comment |
ajax webservices I am still getting an error on the URL: Class has two properties of the same name "closed_count" Full text of the exception pasted here: pastebin.com/qYAg5f7y (server is returning a 500) It appears from this message that there is a server configuration problem preventing your VProspectList from loading. |
|
Nov 20 |
comment |
ajax webservices When I visit the URL above, I get an exception indicating that you have multiple annotations for your RPC parameters. I might guess that you have stale class files in your classpath, causing the framework to pick both up and get confused. |
|
Nov 20 |
comment |
lIke and comment using asp.net using c# There are a few examples that jump out when searching Google for your question. Add a few permutations with "ajax" and you should be able to start sketching out your ideas. Give it a try and post where you get stuck. It's always better to be specific about the trouble you are having. If all else fails, study FB's behavior interactions by examining the HTTP requests - using Web Developer Tools in your browser. |
|
Nov 20 |
comment |
PHP Session Security Flaw? That sounds like a security flaw in your implementation of /dashboard.php?reset=true rather than PHP. A session, by definition, requires the client to present a token with each request (either by cookie or query string). That does not mean you have to look for it before taking action. Could you post that bit of code (doing the reset) and the rest of your security checks? The problem may lie there. |
|
Nov 10 |
comment |
Accessing an element in an array Interesting question (even if the syntax is bound to cause issues later). You should also consider selecting answers for some of your previous questions to keep encouraging community participation. |
|
Nov 10 |
comment |
URL string generation in .NET possible duplicate of C# Url Builder Class |
|
Nov 10 |
comment |
jQuery Ajax return html AND json data It's an interesting question... I've always tried to preserve the separation of data & display, even at the possible expense of multiple requests. It will be interesting to see what others come up with. |
|
Nov 10 |
comment |
C# Many URL requests, takes long time for processing It's not a surprise that it takes some time to do this... Creating web requests requires some extra handshaking and I suppose the total operation would be around 500ms - 1s each. You mentioned using multithreading... Can you post an example of what you have tried and the results? I'm sure the community could help if you get stuck with the implementation. |
|
Nov 8 |
comment |
Get property value from string using reflection in C# @FredJand glad you stumbled on it! It always surprising when these old posts turn up. It was a little vague so I added a bit of text to explain it. I have also switched to using these as extension methods and added a generics form, so I added it here. |