User Din - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T19:32:23Zhttp://stackoverflow.com/feeds/user/41214http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/347142/project-files-in-repository/347183#3471830Answer by Din for Project files in repositoryDin2008-12-07T03:27:49Z2008-12-29T03:01:49Z<p>You need keep history of compiled binaries as separate archive. If you do update on a server and it does not work you need to rollback. Much better if you do it from archived binary copy. I think it is good idea to have some routine for binary version control. But they are not supposed to be stored under SVN or alike. SCC systems are most useful then they are used not for backup purposes but for rollback and to keep track of change sets inside of stored documents. Which does not make sense for binaries.</p>
http://stackoverflow.com/questions/348394/what-to-do-with-a-finished-prototype-of-a-very-good-idea/348435#3484350Answer by Din for What to do with a finished prototype of a very good idea?Din2008-12-08T00:53:27Z2008-12-08T00:53:27Z<p>Take it to Le Web! :)</p>
<p><a href="http://www.techcrunch.com/2008/11/10/startups-selected-for-le-web-in-paris/" rel="nofollow">http://www.techcrunch.com/2008/11/10/startups-selected-for-le-web-in-paris/</a></p>
http://stackoverflow.com/questions/347160/should-i-delete-or-disable-a-row-in-a-relational-database/347190#3471904Answer by Din for Should I delete or disable a row in a relational database?Din2008-12-07T03:36:40Z2008-12-07T03:36:40Z<p>You need to have it in functional requirements. If it is not said there explicitly you will have to figure out it yourself.</p>
<p>In most cases it is better to store such records in separate table. You then avoid various situations where one table refers another table and you need to decide should records in second table be treated as deleted as well or not.</p>
http://stackoverflow.com/questions/345656/c-windows-services-how-do-i-handle-logging-exceptions/345716#3457160Answer by Din for c# windows-services - How do I handle logging exceptions?Din2008-12-06T01:36:45Z2008-12-06T01:36:45Z<p>Create separate ping service on a well behaving machine which you trust to be very reliable. If your primary service fails then ping also fails and control service then should send you e-mail with warning.</p>
http://stackoverflow.com/questions/345629/what-to-do-when-your-company-thinks-in-hours-rather-than-months/345685#3456850Answer by Din for What to do when your company thinks in hours rather than months?Din2008-12-06T01:19:28Z2008-12-06T01:19:28Z<p>There is nothing you can do. Was exactly in same situation. You can not change your customers and company will not change before customers will demand it.</p>
<p>Well in fact may be you cannot do it quickly.</p>
<p>First of all try to be the best among your peers.
Do not offend anybody and not not insist that they are jerks. Just do your best.
Never complain o interviews about your current employer. It hurts feelings bitter sentiments that is all.
Be professional. After all it is what professionals are paid for.</p>
<p>Btw maintenance is not bad. It is difficult and normally require slightly better qualification then other programming tasks. That different.</p>
http://stackoverflow.com/questions/341378/best-environment-for-large-web-application/341684#3416841Answer by Din for Best Environment For Large Web ApplicationDin2008-12-04T18:58:32Z2008-12-04T19:44:29Z<p>I personally would not take responsibility to offer own solution to a team without asking for advice from somewhere else first. Same way as chaKa does. What I would not do is to rely on one source of help making final decision.</p>
<p>You may need to consider following criteria:</p>
<ol>
<li>How much time do you have? What is development plan? Should you start right away or you will be given time to learn.</li>
<li>Do you need framework? Are you expected to deliver quickly? How many requirements do you have? It all affects will it be framework based solution or from scratch.</li>
<li>Will you support project as well? How many people will do it? You need to know also will project grow slowly or it should be deployed quickly and forgotten.</li>
<li>What skills does your team have? What are they good at?</li>
<li>What would make you excited and want to do your best implementing solution?</li>
</ol>
<p>I believe there is more to think about...</p>
http://stackoverflow.com/questions/341592/what-to-do-when-we-may-need-to-save-slave-data-first/341656#3416560Answer by Din for what to do when we may need to save slave data firstDin2008-12-04T18:44:44Z2008-12-04T19:34:50Z<p>In case of upload you will have to create temporary storage for not committed upload. So that once upload started you save all new files in a separate table. Once user ready to submit ticket you save ticket and append files from temp table.</p>
<p>Also you can create fake record if it possible with some fixed id in master table. You then have to make sure that fake record does not appear in queries in other places.</p>
<p>Third, you can create stored procedure which would generate id for primary table and increment identity counter. If user aborts operation reserved id will not affect anything. It is just like if you create master record and then delete it. You can create temporary records in master table as well.</p>
http://stackoverflow.com/questions/341696/explaining-svn-to-non-programmers/341722#3417220Answer by Din for Explaining SVN to non-programmersDin2008-12-04T19:15:07Z2008-12-04T19:15:07Z<p>Tell support personnel that SVN is a source code server and changes they make are client side change. What they do is change client copy of source code. It should be posted to SVN to be stored there. Same way as it is in any other client/serer applications.</p>
http://stackoverflow.com/questions/323556/is-it-safe-to-remove-and-reassign-events-this-way-if-not-why/341564#3415640Answer by Din for Is it safe to remove and reassign events this way? If not, why?Din2008-12-04T18:06:40Z2008-12-04T18:06:40Z<p>If it is multithreaded you need to make operation atomic. Disabling several event handlers opens possibility that they are running at the moment then they are being disabled. Or Event2 starts when Event1 is being set to nil. All kinds of malfunctions may happen if these events called often. Possible solution to use semaphores instead. But then you may need to add extra code to event handlers as well.</p>
<p>Any way setting event handler temporarily to nil looks like a bad design. It will be incomprehensible very soon and hard to make do what it have to do any way. So you’d better spend some time and develop something more sophisticated.</p>
http://stackoverflow.com/questions/339146/why-are-cellspacing-and-cellpadding-not-css-styles/339176#3391760Answer by Din for Why are cellspacing and cellpadding not CSS stylesDin2008-12-03T23:49:46Z2008-12-03T23:49:46Z<p>I guess somebody considered cell spacing a “bad practice”. How I understand it is equivalent included in CSS2 standard but IE does not support this property. border-collapse allows to set spacing to 0 value. Cell padding may be achieved setting padding property to TD elements of a table.</p>
http://stackoverflow.com/questions/338535/is-sql-server-windows-integrated-security-good-for-anything/338647#3386471Answer by Din for Is SQL Server/Windows integrated security good for anything?Din2008-12-03T20:56:03Z2008-12-03T20:56:03Z<p>Database may have a fine grained access with lots of settings different for each user. It is not only scenario where you have one user for application access and that is all data security.</p>
<p>If we are talking about team development then probably there will be user group granted development access to database. Each user in this group will be member of your internal domain and have own passwords which database admin not supposed to manage and even know to allow access to database.</p>
http://stackoverflow.com/questions/325862/what-are-the-most-common-security-mistakes-programmers-make/338619#3386192Answer by Din for What are the most common security mistakes programmers make?Din2008-12-03T20:42:03Z2008-12-03T20:42:03Z<p>Biggest mistake is to throw security issues out of scope of system development and put it on shoulders of everybody else. Common practice is to state that security is a responsibility of system administrators. Quite common also is blaming clients for low attention to security and vogue requirements regarding this. While there is a point of course it is IT department responsibility to elevate this topic and draw attention to the question.</p>
http://stackoverflow.com/questions/323603/on-k-i-s-s-and-paving-cowpaths/338591#3385910Answer by Din for On K.I.S.S and paving cowpathsDin2008-12-03T20:33:16Z2008-12-03T20:33:16Z<p>You still need to maintain database. One possible approach I can suggest is to map field names in application code as you plan it to do. But then sooner or later you have to start handling this naming madness with field names and fix it. It is not good idea just to screen from a problem and imagine that it is a safe solution and good way to go. It is only temporary workaround. Do not full your self about it.</p>
http://stackoverflow.com/questions/338469/is-version-control-about-deployment-history-or-development-history/338557#3385571Answer by Din for Is version control about deployment history or development history?Din2008-12-03T20:20:19Z2008-12-03T20:20:19Z<p>Version control is about safety and concurrent modification of stored information. Even with version control software you still need to define what is version and what deployment unit is. Without it version control offers only basic rollback mechanism and lots of options of low interest and subtle meaning.</p>
http://stackoverflow.com/questions/335898/how-reliable-is-sql-server-replication2How reliable is SQL server replication?Din2008-12-03T00:22:57Z2008-12-03T09:02:22Z
<p>We have a database on SQL Server 2000 which should be truncated from time to time. It looks like the easiest solution would be to create a duplicate database and copy the primary database there. Then the primary database may be safely truncated by specially tailored stored procedures.</p>
<p>One way replication would guarantee that the backup database contains all updates from the primary one.</p>
<p>We plan to use backup database for reporting and primary for operative data.
Primary database will be truncated at night once in 2 days.
Database is several gigabytes. Only several tables are quite large (1-2 mln rows)</p>
<p>What are possible pitfalls? How reliable would such a solution be? Will it slow down the primary database?</p>
<p><strong>Update:</strong> Variant with DTS for doing copying sounds good but has own disadvantages. It requires quite robust script which would run for about an hour to copy updated rows. There is also issue with integrity constraints in primary database which would make truncating it non-trivial task. Because of this replication cold straighten things up considerably.</p>
<p>It is also possible but not quite good variant to use union VIEW because system which woks mostly in unattended mode whiteout dedicated support personnel. It is related issue but not technical though.</p>
http://stackoverflow.com/questions/335855/creating-a-gui-application-that-wraps-command-line-programs-on-linux-and-windows/335878#335878-2Answer by Din for Creating a GUI application that wraps command-line programs on Linux and WindowsDin2008-12-03T00:09:12Z2008-12-03T00:09:12Z<p>You can use WShell and redirect stdin stdout.</p>
<pre><code>object console = WShell.Exec(cmdLine);
if (console.StdOut.AtEndOfStream)
s = Pipe.StdOut.ReadLine();
</code></pre>
<p>Downside that you still have to figure out how to hode console window. But it is easy one. You need to find this window by window title and set its properties to ivisible. Or use freeware some utility from internet which can do it automatically for you.</p>
http://stackoverflow.com/questions/335802/when-you-start-thinking-about-a-programming-project-what-do-you-do-first/335856#3358562Answer by Din for When you start thinking about a programming project what do you do first?Din2008-12-02T23:52:40Z2008-12-02T23:52:40Z<ol>
<li>Collect requrements</li>
<li>Define priorities</li>
<li>Estimate effort</li>
<li>Start work</li>
<li>Track and evaluate progress</li>
</ol>
http://stackoverflow.com/questions/332050/how-new-programming-frameworks-help-analysts-designers-and-programmers-better-wo0How new programming frameworks help analysts, designers and programmers better work together?Din2008-12-01T20:19:17Z2008-12-02T18:47:48Z
<p>It may be Water fall, iterative or agile development or anything else. No matter what development lifecycle mode we talk about there always several perspectives for same problem. From business to problem oriented and further to programming, testing, etc.</p>
<p>So question is how are modern companies use modern advanced methodologies to translate requirements to source code?</p>
<p>How new programming frameworks help analysts, designers and programmers better work together?</p>
<p>New means those which most actively used nowadays. Python or PHP are not quit new but they have actively developing crowd of funs and specialists. Workflow foundation, AJAX, F# etc quite new and give extra productivity developers. But how they impact productivity of a team?</p>
http://stackoverflow.com/questions/333004/best-cure-for-sore-eyes-during-prolonged-programming/333022#3330223Answer by Din for Best cure for sore eyes during prolonged programming?Din2008-12-02T04:05:09Z2008-12-02T04:05:09Z<p>You should eat well. Especially lots of fruits containing antioxidants. Blackberry also good for eyes.</p>
http://stackoverflow.com/questions/332825/are-flat-file-databases-any-good/333016#3330160Answer by Din for Are flat file databases any good?Din2008-12-02T04:02:55Z2008-12-02T04:02:55Z<p>You can use fiat file databases if it is small enough does not have lost of random access. Big file with lot of random access will be very slow. And no complex queries. No joins, no sum, group by etc. You also can not expect to fetch hierarchical data from flat file. XML format is much better for complex structures.</p>
http://stackoverflow.com/questions/332948/why-is-charinset-faster-than-case-statement/332982#3329821Answer by Din for Why is CharInSet faster than Case statement?Din2008-12-02T03:46:43Z2008-12-02T03:46:43Z<p>As I know call takes same amount of processor operations as jump does if they are both using short pointers. With long pointers may be different. Call in assembler does not use stack by default. If there is enough free registers used register. So stack operations take zero time too. It is just registers which is very fast.</p>
<p>In contrast case variant as I see uses add and sub operations which are quite slow and probably add most of extratime.</p>
http://stackoverflow.com/questions/332794/pitfalls-of-accessing-a-webserver-on-127-0-0-1-from-js-with-a-public-site/332949#3329490Answer by Din for Pitfalls of accessing a webserver on 127.0.0.1 from js with a public siteDin2008-12-02T03:29:00Z2008-12-02T03:29:00Z<p>I think it is much better for you to avoid implementation of application logic in JavaScript and html. Once user clicks button on a web page JavaScript should send request to your service and allow it do the rest of the work.</p>
http://stackoverflow.com/questions/331524/how-can-algorithm-design-and-programming-productivity-be-enhanced-increased/331595#3315950Answer by Din for How can algorithm design and programming productivity be enhanced, increased?Din2008-12-01T17:38:10Z2008-12-01T17:38:10Z<p>I guess it is a good question but obviously not well defined by the author. I think it all starts from well… thinking. In order to do something well one should take time, plan it well and be conscious about seemingly unimportant details. I would say that topic is way to general. It would be nice to narrow it a bit. There are millions possibilities how things go wrong and how to fix it. Whole books are written about this.</p>
http://stackoverflow.com/questions/331277/how-do-i-use-the-post-redirect-get-a-k-a-redirect-after-post-with-asp-net/331559#3315590Answer by Din for How do I use the "Post/Redirect/Get" a.k.a. "Redirect after Post" with asp.netDin2008-12-01T17:27:56Z2008-12-01T17:29:43Z<p>Use Server.Transfer method.</p>
<p>The Server.Transfer method has a second parameter—"preserveForm". If you set this to True, using a statement such as Server.Transfer("WebForm2.aspx", True), the existing query string and any form variables will still be available to the page you are transferring to.</p>
<p><a href="http://www.developer.com/net/asp/article.php/3299641" rel="nofollow">http://www.developer.com/net/asp/article.php/3299641</a></p>
http://stackoverflow.com/questions/328187/dont-you-think-that-99-of-problems-you-are-trying-to-solve-every-day-are-alread/328308#3283080Answer by Din for Don't you think that 99% of problems you are trying to solve every day are already solved many times?Din2008-11-30T01:26:36Z2008-11-30T01:51:53Z<p>What about aliens? They solved much more problems than human did! Let’s wait until they come and drink beer meanwhile!</p>
<p>The fact that somebody solved a problem before does not make the solution automatically available to everybody.</p>
<p>First, you should be able to formulate the problem. Some problems are hard to solve just because nobody around understands it well. If you do not understand your problem you will never be able to find the answer even if it is freely available in internet and only a couple of clicks away.</p>
<p>Second, not all the solutions are open source. So you sometimes need to reinvent the wheel.</p>
<p>And finally, it is simply not obvious that if somebody already did it you can use it. You need skills and experience to use and understand some complex things. After all, why should we learn in high school things others have discovered if we can discover own things!</p>
http://stackoverflow.com/questions/328059/create-a-list-that-contain-each-line-of-a-file/328066#328066-1Answer by Din for Create a List that contain each Line of a FileDin2008-11-29T22:01:33Z2008-11-29T22:16:09Z<p>I am not sure about Python but most languages have push/append function for arrays.</p>
http://stackoverflow.com/questions/328044/data-structure-question/328060#3280600Answer by Din for Data structure questionDin2008-11-29T21:56:32Z2008-11-29T21:56:32Z<p>Create integer array for non-zero values and bit array holding indicators if particular row contains non-zero value.</p>
<p>You can find then necessary element in first array summing up bits in second array starting from 0 up to row index position.</p>
http://stackoverflow.com/questions/327895/upgrade-a-windows-service-without-uninstalling/327941#3279410Answer by Din for Upgrade a Windows Service without Uninstalling Din2008-11-29T19:59:22Z2008-11-29T20:20:35Z<p>You can make separate DLL which service would load and call every time it does its work. Make sure that service unloads DLL after use.</p>
<p>Use should load it into separate Application Domain.</p>
<p><a href="http://msdn.microsoft.com/en-us/library/c5b8a8f9.aspx" rel="nofollow">SO <a href="http://msdn.microsoft.com/en-us/library/c5b8a8f9.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/c5b8a8f9.aspx</a></a></p>
http://stackoverflow.com/questions/327904/using-double-return-string/327931#3279310Answer by Din for Using double, return stringDin2008-11-29T19:55:33Z2008-11-29T19:55:33Z<pre><code>var list = [
[95.0, "A+"],
[90.0, "A"],
[85.0, "B+"],
[80.0, "B"],
[75.0, "C+"],
[70.0, "C"],
[65.0, "D+"],
[60.0, "D"]
];
for (var i in list)
if (score >= list[0])
return list[1];
return "F";
</code></pre>
http://stackoverflow.com/questions/327787/is-it-unreasonable-to-assign-a-mysql-database-to-each-user-on-my-site/327802#3278021Answer by Din for Is it unreasonable to assign a mySQL database to each user on my site?Din2008-11-29T18:16:55Z2008-11-29T18:16:55Z<p>What is the difference between many tables in one database or many databases with same tables? Is it for better security or for different types of backups?</p>
<p>I m not sure about mySQL but in MSSQL it is like this:</p>
<ul>
<li><p>If you need to backup databases in different way you need to consider keeping tables in different data files. By default they all are in PRIMARY file. You can specify different storage.</p></li>
<li><p>All transactions are hold in tempdb. This is not very good because if it transaction log becomes full then all databases stop functioning. Then you can end up with separate SQL servers for each user. Which is sort of nonsense if you are talking about thousands of clients.</p></li>
</ul>
http://stackoverflow.com/questions/348394/what-to-do-with-a-finished-prototype-of-a-very-good-idea/348435#348435Comment by Din on What to do with a finished prototype of a very good idea?Din2008-12-08T22:46:44Z2008-12-08T22:46:44ZIt will be bext year too. Btw. check this also: <a href="http://www.openzine.com/aspx/Zine.aspx?IssueID=752" rel="nofollow">openzine.com/aspx/Zine.aspx?IssueID=752/…</a>http://stackoverflow.com/questions/338535/is-sql-server-windows-integrated-security-good-for-anythingComment by Din on Is SQL Server/Windows integrated security good for anything?Din2008-12-04T19:08:11Z2008-12-04T19:08:11ZYou cannot avoid systems coupling. If you develop server solution it supposed to be deployed and server normally supposed to be configured to handle it. There is nothing abnormal.http://stackoverflow.com/questions/341378/best-environment-for-large-web-applicationComment by Din on Best Environment For Large Web ApplicationDin2008-12-04T17:58:16Z2008-12-04T17:58:16ZThere is nothing wrong in asking this. But luck of experience means also lack of experience of a team who will implement solution as well I guess… With more deails easier to figure out what do you know already. Then we will know who needs help. IS it management or developers.http://stackoverflow.com/questions/341378/best-environment-for-large-web-applicationComment by Din on Best Environment For Large Web ApplicationDin2008-12-04T17:27:11Z2008-12-04T17:27:11ZCan you clarify what makes you think there may be better solutions? How did you come to JEE/JBoss/PGSQL variant?http://stackoverflow.com/questions/335802/when-you-start-thinking-about-a-programming-project-what-do-you-do-first/335813#335813Comment by Din on When you start thinking about a programming project what do you do first?Din2008-12-03T20:59:45Z2008-12-03T20:59:45ZIt is certainly questionable method but I do the same. It would be interesting to figure out why. =)))http://stackoverflow.com/questions/335898/how-reliable-is-sql-server-replication/335991#335991Comment by Din on How reliable is SQL server replication?Din2008-12-03T09:05:12Z2008-12-03T09:05:12ZUnfortunately without replication things getting complicated also. But good side is that they are complex up-front what means that one copy script done there are much less troubles later.http://stackoverflow.com/questions/335898/how-reliable-is-sql-server-replication/335929#335929Comment by Din on How reliable is SQL server replication?Din2008-12-03T00:50:54Z2008-12-03T00:50:54ZWe need all old data avilable for reporting. So backup/restore would not help.http://stackoverflow.com/questions/332050/how-new-programming-frameworks-help-analysts-designers-and-programmers-better-wo/332107#332107Comment by Din on How new programming frameworks help analysts, designers and programmers better work together?Din2008-12-01T20:37:53Z2008-12-01T20:37:53ZDoes it mean that ex AJAX or Python offer new dictionaries which designer can use to deign software better?http://stackoverflow.com/questions/332050/how-new-programming-frameworks-help-analysts-designers-and-programmers-better-wo/332096#332096Comment by Din on How new programming frameworks help analysts, designers and programmers better work together?Din2008-12-01T20:32:35Z2008-12-01T20:32:35ZThanks! I am Russian btw.http://stackoverflow.com/questions/332050/how-new-programming-frameworks-help-analysts-designers-and-programmers-better-wo/332076#332076Comment by Din on How new programming frameworks help analysts, designers and programmers better work together?Din2008-12-01T20:30:20Z2008-12-01T20:30:20ZI think it supposed to be the reason for new technologies. The supposed to support productivity. I am curious, how are they doing it. It is my own question.http://stackoverflow.com/questions/325514/code-reusability-is-it-worth-it/327355#327355Comment by Din on Code Reusability: Is it worth it?Din2008-11-29T22:14:02Z2008-11-29T22:14:02ZReuse makes big projects much more maintainable but adds additional complexity to simple fragments of code.http://stackoverflow.com/questions/322666/why-does-it-seem-that-most-programmers-tend-to-write-all-their-code-at-the-lowest/322720#322720Comment by Din on Why does it seem that most programmers tend to write all their code at the lowest possible level of abstraction?Din2008-11-29T15:19:55Z2008-11-29T15:19:55ZWell, saying programmer should not think is bad wording. Sorry for that. Correct myself. Programming needs thinking discipline. But if developer does not plan and design before he starts programming it is hard to expect from him lot of good thinking in a process.http://stackoverflow.com/questions/322666/why-does-it-seem-that-most-programmers-tend-to-write-all-their-code-at-the-lowest/322720#322720Comment by Din on Why does it seem that most programmers tend to write all their code at the lowest possible level of abstraction?Din2008-11-29T15:18:07Z2008-11-29T15:18:07ZThank you for the link! It is interesting one. http://stackoverflow.com/questions/323916/do-you-prefer-quick-and-dirty-or-sound-but-incomplete-answers-to-your-problems/323943#323943Comment by Din on Do you prefer quick and dirty or sound but incomplete answers to your problems?Din2008-11-29T14:47:00Z2008-11-29T14:47:00ZI think we here want to be fair and learn how to express our self clearly to others. Voting supposed to protect from individual mistakes. So in my point of view it is better just accept own mistake and go on. Next time will be better result.http://stackoverflow.com/questions/323984/project-methodology-for-small-teams/324079#324079Comment by Din on Project methodology for small teamsDin2008-11-28T06:40:31Z2008-11-28T06:40:31ZWhat is Agile? A magic wand? =) Developers do not know what business is about and clients do not know what programming is about. Direct contact between them only brings misunderstanding and bad practices