User Danmaxis - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T12:11:04Zhttp://stackoverflow.com/feeds/user/37650http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1040828/how-do-i-can-linux-flock-command-to-prevent-another-root-process-deleting-a-file1How do I can linux flock command to prevent another root process deleting a file?Danmaxis2009-06-24T20:35:24Z2009-06-24T20:42:31Z
<p>Hello there,
I would like to prevent one of my root process from deleting a certaing file. So I came across the flock command, it seems to fit my need, but I didnt get its sintax. </p>
<p>If I only indicate a shared lock, it doesnt work: <br/>
<code>flock -s "./file.xml"</code></p>
<p>If I add a timeout parameter, it still doesnt work <br/>
<code>flock -s -w5 "./file.xml" </code></p>
<p>It seems that way, it fits in <b><code>flock [-sxun][-w #] fd#</code></b> way.<br/>
(What is this fd# parameter?)<br/></p>
<p>So, I tried the <strong><code>flock [-sxon][-w #] file [-c] command </code></strong><br/>
Using <code>flock -s -w5 "./file.xml" -c "tail -3 ./file.xml"</code> and it worked, tail command at ./file.xml was executed. <br/>But I would like to know, does the lock end after the command or does it last 5 seconds after the end of the command execution? My main question is, how can I prevent another root process deleting a file in linux?</p>
http://stackoverflow.com/questions/417766/how-do-you-make-a-good-software-presentation-to-customers5How do you make a good software presentation to customers?Danmaxis2009-01-06T19:22:59Z2009-02-25T21:01:52Z
<p>how do you prepare a good software project presentation?</p>
<p>How much balancing between the scripted run over features and a naturalistic use of the software. Especially to avoid something like a blue-screen of death on live TV.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/473797/how-to-build-large-applications/473849#4738490Answer by Danmaxis for How to build large applicationsDanmaxis2009-01-23T17:49:25Z2009-01-23T17:49:25Z<p>Well, you could take a look at rational unified process. Check the essential parts, select some of the artifacts you think you'll need.
Make a list of all features you'll want and organize them in a requirements list.
Also Plan your software architeture carefully, so you dont have to change it later.
With some of those tips, it will be relative easier developing a large app.</p>
http://stackoverflow.com/questions/400772/how-integration-tests-are-performed-on-your-company-job-project2How integration tests are performed on your company/job/project?Danmaxis2008-12-30T16:36:50Z2008-12-30T19:14:20Z
<p>Hello,
I want to improve integration tests methods where I work and I would like to know how this process happens in other places.<br>
Things like:<br>
- When test plans writing begin<br>
- Proportion between testers, developers and stuff (entire applications or modifications) to be tested<br>
- What kind of methods are used for integration testing.<br>
<br></p>
<p>Actually, I test webapps and test plans are managed with Test Link. Bugs found are reported on Bugzilla. I am trying to automate tests with Selenium RC, but I takes some time to write the plans and write the code to execute on Selenium. And time is something that I dont have, because I am testing 3 or more aplications.</p>
<p>Most of my problems are caused by differences between test environment and production environment. But tests are taking too long to begin. If someone finishes a modification today, it will take about 3 weeks for me to begin tests. And the test process queue keeps growing.</p>
<p>It would be really good if anyone suggests something that would improve testing process (like more people testing,etc). But mostly, I would like to hear <b>how testing process works on other places</b>.<br>
Thanks.</p>
http://stackoverflow.com/questions/388850/checking-flash-file-loading-with-javascript1Checking flash file loading with javascriptDanmaxis2008-12-23T13:16:32Z2008-12-23T13:38:17Z
<p>Hello,
Is there a way to check how much a flash file is (down)loaded to the page before it is shown?
Our team cant put loading indicator inside the flash file because the swf file is uploaded by our client. Is there some kind of property on xmlhttprequest that we can use to indicate how much has been downloaded?
Or any other suggestion to indicate on-screen the loaded percentage?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/371762/what-exactly-is-guid-why-and-where-i-should-use-it14What exactly is GUID? Why and where I should use it?Danmaxis2008-12-16T16:07:48Z2008-12-19T23:59:25Z
<p>What exactly is GUID? Why and where I should use it? <br/>
I've seen references to GUID in a lot of places, and in wikipedia,
but it is not very clear telling you where to use it.
If someone could answer this, it would be nice.
Thanks</p>
http://stackoverflow.com/questions/377862/winapi-c-how-to-open-a-window-push-down-a-button/377922#3779220Answer by Danmaxis for WinApi C++, How to open a window push down a button?Danmaxis2008-12-18T13:59:45Z2008-12-18T13:59:45Z<p>You could instanciate a new window and show it on the click event</p>
http://stackoverflow.com/questions/330918/using-min-max-and-count-on-hql1Using Min, Max and Count on HQL Danmaxis2008-12-01T13:56:23Z2008-12-01T14:01:33Z
<p>Hello there.
Does hibernate HQL queries support using select min, max, count and other sql functions?</p>
<p>like </p>
<p>select min(p.age)
from person p</p>
<p>Thanks</p>
http://stackoverflow.com/questions/289979/test-automation-with-postgresql-connected-application0Test automation with postgresql connected applicationDanmaxis2008-11-14T12:50:45Z2008-11-14T13:35:11Z
<p>Hello there,
I want to automate tests on my web application, and it uses postgresql. Does anyone know how define a restore point on a postgresql database and restore to an earlier state?
I heard something about point in time recovery, but i dont if this is what i need.</p>
<p>Thanks in advance</p>
http://stackoverflow.com/questions/503157/eclipse-error-this-project-needs-to-migrate-wtp-metadata/1426207#1426207Comment by Danmaxis on Eclipse error: This project needs to migrate WTP metadataDanmaxis2009-10-12T20:02:15Z2009-10-12T20:02:15ZRight click on the project folder at Package Explorerhttp://stackoverflow.com/questions/1040828/how-do-i-can-linux-flock-command-to-prevent-another-root-process-deleting-a-file/1040869#1040869Comment by Danmaxis on How do I can linux flock command to prevent another root process deleting a file?Danmaxis2009-06-24T20:51:06Z2009-06-24T20:51:06ZOh, thanks man.
I'll try the folder lock.
Thankshttp://stackoverflow.com/questions/484268/visual-studio-2010-wpf-silverlight-and-built-in-gridComment by Danmaxis on Visual Studio 2010 - WPF / Silverlight and built-in GridDanmaxis2009-01-28T13:18:28Z2009-01-28T13:18:28ZWhen VS2010 will launch? http://stackoverflow.com/questions/422539/energy-efficient-application-developmentComment by Danmaxis on Energy efficient application developmentDanmaxis2009-01-08T20:56:29Z2009-01-08T20:56:29ZDo you want to develop energy-saver mobile applications or tips on saving notebook's batteries?http://stackoverflow.com/questions/422645/windows-programming-where-to-start/422659#422659Comment by Danmaxis on Windows programming: where to start?Danmaxis2009-01-08T13:10:15Z2009-01-08T13:10:15ZWell, it depends on what kind of app he wants to do.http://stackoverflow.com/questions/423823/whats-your-favorite-programmer-ignorance-pet-peeve/423869#423869Comment by Danmaxis on What's your favorite "programmer ignorance" pet peeve?Danmaxis2009-01-08T12:49:40Z2009-01-08T12:49:40ZI agreed. Definitely true.http://stackoverflow.com/questions/417766/how-do-you-make-a-good-software-presentation-to-customers/417792#417792Comment by Danmaxis on How do you make a good software presentation to customers?Danmaxis2009-01-07T13:23:15Z2009-01-07T13:23:15Zuntested stuff, that's my biggest problem!http://stackoverflow.com/questions/417599/svn-best-practices-working-in-a-team/417628#417628Comment by Danmaxis on SVN best-practices - working in a teamDanmaxis2009-01-06T19:09:48Z2009-01-06T19:09:48Znice observation!http://stackoverflow.com/questions/388850/checking-flash-file-loading-with-javascript/388882#388882Comment by Danmaxis on Checking flash file loading with javascriptDanmaxis2008-12-23T13:47:50Z2008-12-23T13:47:50Zthanks, ill try this wayhttp://stackoverflow.com/questions/289979/test-automation-with-postgresql-connected-application/290091#290091Comment by Danmaxis on Test automation with postgresql connected applicationDanmaxis2008-11-14T13:55:58Z2008-11-14T13:55:58ZThis is what I wanted, but maybe not what I need, because my app uses hibernate to connect to database.
Thanks.http://stackoverflow.com/questions/289979/test-automation-with-postgresql-connected-application/290044#290044Comment by Danmaxis on Test automation with postgresql connected applicationDanmaxis2008-11-14T13:36:16Z2008-11-14T13:36:16ZIf there is no way to set a restore point (like oracle) on postgresql, I'll toogle your answer.http://stackoverflow.com/questions/289979/test-automation-with-postgresql-connected-application/290044#290044Comment by Danmaxis on Test automation with postgresql connected applicationDanmaxis2008-11-14T13:33:50Z2008-11-14T13:33:50ZYeah, ill try that.
The DBA told me that restoring the same dump file is quite simple and fast.
Thanks.