User dongola7 - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T22:39:47Zhttp://stackoverflow.com/feeds/user/14704http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/281618/database-encryption/281653#2816530Answer by dongola7 for database encryptiondongola72008-11-11T17:55:05Z2008-11-11T17:55:05Z<p>Not sure if it's an option for you, but the developer of SQLite sells versions of the library that utilize encrypted database backends: <a href="http://www.hwaci.com/sw/sqlite/prosupport.html#crypto" rel="nofollow">http://www.hwaci.com/sw/sqlite/prosupport.html#crypto</a>.</p>
http://stackoverflow.com/questions/188162/what-is-the-most-useful-script-youve-written-for-everyday-life/188204#1882044Answer by dongola7 for What is the most useful script you've written for everyday life?dongola72008-10-09T17:01:18Z2008-10-09T17:01:18Z<p>A shell script to perform rotating backups using rsync. It also supports executing arbitrary child programs to support other pre-backup activities (downloading delicious bookmarks, for example).</p>
<p><a href="http://gist.github.com/6806" rel="nofollow">http://gist.github.com/6806</a></p>
http://stackoverflow.com/questions/161797/is-ones-complement-a-real-world-issue-or-just-a-historical-one/161869#1618695Answer by dongola7 for Is one's complement a real-world issue, or just a historical one?dongola72008-10-02T11:47:57Z2008-10-02T11:47:57Z<p>I work in the telemetry field and we have some of our customers have old analog-to-digital converters that still use 1's complement. I just had to write code the other day to convert from 1's complement to 2's complement in order to compensate.</p>
<p>So yes, it's still out there (but you're not going to run into it very often).</p>
http://stackoverflow.com/questions/120937/what-is-test-and-set-used-for/121021#1210210Answer by dongola7 for What is Test-and-Set used for?dongola72008-09-23T13:33:51Z2008-09-23T13:33:51Z<p>It's used when you need to get a shared value, do something with it, and change the value, assuming another thread hasn't already changed it.</p>
<p>As for practical uses, the last time I saw it was in implementations of concurrent queues (queues that may be pushed/popped by multiple threads without needing semaphores or mutexes).</p>
<p>Why would you use TestAndSet rather than a mutex? Because it generally requires less overhead than a mutex. Where a mutex requires OS intervention, a TestAndSet can be implemented as a single atomic instruction on the CPU. When running in parallel environments with 100's of threads, a single mutex in a critical section of code can cause serious bottlenecks.</p>
http://stackoverflow.com/questions/115493/how-do-i-convince-my-team-to-drop-sourcesafe-and-move-to-svn/115613#11561312Answer by dongola7 for How do I convince my team to drop sourcesafe and move to SVN?dongola72008-09-22T15:40:20Z2008-09-22T15:40:20Z<p>There were two features that we used to sell management and the team on SVN over VSS.</p>
<p>1) The ability to branch. When using VSS, when a release was scheduled to go out, the entire repository was locked until the release actually went out. This included the test and fix cycle. So, developers were unable to commit <em>anything</em> other than fixes for the release to the VSS repository. This resulted in long integration sessions immediately following each release. With the use of release branches in SVN, there is no longer any need to lock the entire repository.</p>
<p>2) The ability to rollback an entire change at once. Because SVN records all files changed in a single, atomic commit, it is trivial to revert a problematic change. In VSS, a developer had to go through the entire repository and find every file changed at about the same time and revert each change to each file individually. With SVN, this is as trivial as finding the relevant commit and hitting the "Revert Changes from this Commit" button in TortoiseSVN.</p>
<p>As a side note, we use TortoiseSVN and everyone <em>loves</em> the file overlay icons for seeing what has and has not changed.</p>
http://stackoverflow.com/questions/78756/what-do-you-use-to-keep-notes-as-a-developer/79191#791911Answer by dongola7 for What do you use to keep notes as a developer?dongola72008-09-17T02:11:16Z2008-09-17T02:11:16Z<p>I use Wikis as much as possible. I find that it helps for a number of reasons:</p>
<ol>
<li>I can take the Wiki with me from job to job.</li>
<li>I run the wiki locally on my development PC, so it's available from anywhere on my corporate intranet.</li>
<li>When people ask me questions I've already answered, I can just point them to the Wiki page.</li>
</ol>
<p>I find a lot of people waste too much time on formatting in a Wiki environment and not enough time on just taking the notes. For this reason, I've found Wikit (<a href="http://www.equi4.com/starkit/wikit.html" rel="nofollow">http://www.equi4.com/starkit/wikit.html</a>) to be the best Wiki software. It's easy to setup and run (has a built in webserver), and has enough formatting options to keep me satisfied, but not so many that I get overwhelmed.</p>
http://stackoverflow.com/questions/175129/what-are-best-practices-for-using-thread-local-storage-in-netComment by dongola7 on What are best practices for using thread local storage in .NET?dongola72008-10-06T16:55:05Z2008-10-06T16:55:05ZI've always avoided thread-local storage and found another way to do the same thing. My thought has always been thread-local storage is probably slower than direct access (not sure whether or not this is right). I'd be curious what others think as well.