Tagged Questions
The resource-cleanup tag has no wiki summary.
18
votes
3answers
3k views
How can I get around the lack of a finally block in PHP?
PHP has no finally block - i.e., whereas in most sensible languages, you can do:
try {
//do something
} catch(Exception ex) {
//handle an error
} finally {
//clean up after yourself
}
PHP ...
5
votes
4answers
995 views
Python's Popen cleanup
I wanted to use a python equivalent to piping some shell commands in perl. Something like the python version of open(PIPE, "command |").
I go to the subprocess module and try this:
p = ...
4
votes
2answers
90 views
Class wrapper around file — proper way to close file handle when no longer referenced
I've got a class that wraps some file handling functionality I need. Another class creates an instance of the filehandler and uses it for an indeterminate amount of time. Eventually, the caller is ...
3
votes
2answers
128 views
How to clean up android project?
I used source code of an android app that we created in the past as a basis for another app (a lot of the functionality is similar, however about 1/3 of the functionality of the original app is ...
2
votes
3answers
73 views
What kind of cleanup occurs from the process after calling exit() in C?
If I call exit() implicitly:
int main(){
return 0; /*exit(0) is being called */
}
or explicitly:
int main(){
exit(0);
return 0; /* this is never reached */
}
The end-point is the same: ...
2
votes
2answers
159 views
If I set a variable using `CreateObject()`, do I need to clean it up by setting it to `Nothing` after use?
If I set a variable using CreateObject(), do I need to clean it up by setting it to Nothing after use?
Dim foo
Set foo = CreateObject("SomeAssembly")
foo Bar
Set foo = Nothing
I just found this ...
2
votes
1answer
63 views
Resource cleanup in Linux
How can I cleanup all the resources allocated by a process (process A) when it terminates? Process A may allocate resources in another process space when it uses services provided by the other ...
1
vote
4answers
46 views
How to clean the files on my website that I am not linking to anymore
I am working on a website with a lot of images and PDF files that are updated regularly, but the old files are not deleted after the new ones are uploaded. Therefor I have a lot of files that are just ...
1
vote
1answer
93 views
How to free up resources in the new MVVMLight V4
I would like to know which is the best way to clean up resources in the newly fashioned ViewModelLocator for MVVM-Light V4. As far as I know, until version 3, the method ViewModelLocator.Cleanup() ...
1
vote
2answers
94 views
SQL auto-cleanup with 0..1:1..n tables in MySQL
I'm writing an application that requires all users to access data on a central database using MySQL, and I was wondering something.
Let's say I have this setup.
CREATE TABLE A
(
id INT ...
1
vote
4answers
1k views
Intercepting application close in c#
I'd like to properly close some sockets, and be able to tell the server that we're closing, but if the application is closed then the sockets are all just closed and on occasion files are left locked. ...
0
votes
2answers
42 views
Clean up/Optimize Linux OS from unnecessary files
please guide me to how clean up my linux pc from unnecessary and old files.
After I remove some application such as Zend Server, some of their files are still in my file system.
I try to use ...
0
votes
2answers
51 views
DirectX Texture Clean-up in C++
I am currently working on a game in C++ using DirectX. The engine was given to us by a professor at my school, and I have been inspecting memory leaks in his engine and I believe I have traced them ...
0
votes
1answer
27 views
Cleaning nested dynamic MovieClip(Class) in a MovieClip
I'm trying to do a cleaning of some classes that is added into a MovieClip, but I can't seems to set the MovieClip(Class) to null. What is the proper way to do it?
private var mcHolder:MovieClip = ...
0
votes
0answers
23 views
Do I need to explicitly release xlib resources?
I am looking into the mesa example for the pbuffer (pbutil.c, pbutil.h and pbdemo.c).
In that example, I see that they just call glXDestroyPbuffer, without releasing other resources (visual and ...
0
votes
4answers
92 views
Save state in file on cleanup using __del__?
I have a class that looks like this:
class A:
def __init__(self, filename, sources):
# gather info from file
# info is updated during lifetime of the object
def close(self):
...
0
votes
1answer
28 views
suggestions for Rails back-end workflow for cleaning up attachments to abandoned drafts?
I'm working on a Rails application. Two of my models are notes and attachments. The user can create notes and add attachments to them. This is standard stuff and I already have this working fine.
...