I don't know whether SVN has this feature, How do I tell svn to not maintain the history of changes for a file but it should have only the latest version of the file. Of course this is not the work of a version control, but it will be useful if I want to have some binary files within the repo without versioning.
How to add comments/description/information about the web service methods so that the person who will invoke it will know what the method is for , what are the useful params etc. so the invoker will be able to read these.
I have been given a wsdl file and i need to consume a web service using this wsdl file over the internet...i need to do this in jave ...could someone tell me the steps for doing this..i would also appreciate some useful links...
I'm in the process of learning C++. But there's so much more that I want to do online - web apps, iphone apps, websites.
So I'm thinking of learning another language, one that would allow me to make (or at least attempt to make) useful applications.
Now, what language should I look into learning? And, how do you recommend I go about learning it?
Hey,
I have a Java desktop application I wrote, and I would like a recommendation about a monitoring application that can spot bottlenecks in the code and real time memory consumptions.
As I was developing for J2Me, the WTK then, had a memory monitor, and I found it really useful, I would like to know which monitoring program you think is best to use.
Thanks,
Adam.
In Latex, I've created a new command 'changedtext' to mark specifics parts in my document and make it appear blue:
\newcommand{\changedtext}[1]{\textcolor{blue}{#1} }
Is there any easy way to alter the command to have change bars appear next to the text in the resulting PDF?
If not possible, any other suggestion for a visual markup (other than change bars) that would be clear on a black & white printout would be useful as well.
I know some services that encode the description of an image inside on an URL.
For example:
yuml.me for drawing UML Diagrams: or
www.codecogs.com for rendering LaTeX equations:
I really like these services to use them inside my javadoc to illustrate the documentation. On stackoverflow.com it's a bit tricky to encode these URLs, see my request at meta.stackoverflow.com.
Question
Are there any other rendering services that are useful for documenting source code?
In multi-user environment it's sometimes very useful to know the real author of each changeset in the SVN repository.
I see there's "Edit author" in Tortoise SVN. Does this mean that anyone can do whatever and then just change the author name on that changeset so that the change is attributed to another user?
Can a real changeset author be identified?
Hey,
I need to call "panel.invalidate" outside my form (WINform) class also I need to change some other controls as well, I read similar question here, and tried what they said, but it didn't work and I wasn't convinced at all.
The answer I read was about exposing a public method like this:
public void EnableButton(bool enable)
{
this.myButton.Enabled = enable;
}
Also I made a static instance in the other file
static Form1 myForm = new Form1();
Any useful suggestions??
What I must to learn to write php web-site grabber (parser)?
It must collect information from other websites, such as as weather forecast, wiki "on this day", some news and other useful and interesting "every day" information!
what i must to read for writing m3u player on php?
sorry for my bad english
Hi,
I have an XML file with syntax errors. eg.
<Viewport thisisbad Left="0" Top="0" Width="1280" Height="720" >
When i create an XML reader it does not throw any errors. I there a way to do syntax checking automatically, like XMLDocument does ?
I have tried setting various XmlReaderSettings flags but found nothing useful.
Hi I'm new to openId concepts. I want to use my google apps domain's user-name & password in third party websites for that i followed this link http://jeremiahlee.com/blog/2009/09/28/how-to-setup-openid-with-google-apps/. But i got struck on second step i dont know where and how to create openId file in server.Please Help on this issue it will be very useful for me.
Thanks,
Sharun.
Hoogle allows you to search many standard Haskell libraries by either function name, or by approximate type signature. I find it very useful. Is there anything like Hoogle for Scala? Search in ScalaDoc 2 only finds types and packages by name.
I am trying to get into the habit of writing a unit test before the actual class. What are some pointers the stack overflow community can give me along with any useful resources.
Thank You
One of the new features of Scala 2.8 are context bounds. What is a context bound and where is it useful?
Of course I searched first (and found for example this) but I couldn't find any really clear and detailed information.
Hi,
Do you have any experience with obtaining the City from a Canadian zip code?
Is there a free web service to obtain city name by passing a Canadian zip code or can a regular expression be useful?
Any ideas?
Thanks!
Hi folks, i am working on a categorization service. I want the experience to behave similarly to Facebook's invite/tagging function
Does anyone have any experience implementing this? This includes:
autocompleting based on list below
if auto-complete does not turn up anything, give chance to do something else with that data
Would be super happy to hear any experiences, plugins that might be useful in helping me build this out
PetraVM recently came out with a Beta release of their Jinx product. Has anyone checked it out yet? Any feedback?
By good, I mean:
1) easy to use
2) intuitive
3) useful
4) doesn't take a lot of code to integrate
... those kinds of things.
Thanks guys!
I'm having a little trouble understaing how I would use covariance and contravariance in the real world.
So far, the only example's I've seen have been the same old array example.
object[] objectArray = new string[] { "string 1", "string 2" };
It would be nice to see an example that would allow me to use it during my development if I could see it being used elsewhere.
Can anyone point me to some useful resources?
Coding is a very attention consuming exercise, how do you prepare yourself to begin a good coding session?
I use to be more calm and ready to think in a useful way after reading some insightful new posts from my rss reader.
As far as I know there is no web browser with built in validators for HTML, CSS and Javascript. Developing web pages without validation is like using a compiler that doesn't do syntax analysis. Even Firefox with its excellent plugins aimed at developers like Firebug lacks plugins for CSS and Javascript validation. Wouldn't it be useful to have these plugins? Am I missing something?
Which browsers have support for CSS :before { content: "x"; }? I could not find any information about this question. It seems that the CSS attribute content is quite unknown in the community although seemingly useful.
Hello all,
I have switched on the Codeigniter profile (very useful) and I have noticed that a page of mine shows the memory used as:
2,405,496 bytes
That's ~2MB and it's for one request - does it mean if 1000 users accessed this page at the same time, memory usage will be 2GB?
Have I got my maths wrong or is there more to this than just multiplying two numbers?
Thanks all for any help
I often find the following type of incremental definition useful:
(define (foo) (display "bar"))
(foo)
;prints bar
(define foo (let ((bar foo))
(lambda ()
(display "foo")
(bar))))
(foo)
;prints foobar
How do I preform this type of incremental definition with macros?
I could not get let-syntax to provide the same functionality.
Currently I use plt scheme, but would like to see answers in different lisp implementations as well.