|
Does any else have a problem where when using VS2005 or VS2008, it suddenly 'forgets' to color code and format the text for you? All of a sudden it acts like its a plain old notepad editor. Sometimes if I save and re-open the file, or else re-start Visual...
Started by E.J. Brennan on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
I use C# ....
Haven't found anything that helps besides restarting visual studio.
In my case it has alway been the backgroundcompiler service that has stopped working for one reason or another .
Sometimes something similar to this happens to me in VB.Net .
|
|
Sometimes coding issues come up and you really need to think about something different in order to refocus. What do you guys recommend? What works? Thanks.
Started by tenisist on
, 23 posts
by 23 people.
Answer Snippets (Read the full thread at stackoverflow):
Practice musical instruments....
Exercise.
Without pen and paper, or the code right in front of me, I don't get caught up in the details.
Everything else becomes a blur, and until I have clarity my .
forget, and I just keep going back to it.
|
|
As my question implies, I seem to have a problem getting my hands dirty when learning new programming methods and technology. My problem lies in knowing there may be faster, more efficient, less tedious, and overall "better" ways of doing a certain task...
Started by blindf1re on
, 10 posts
by 10 people.
Answer Snippets (Read the full thread at stackoverflow):
Designs into "better" ones, you start worrying less about the shortcomings of the current code because, "The Process" as it were, I think you just have to get over it do what you need to do to get the code is the priority of your code....
|
Ask your Facebook Friends
|
Can somebody please tell me how to fire-and-forget a process in Perl? I've already looked at ruby: how to fire and forget a subprocess? for doing the same in Ruby.
Started by Alex Marshall on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Zombies" process exits then you don't really want the parent process to "fire and forget" the child process.
; } waitpid($pid, 0);
See "Signals" in perlipc for other examples of code to do this.
|
|
Can Visual Studio 2008 be configured to give me a warning when I forget to dispose an object that implements IDisposable?
Started by Travis Collins on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
"The using statement allows.
To handle objects of type IDisposable is to place the code in a using block.
|
|
Working on three different computers at two different locations, on projects that are in subversion, I once in a while forget to check in stuff at one location, so that I cannot work on the latest code, when I want to continue working on the project at...
Started by Kjensen on
, 11 posts
by 11 people.
Answer Snippets (Read the full thread at stackoverflow):
Also make sure ....
For example, if you mix binary output files with source code, it makes it more difficult.
If the trunk is considered to contain always "golden code" so you don't want to commit half-baked when you setup your source tree.
|
|
I'm implementing various PHP & ASP.NET web apps for a client.
I'd like to install a very low overhead user tracking system. (It has to be on the intranet, this is an internal system only).
I'd like to do something like the following:
line 1 normal code...
Started by hamlin11 on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
}); //some more....
//some code $.get("http the request worked.
As will doing so without any js lirbaries.
Other libraries may vary.
Here's an example in jQuery (assuming you want to post to the URL) .
And code execution continues as normal.
|
|
I always forget to change the version number for bugfix version, when i released 1.0.9, maybe the version number in source code is still 1.0.0
So far it is not a big matter as every release was logged in SVN, i can retrieve a specified release anytime...
Started by Relax on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Plugins like the Code::Block's AutoVersioning plugin which automatically increment the build number.
|
|
Hi,
I have a long running process and I need it to launch another process (that will run for a good while too). I need to only start it, and then completely forget about it.
I managed to do what I needed by scooping some code from the Programming Ruby...
Started by kch on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
The current process with "something", so the child process will never execute any subsequent Ruby code the child's PID in it, but if I read your code right it's actually detaching the parent process.
|
|
I am using Eclipse 3.3.2 with the Flex Builder Plugin (3.0.194161) and the Flex SDK 3.2. Recently the intellisense has started forgetting about everything in the flash.* package EXCEPT flash.errors.*
The code still compiles, but attempting to automatically...
Started by Richard Szalay on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
I was able to work around the problem by adding the following SWC to my library path: FLEX_SDK\libs\player\10\playerglobal.swc
It looks like the problem is caused by {targetPlayerMajorVersion} no longer resolving, though I have no idea how that happened... .
|