|
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):
Process exits then you don't really want the parent process to "fire and forget" the child process.
|
|
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):
In the finalizer, I issue an Assert when the finalizer... .
I have created an abstract class 'Disposable' (which implements IDisposable, and implements the Disposable pattern) .
However, it can be done at runtime.
I don't think it can be done at compile time .
|
|
I'm making a program that opens a previous saved file through serialization and want to create a new one, however, data stays in.
How can I make the program forget the data?
Started by Martin on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Shouldn't creating a new instance of whichever class you are serializing give you such an 'empty data record'?
Using the example of a text editor you use, you would have, say, a Document class which completely encapsulates a text document and assume you... .
|
Ask your Facebook Friends
|
I want mercurial to remove several files from the current state of the repository. However, I want the files to exist in prior history.
How do forget and remove differ, and can they do what I want?
Started by Paul Nathan on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
' hg forget ' is just shorthand for ' hg remove -Af on disk (unless you uses -Af ) and ' forget....
The man page hg(1) says this about forget:
Mark the specified files so they will no longer be tracked, not from the entire project history.
|
|
There's this file that was being tracked at one time by git , but now the file is on the .gitignore list.
However, that file keeps showing up in git st after it's edited, so how would you force git to completely forget about it?
Started by Ivan on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Don't forget to back.
Executing git rm before each commit and so will get rid of the specified file .
|
|
We've been using Source Safe for years. Now we use Tortoise SVN. It's quite a problem to not forget to add new files to the repository - Source Safe had integration with Visual Studio but I don't see any for Tortoise SVN and so I often forget to add files...
Started by sharptooth on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at stackoverflow):
That if I do forget to add a source file, the server finds out before any of my colleagues get to roll.
|
|
I'm looking to upload some personal items ( family photos, movies ) to a secure remote location and then forget about them ( unless disaster strikes and my hard drives / DVDs are all broken ).
Please suggest a good provider for this.
I could self-host...
Started by Robert Munteanu on
, 11 posts
by 11 people.
Answer Snippets (Read the full thread at superuser):
Right?
Syncplicity is the one I use, which has a nice set and forget user.
Are willing to pay a little.
|
|
After having checked out once the repository to a folder, the svn command line client remembers the username and password (along with the repository url?). So, 2 questions arise:
is there a way to make it stop remembering the login info (and ask user/...
Started by DanC on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
To make it forget the current.
The SVN client should accept a --no-auth-cache option for this .
|
|
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):
And/or automated backup of your working.
Like VisualSVN to show which files are modified in the Solution Explorer, so that you don't forget working directories even if you do forget to check it in.
|
|
I often find myself forgetting the syntax of any programming language I learn. I first learned C then C++ then PHP and Java. If I'm asked to program in C now, I think I can't do it. Being a programmer how imprtant it is to remember the syntax of every...
Started by javac on
, 10 posts
by 10 people.
Answer Snippets (Read the full thread at stackoverflow):
Yes I forget some of the small details of syntax it's pretty common to forget some....
In my snippets that you can retrieve anywhere/anytime.
forget some syntax or a library function every once in a while than only know one language.
|