User Svet - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T07:59:12Z http://stackoverflow.com/feeds/user/8934 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/105049/what-are-the-best-design-patterns-books-you-have-read 22 What are the best design patterns books you have read? Svet 2008-09-19T20:02:42Z 2009-10-30T10:58:17Z <p>What are your favorite ones?</p> http://stackoverflow.com/questions/535053/which-webbrowsers-use-http-1-1-by-default 0 Which webbrowsers use http/1.1 by default? Svet 2009-02-11T01:19:54Z 2009-10-20T16:39:27Z <p>Anyone have an idea where can I look up that information? I'm pretty sure that IE 4 has the "Use HTTP 1.1" parameter on by default and the "Use HTTP 1.1 through proxy connections" off. Got this information from <a href="http://www.microsoft.com/technet/archive/ie/reskit/ie4/Part2/part2b.mspx?mfr=true" rel="nofollow">here</a>. I assume the later versions would have "Use HTTP 1.1" on too. How about older versions of IE? How about Firefox, Opera, Safari etc?</p> http://stackoverflow.com/questions/573171/average-number-of-languages-you-speak-should-documentation-be-translated/573209#573209 6 Answer by Svet for Average number of languages you speak? Should documentation be translated? Svet 2009-02-21T15:20:13Z 2009-02-21T15:20:13Z <p>Personally I speak 2 languages fluently - Bulgarian and English. However I think that developer documentations as technical designs, requirements, API etc should only be documented in English since it's the standard language used in the industry. I've never used anything but English in my work. If the company is based in another country and most of the developers speak a language different than English then choose the most common language. There are some problems you will run into if you start translating the documentation in different languages:</p> <ul> <li>The effort will double (triple etc depending on how many languages you use). And developers are not really fond of documenting to begin with so this will turn documentation into an even bigger chore. Which will result in worse documentation overall.</li> <li>You will always need to employ speakers of all the languages you use </li> <li>The information might become ambiguous since one of the languages might start to be supported better (the one that's native to most developers) and the other language(s) will lag behind.</li> </ul> <p>I don't think that outsourcing really requires translation of APIs etc since usually you outsource to someone that's already speaking your language - that's quoted as one of the problems with Indian outsourcing for example.</p> http://stackoverflow.com/questions/535089/do-ternary-operators-increase-complexity-in-programs/535100#535100 1 Answer by Svet for Do ternary operators increase complexity in programs? Svet 2009-02-11T01:39:44Z 2009-02-11T01:39:44Z <p>For simple tasks like assigning a different value depending on a condition they're great. I wouldn't use them when there are longer expressions depending on the condition tho.</p> http://stackoverflow.com/questions/535056/how-to-get-started-with-version-control-and-php/535092#535092 0 Answer by Svet for How to get started with version control and PHP Svet 2009-02-11T01:36:29Z 2009-02-11T01:36:29Z <p>Check out other options too - Miscrosoft's <a href="http://en.wikipedia.org/wiki/Team_Foundation_Server" rel="nofollow">TFS</a> (this not only used for source control system but for defect tracking, project management etc etc) , <a href="http://en.wikipedia.org/wiki/Bazaar_(software)" rel="nofollow">Bazaar</a>, <a href="http://en.wikipedia.org/wiki/Git_(software)" rel="nofollow">Git</a> are popular ones.</p> http://stackoverflow.com/questions/154982/what-is-the-best-log-analysis-tool-that-you-used 7 What is the best log analysis tool that you used? Svet 2008-09-30T20:39:42Z 2009-01-08T18:04:10Z <p>I'm starting to work on an existing project that has very verbose logging and the logs are a real pain to go through. Have you guys ever used any tools for log analysis/parsing? Can you recommend me something powerful and easy to customize and use? At first I thought I should write a tool to parse the logs, but I'm thinking maybe something like that already exists. Thank you for the help in advance.</p> <p>Edit: The logs are custom - they have a set format, but I don't think they conform to any widely used standards. That's why I need a customizable log parser.</p> http://stackoverflow.com/questions/351931/what-is-the-best-linux-book-that-youve-read 2 What is the best Linux book that you've read? Svet 2008-12-09T06:10:23Z 2008-12-09T21:46:01Z <p>1 book per post please. </p> <p>What books would you recommend for a beginner or for the experienced developer/user (most people who use it are both anyway).</p> http://stackoverflow.com/questions/315171/windows-2000-and-windows-2003-rc2-encryption-decryption-using-windows-crypto-api 0 Windows 2000 and Windows 2003 RC2 encryption/decryption using windows Crypto API? Svet 2008-11-24T19:29:45Z 2008-11-25T06:56:01Z <p>Our app encrypts a value using RC2 in C++ code and I wrote a decryption routine in .NET </p> <p>The problem is that it works fine on our dev server, which is Windows 2003 but fails on the Windows 2000 one. It's running the same code and I checked everything else and it seems there are differences in the way the 2 encrypt. </p> <p>Has anyone had any experience with that?</p> http://stackoverflow.com/questions/315171/windows-2000-and-windows-2003-rc2-encryption-decryption-using-windows-crypto-api/316499#316499 0 Answer by Svet for Windows 2000 and Windows 2003 RC2 encryption/decryption using windows Crypto API? Svet 2008-11-25T06:25:35Z 2008-11-25T06:25:35Z <p>There's an <a href="http://support.microsoft.com/kb/841715" rel="nofollow">obscure issue</a> with win2000/winxp encryption/decryption. The Cryptography Service Provider on win2000 has 40 for the effective key length and that's used by default even if you use a 128 bit key. So to fix that you have to manually reset the effective key length on 2000 or you can set it to 40 before you decrypt on the winxp (or win2003 in my case). </p> <p>If you're using <a href="http://www.eggheadcafe.com/forumarchives/platformsdksecurity/Jul2005/post23356686.asp" rel="nofollow">C# to decrypt</a> you can't set the effective key size to something different than the key size if you use the RC2CryptoServiceProvider class.</p> http://stackoverflow.com/questions/203013/log4j-usage-how-to-customize-the-event-id-when-logging-to-windows-event-log 0 Log4j usage - how to customize the event ID when logging to Windows Event Log? Svet 2008-10-14T22:02:27Z 2008-10-15T05:58:58Z <p>I'm adding windows event logging functionality to an existing Java application and I'd like to utilize event ids(our admin is using them already). Is there a way to specify the event ID when logging with NTEventLogAppender?</p> http://stackoverflow.com/questions/203013/log4j-usage-how-to-customize-the-event-id-when-logging-to-windows-event-log/203831#203831 0 Answer by Svet for Log4j usage - how to customize the event ID when logging to Windows Event Log? Svet 2008-10-15T05:58:58Z 2008-10-15T05:58:58Z <p>From my research so far it seems like there's no way to modify the event ID from the default 4096.</p> http://stackoverflow.com/questions/194428/how-to-release-the-memory-that-has-been-used-for-a-variable-in-c/194444#194444 1 Answer by Svet for How to release the memory that has been used for a variable in C? Svet 2008-10-11T18:53:50Z 2008-10-11T18:53:50Z <p>It really depends on how you declare your variable - if it's a regular variable you cant "deallocate" it's memory - it will be released when it gets out of scope like here:</p> <pre><code>for (int i=0;i&lt;10;i++) { int k=i; //do stuff } </code></pre> <p>i will be deallocated when you exit the loop and k will be allocated and deallocated on every pass through the body of the loop.</p> <p>When it's about runtime memory allocation you can use your trusty malloc and free :)</p> <pre><code>int* intArray; malloc(200 * sizeof(int)); </code></pre> <p>This will give you an array of 200 ints.</p> http://stackoverflow.com/questions/173338/sms-alerting-to-respond-to-error-situations-faster/173357#173357 0 Answer by Svet for SMS alerting to respond to error situations faster Svet 2008-10-06T06:38:07Z 2008-10-06T06:50:26Z <p>You can get a service like <a href="http://www.serviceuptime.com/" rel="nofollow">http://www.serviceuptime.com/</a> and the send an email to your-number@a-domain-your-provider-gives They usually have the exact domains for the providers on their respective websites but you could just try @t-mobile.com if your provider is t-mobile for example.</p> <p>If you want to write your own tool should be pretty straightforward - send GET request if you dont get the expected response send email. You should run it from 2 different locations from 2 different ISPs tho because if there are routing problems and the request doesnt go through you'll get smsed</p> http://stackoverflow.com/questions/173329/how-to-decrypt-a-password-from-sql-server/173344#173344 6 Answer by Svet for How to decrypt a password from SQL server? Svet 2008-10-06T06:33:03Z 2008-10-06T06:44:04Z <p>I believe pwdencrypt is using a hash so you cannot really reverse the hashed string - the algorithm is designed so it's impossible. </p> <p>If you are verifying the password that a user entered the usual technique is to hash it and then compare it to the hashed version in the database.</p> <p>This is how you could verify a usered entered table</p> <pre><code>SELECT password_field FROM mytable WHERE password_field=pwdencrypt(userEnteredValue) </code></pre> <p>Replace userEnteredValue with (big surprise) the value that the user entered :)</p> http://stackoverflow.com/questions/164879/how-to-write-from-java-to-the-windows-event-log 7 How to write from java to the windows event log? Svet 2008-10-02T22:20:36Z 2008-10-02T22:28:33Z <p>Can you recommend what I should be using to do that?</p> http://stackoverflow.com/questions/137147/in-c-and-c-is-it-considered-bad-form-to-use-comparison-operators-outside-of-c/137155#137155 2 Answer by Svet for In C (and C++) is it considered bad form to use comparison operators outside of conditionals? Svet 2008-09-26T00:45:20Z 2008-09-26T00:45:20Z <p>I don't see anything wrong with it. If anything it's more concise and I think most developers with moderate experience would prefer it.</p> http://stackoverflow.com/questions/132195/server-operating-system/132204#132204 0 Answer by Svet for Server Operating System Svet 2008-09-25T08:51:14Z 2008-09-25T08:51:14Z <p>I would say <a href="http://www.centos.org/" rel="nofollow">CentOS</a> - famous for it's stability. I used to work as admin for a hosting provider - we used it and never had problems with it.</p> http://stackoverflow.com/questions/132164/loop-termination-conditions/132176#132176 1 Answer by Svet for Loop termination conditions Svet 2008-09-25T08:45:34Z 2008-09-25T08:45:34Z <p>We shouldn't look at the counter in isolation - if for any reason someone changed the way the counter is incremented they would change the termination conditions and the resulting logic if it's required for i==N.</p> <p>I would prefer the the second condition since it's more standard and will not result in endless loop.</p> http://stackoverflow.com/questions/132134/php-security/132158#132158 0 Answer by Svet for PHP - Security Svet 2008-09-25T08:40:52Z 2008-09-25T08:40:52Z <p>You could only allow access from internal IPs from the php app itself. Also dont ignore the usual security and best practices. Input validation and output encoding(whitelisting only), user accounts with hashed passwords etc.</p> http://stackoverflow.com/questions/132060/how-to-recover-from-a-drive-failure-in-a-raid-5-configuration/132078#132078 4 Answer by Svet for How to recover from a drive failure in a RAID 5 configuration? Svet 2008-09-25T08:14:27Z 2008-09-25T08:20:10Z <p>First I would read the manual for the hardware/software that you're using - the section for failure recovery :) </p> <p>Should be a simple matter of replacing the disk and rebuilding the array though.</p> <p>The most important point in such cases is that the disk should be replaced as soon as possible since if another disk fails you will probably lose data. Also you should address the cause of failure - was it because the disk was getting old? Should you replace the other ones too? Or was it because of a power surge, heat or vibration?</p> http://stackoverflow.com/questions/130869/can-php-handle-enterprise-level-sites-as-well-as-java/130882#130882 3 Answer by Svet for Can PHP handle enterprise level sites as well as Java Svet 2008-09-25T00:58:49Z 2008-09-25T00:58:49Z <p>I probably won't be entirely fair since I love php, but it's an incredibly mature and widespread language and definitely good for enterprise level applications. Even if it was a little bit inferior as far as performance to java the gap would be minimal - I don't think that's the case though. </p> <p><strong>For sure not worth it to rewrite your app in java.</strong></p> http://stackoverflow.com/questions/130508/what-font-size-do-you-use-in-your-code-editor/130524#130524 2 Answer by Svet for What font size do you use in your code editor? Svet 2008-09-24T23:11:12Z 2008-09-24T23:11:12Z <p>You get used to smaller fonts once you work with them for a while - I changed my resolution to a greater one a while ago and at first it was kind of hard to read, but then after a while you really start to enjoy being able to open a bunch of shell windows and your IDE without overlaying each other.</p> <p>Anyway I think it's well worth it to use smaller fonts since you can see more code simultaneously.</p> http://stackoverflow.com/questions/130447/should-i-store-all-projects-in-one-repository-or-mulitiple/130488#130488 4 Answer by Svet for Should I store all projects in one repository or mulitiple? Svet 2008-09-24T23:03:32Z 2008-09-24T23:03:32Z <p>I would store them in the same repository. It's kind of neater. Plus why would it matter for continuous integration and such - you can always pull a specific folder from the repository. </p> <p>It's also easier to administer - accounts to one repository, access logs of one repository etc.</p> http://stackoverflow.com/questions/124600/osmotic-communication-vs-closed-off-offices/124636#124636 2 Answer by Svet for Osmotic communication -vs- closed-off offices? Svet 2008-09-24T00:01:51Z 2008-09-24T06:18:27Z <p>I like the idea of silence and own office since it's definitely true that developers need to be focused and if our concentration gets broken every 15 minutes we won't get much done. </p> <p>On the other hand tho I believe that the best communication is face-to-face and I think there should be some time per week (say 2 hours) where developers can meet (optionally) and discuss what different problems (programming ones:)) they're having and possible solutions etc. We do that at our company and even though we have it scheduled every week we go maybe once every 2 weeks but the meetings are very productive always.</p> http://stackoverflow.com/questions/124586/compression-library-for-c-and-php/124613#124613 2 Answer by Svet for compression library for c and php Svet 2008-09-23T23:53:45Z 2008-09-23T23:53:45Z <p>Php <a href="http://www.php.net/filters.compression" rel="nofollow">supports</a> zlib compression and for the c compression you could use <a href="http://www.zlib.net/" rel="nofollow">zlib</a>, but you should think again if you want to compress network communication - the load will probably be too much for your servers.</p> http://stackoverflow.com/questions/118531/what-is-the-best-way-to-unit-test-webforms-apps-asp-net/118593#118593 2 Answer by Svet for What is the best way to unit test webforms apps ( ASP.NET ) Svet 2008-09-23T01:16:54Z 2008-09-23T01:16:54Z <p><a href="http://selenium.openqa.org/" rel="nofollow">Selenium</a> - I love it!</p> http://stackoverflow.com/questions/116195/before-xml-became-a-standard-and-given-all-its-shortcomings-what-made-xml-so-pop/116227#116227 2 Answer by Svet for Before XML became a standard and given all its shortcomings, what made XML so popular? Svet 2008-09-22T17:23:38Z 2008-09-22T17:23:38Z <ol> <li>Schema definition languages - you can describe the expected format of the XML</li> <li>It's a standard:) - it's definitely better than everybody using their own custom formats</li> </ol> <p>CSV is human readable but that's really the only good thing about it - it's so inflexible, and there are no meanings assigned to the values. If I started designing a system now I would definitely use <a href="http://www.yaml.org/" rel="nofollow">YAML</a> instead - it's less bloated and it's definitely gaining momentum.</p> http://stackoverflow.com/questions/116012/what-is-the-best-asp-net-mssql-based-wiki 4 What is the best ASP.NET/MSSQL based wiki? Svet 2008-09-22T16:44:46Z 2008-09-22T16:49:17Z <p>We're considering moving our documentation to a wiki. I tried the SharePoint wiki but it seems really poor on features. Then I tried Mediawiki, but we don't have PHP/MySQL available in our network. We work a lot with Microsoft technology and I was wondering what is the best Wiki that you used that is written in ASP.NET using MSSQL?</p> http://stackoverflow.com/questions/113218/add-options-to-select-box-without-internet-explorer-closing-the-box/113284#113284 1 Answer by Svet for Add options to select box without Internet Explorer closing the box? Svet 2008-09-22T05:18:49Z 2008-09-22T05:18:49Z <p>I would suggest to load the contents of the selects that don't depend on any other select boxes on page load. Then in the onchange event of those selects load the contents of the rest of the selects that depend on them. </p> <p>Your idea is sound from a programming point of view, but you will get that lag between clicking on the select and it being populated with all the options which from the user's point of view looks kind of sloppy.</p> http://stackoverflow.com/questions/113195/what-special-trick-do-you-use-to-keep-focus-on-your-current-task-amoung-the-mas/113236#113236 1 Answer by Svet for What special 'trick' do you use to keep focus on your current task amoung the mass distractions of the net? Svet 2008-09-22T04:55:37Z 2008-09-22T04:55:37Z <ol> <li>Block background noise - I use headphones playing music (haven't tried noise canceling ones but sounds like a great idea)</li> <li>Turn off your email program and check it 3-4 times a day.</li> <li>Set Do Not Disturb (or the equivalent) on your IM </li> </ol> <p>That's all I do actually.</p> http://stackoverflow.com/questions/535053/which-webbrowsers-use-http-1-1-by-default/535070#535070 Comment by Svet on Which webbrowsers use http/1.1 by default? Svet 2009-02-11T01:32:00Z 2009-02-11T01:32:00Z Yeah that's true. Firefox's option is about:config-&gt;network.http.version. How about older browsers tho? http://stackoverflow.com/questions/315171/windows-2000-and-windows-2003-rc2-encryption-decryption-using-windows-crypto-api/315270#315270 Comment by Svet on Windows 2000 and Windows 2003 RC2 encryption/decryption using windows Crypto API? Svet 2008-11-24T20:48:12Z 2008-11-24T20:48:12Z Thanks Brian. I'll check if it has sp3. I tried decrypting with 40 bit keys but that didn't do it.