User VolkA - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T04:08:57Zhttp://stackoverflow.com/feeds/user/25472http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/818163/make-jscrollpane-display-scrollbars-when-jlist-inside-is-changed1Make JScrollPane display scrollbars when JList inside is changedVolkA2009-05-03T22:20:34Z2009-11-11T15:08:28Z
<p>Hi!</p>
<p>I'm trying to change a JList inside a JScrollPane dynamically, using</p>
<pre><code>myList.setListData(someArray);
</code></pre>
<p>After this I would expect the JScrollPane to show Scrollbars as needed, but this doesn't happen. Googling the issue was not very helpful. I tried various combinations of the following methods, with little success (basically poking through the api docs):</p>
<pre><code>myScrollPane.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
myList.validate(); myScrollPane.validate();
myScrollPane.setPreferredSize(Dimension someDimension);
myScrollPane.setViewportView(moduleList);
myScrollPane.setLayout(...);
</code></pre>
<p>When using the first method a scrollbar appears, but it doesn't get activated by the model change. I also hooked into the PropertyChangeEvent and validated that the JList fires and event when the model changed. What am I missing here? What method do I have to use to make this work, or even better what property would make this work out of the box?</p>
http://stackoverflow.com/questions/551951/gps-time-synchronisation3GPS Time synchronisationVolkA2009-02-16T00:51:34Z2009-10-07T22:12:35Z
<p>I'm parsing NMEA GPS data from a device which sends timestamps without milliseconds. As far as I heard, these devices will use a specific trigger point on when they send the sentence with the .000 timestamp - afaik the $ in the GGA sentence.</p>
<p>So I'm parsing the GGA sentence, and take the timestamp when the $ is received (I compensate for any further characters being read in the same operation using the serial port baudrate).</p>
<p>From this information I calculate the offset for correcting the system time, but when I compare the time set to some NTP servers, I will get a constant difference of 250ms - when I correct this manually, I'm within a deviation of 20ms, which is ok for my application.</p>
<p>But of course I'm not sure where this offset comes from, and if it is somehow specific to the GPS mouse I'm using or my system. Am I using the wrong $ character, or does someone know how exactly this should be handled? I know this question is very fuzzy, but any hints on what could cause this offset would be very helpful!</p>
<p>Here is some sample data from my device, with the $ character I will take as the time offset marked:</p>
<pre><code>$GPGSA,A,3,17,12,22,18,09,30,14,,,,,,2.1,1.5,1.6*31
$GPRMC,003538.000,A,5046.8555,N,00606.2913,E,0.00,22.37,160209,,,A*58
-> $ <- GPGGA,003539.000,5046.8549,N,00606.2922,E,1,07,1.5,249.9,M,47.6,M,,0000*5C
$GPGSA,A,3,17,12,22,18,09,30,14,,,,,,2.1,1.5,1.6*31
$GPGSV,3,1,10,09,77,107,17,12,63,243,30,05,51,249,16,14,26,315,20*7E
$GPGSV,3,2,10,30,24,246,25,17,23,045,22,15,15,170,16,22,14,274,24*7E
$GPGSV,3,3,10,04,08,092,22,18,07,243,22*74
$GPRMC,003539.000,A,5046.8549,N,00606.2922,E,0.00,22.37,160209,,,A*56
-> $ <- GPGGA,003540.000,5046.8536,N,00606.2935,E,1,07,1.5,249.0,M,47.6,M,,0000*55
$GPGSA,A,3,17,12,22,18,09,30,14,,,,,,2.1,1.5,1.6*31
$GPRMC,003540.000,A,5046.8536,N,00606.2935,E,0.00,22.37,160209,,,A*56
-> $ <- GPGGA,003541.000,5046.8521,N,00606.2948,E,1,07,1.5,247.8,M,47.6,M,,0000*5E
</code></pre>
http://stackoverflow.com/questions/960099/how-to-set-up-java-logging-using-a-properties-file-java-util-logging1How to set up java logging using a properties file? (java.util.logging)VolkA2009-06-06T16:52:30Z2009-09-30T14:11:15Z
<p>I'm having a stupid java logging problem: I'm loading the logging configuration from my app configuration file - but it just doesn't log anything after reading the file (which looks pretty much like the examples you will find on the net except for the additional application configuration - removing this also doesn't help). The "initializing..." log line appears just fine, but the "starting app" and any further messages are neither logged to the console, nor is the logfile ever created. What am I missing here?</p>
<p>The Logger code looks like this:</p>
<pre><code>...
Logger log = Logger.getLogger("myApp");
log.setLevel(Level.ALL);
log.info("initializing - trying to load configuration file ...");
Properties preferences = new Properties();
try {
FileInputStream configFile = new FileInputStream("/path/to/app.properties");
preferences.load(configFile);
LogManager.getLogManager().readConfiguration(configFile);
} catch (IOException ex)
{
System.out.println("WARNING: Could not open configuration file");
System.out.println("WARNING: Logging not configured (console output only)");
}
log.info("starting myApp");
...
</code></pre>
<p>And this is the configuration file:</p>
<pre><code>appconfig1 = foo
appconfig2 = bar
# Logging
handlers = java.util.logging.FileHandler, java.util.logging.ConsoleHandler
.level = ALL
# File Logging
java.util.logging.FileHandler.pattern = %h/myApp.log
java.util.logging.FileHandler.formatter = java.util.logging.SimpleFormatter
java.util.logging.FileHandler.level = INFO
# Console Logging
java.util.logging.ConsoleHandler.level = ALL
</code></pre>
http://stackoverflow.com/questions/827486/how-are-the-automobile-databases-maintained/942401#9424013Answer by VolkA for How are the automobile databases maintained?VolkA2009-06-02T23:21:51Z2009-06-02T23:21:51Z<p>Another option would be to load the data from an RDF data source like dbpedia.org or freebase.com (e.g. have a look at <a href="http://dbpedia.org/page/Category:Compact%5Fcars" rel="nofollow">DBpedia Compact Cars</a>, <a href="http://dbpedia.org/page/Category:Mid-size%5Fcars" rel="nofollow">DBpedia Mid Size Cars</a> or <a href="http://www.freebase.com/view/automotive/make" rel="nofollow">Freebase Automobile Make</a>). Simply parsing out the information from the RDF resources will be much more reliable than html scrapping and easier to update. If you have the time and don't fear a steep learning curve you could also look into using some more powerful semantic web techniques like SPARQL querying to implement this :)</p>
http://stackoverflow.com/questions/592448/c-how-to-set-file-permissions-cross-platform/592492#5924921Answer by VolkA for C++ - How to set file permissions (cross platform)VolkA2009-02-26T21:20:58Z2009-02-26T21:20:58Z<p>There's no standard way to do this in C++, but for this special requirement you should probably just write a custom wrapper, with #ifdef _WIN32. Qt has a permission wrapper in it's <a href="http://doc.trolltech.com/4.5/qfile.html#Permission-enum" rel="nofollow">QFile</a> class, but this would of course mean depending on Qt ...</p>
http://stackoverflow.com/questions/591923/make-git-automatically-remove-trailing-whitespace-before-committing/592009#5920090Answer by VolkA for Make git automatically remove trailing whitespace before committingVolkA2009-02-26T19:18:29Z2009-02-26T19:18:29Z<p>If the core.whitespace directive doesn't fix your issues, you can also change the pre-commit hook (.git/hooks/pre-commit) to find and fix them for you. See <a href="http://snipplr.com/view/8399/git-whitespace-fixes-for-windows-newlines/" rel="nofollow">this</a> post for a detailed description.</p>
http://stackoverflow.com/questions/586410/table-layout-using-stdcout3Table layout using std::coutVolkA2009-02-25T15:18:24Z2009-02-26T13:58:07Z
<p>How do I format my output in C++ streams to print fixed width left-aligned tables? Something like </p>
<pre><code>printf("%-14.3f%-14.3f\n", 12345.12345, 12345.12345);
</code></pre>
<p>poducing</p>
<pre><code>12345.123 12345.123
</code></pre>
http://stackoverflow.com/questions/586410/table-layout-using-stdcout/586461#5864610Answer by VolkA for Table layout using std::coutVolkA2009-02-25T15:27:22Z2009-02-25T15:27:22Z<p>Thanks, <code><iomanip></code> works. I also found <a href="http://www.boost.org/doc/libs/1%5F38%5F0/libs/format/doc/format.html" rel="nofollow">Boost::Format</a>, which seams to be a pretty much printf like library for string formating.</p>
http://stackoverflow.com/questions/583394/how-to-add-assembly-code-in-linux/583484#5834841Answer by VolkA for How to add assembly code in Linux VolkA2009-02-24T20:37:33Z2009-02-24T20:37:33Z<p>In the kernel, you can also use the <code>__asm__</code> macro, for an example see <code>include/asm/atomic.h</code>. <a href="http://lxr.linux.no" rel="nofollow">LXR</a> is a very good site for browsing and searching through the Linux sourcecode, you will find many examples there.</p>
http://stackoverflow.com/questions/579673/where-should-my-win32-program-keep-its-files/579755#5797552Answer by VolkA for Where should my win32 program keep its files?VolkA2009-02-23T22:53:19Z2009-02-23T22:53:19Z<p>For your application binaries, you can assume that you may write to the PROGRAM FILES directory (use the %ProgramFiles% environment variable to support installations other than the default English version - e.g. in german Installations this will be c:\Programme by default). <a href="http://en.wikipedia.org/wiki/Environment_variable" rel="nofollow">Wikipedia</a> lists the most common variables. Another option are the <a href="http://msdn.microsoft.com/en-us/library/bb762181%28VS.85%29.aspx" rel="nofollow">SHGetFolderPath</a> or newer <a href="http://msdn.microsoft.com/en-us/library/bb762188%28VS.85%29.aspx" rel="nofollow">SHGetKnownFolderPath</a> functions.</p>
<p>For User data, you should assume that the application is running with limited access rights and may only write to the user's home directory. Same applies for registry entries. This path should probably be configurable b the user, as the home directory may actually be a network server and a user might have a second disk attached for data storage. For information on the current (Vista) filesystem guidelines see <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=88AD7E7C-4068-48B8-9503-E160A6693BBA&displaylang=en" rel="nofollow">this article</a>.</p>
<p>Regarding plugins, this might be more complicated. The best practice seams to be offering the option to install for the current user only, and placing the plugin in the user directory, or install for all users and place the files into your program files directory (but remember to check for write permission and request elavated access if needed).</p>
http://stackoverflow.com/questions/553788/c-to-c-translator/553830#5538300Answer by VolkA for C++ to C# Translator.VolkA2009-02-16T16:11:46Z2009-02-16T16:11:46Z<p>I don't think any translation engine for C++ -> C# could do more than safe a bit of typing on boilerplate code (fix basic syntax) - as the frameworks used in C++ and C# are fundamentally different, and you will run into problems as soon as the translator has to deal with pointers arithmetics and stuff like this. </p>
<p>Given the complex syntax of C++ and the crazy stuff you can do with it (think <a href="http://www.boost.org" rel="nofollow">Boost</a>) I guess any translator would run into serious trouble sooner or later. See <a href="http://blogs.msdn.com/brada/archive/2005/02/28/382083.aspx" rel="nofollow">this blog post</a> for some alternative suggestions.</p>
http://stackoverflow.com/questions/545937/what-technology-to-use-in-creating-dsl-for-rules-engine/553792#5537923Answer by VolkA for What technology to use in creating DSL for rules engine?VolkA2009-02-16T16:02:26Z2009-02-16T16:02:26Z<p>The standard tool for building DSL's seams to be <a href="http://www.antlr.org/" rel="nofollow">ANTLR</a> - it is a powerful lexer / parser generator with a lot of target languages for compiler output. It has backends for C#, Java, C/C++, Python etc. (see the <a href="http://www.antlr.org/wiki/display/ANTLR3/Code+Generation+Targets" rel="nofollow">code generation targets</a> list) and lets you inject custom code into your compiler in your target language easily.</p>
<p>There is also a very powerful IDE (ANTLRWorks) and lots of documentation. (Check out <a href="http://www.pragprog.com/titles/tpantlr/the-definitive-antlr-reference" rel="nofollow">The Defenitive ANTLR Reference</a> from Terrence Parr, the author of ANTLR) For References on who else uses it see the <a href="http://www.antlr.org/testimonial/list" rel="nofollow">Testimonlals</a> page.</p>
<p>You still need to do most of the plumbing for the IDE yourself, but it should be much easier given the robust compiler framework you will get from ANTLR. This should be the case for most solutions posted here ...</p>
<p>I'm currently using a compiler written with ANTLR to preprocess our own DSL to C/C++ output and am very happy with it. Enough of the advertisement, you should try it for yourself :) Have fun!</p>
http://stackoverflow.com/questions/541062/boostasioserialport-reading-after-reconnecting-device1boost::asio::serial_port reading after reconnecting DeviceVolkA2009-02-12T12:37:06Z2009-02-15T21:36:09Z
<p>I have a problem with the boost::asio::serial_port class reading from a GPS device (USB-Serial). Connecting the device and reading from it works fine, but when I disconnect and reconnect the device, read_some doesn't read any bytes from the port.</p>
<p>As boost doesn't seam to detect that the serial port is gone ( is_open() returns true ), I periodically cancel(), close() and open( GPS_PORT ) the device when I don't get data, resetting the port options on the way. But this doesn't help either, the input buffer stays empty.</p>
<p>Am I missing something, or doing something wrong, or is this a bug in asio? Is there a standard way to detect that the port is gone?</p>
http://stackoverflow.com/questions/551226/cant-really-understand-what-the-parameters-for-constructing-tcpresolverquery/551275#5512753Answer by VolkA for Can`t really understand what the parameters for constructing tcp::resolver::queryVolkA2009-02-15T17:48:12Z2009-02-15T17:54:55Z<p>You would run the program with the IP or Hostname of the server you want to connect to. tcp::resolver::query takes the host to resolve or the IP as the first parameter and the name of the service (as defined e.g. in /etc/services on Unix hosts) - you can also use a numeric service identifier (aka port number). It returns a list of possible endpoints, as there might be several entries for a single host.</p>
http://stackoverflow.com/questions/534201/is-it-possible-to-measure-function-coverage-with-gcov/534259#5342594Answer by VolkA for Is it possible to measure function coverage with gcov?VolkA2009-02-10T21:20:59Z2009-02-10T23:21:07Z<p>I guess what you mean is the -f option, which will give you the percentage of lines covered per function. There is an interesting article about gcov at <a href="http://www.ddj.com/development-tools/184401989" rel="nofollow">Dr. Dobb's</a> which might be helpful. If "man gcov" doesn't show the -f flag, check if you have a reasobably recent version of the gcc suite.</p>
<p><strong>Edit:</strong> to get the percentage of functions not executed you can simply parse through the function coverage output, as 0.00% coverage should be pretty much equivalent to not called. This small script prints the percentage of functions not executed:</p>
<pre><code>#!/bin/bash
if test -z "$1"
then
echo "First argument must be function coverage file"
else
notExecuted=`cat $1 | grep "^0.00%" | wc -l`
executed=`cat $1 | grep -v "^0.00%" | wc -l`
percentage=$(echo "scale=2; $notExecuted / ($notExecuted + $executed) * 100" |bc)
echo $percentage
fi
</code></pre>
http://stackoverflow.com/questions/530519/stdmktime-and-timezone-info1std::mktime and timezone infoVolkA2009-02-09T23:22:13Z2009-02-09T23:44:15Z
<p>I'm trying to convert a time info I reveive as a UTC string to a timestamp using std::mktime in C++. My problem is that in / time.h there is no function to convert to UTC, mktime will only return the timestamp as local time.</p>
<p>So I need to figure out the timezone offset and take it into account, but I don't find a plattform independent way that doesn't involve porting the whole code to boost::date_time. Is there some easy solution which I have overlooked?</p>
http://stackoverflow.com/questions/326429/what-version-control-system-is-most-trivial-to-set-up-and-use-for-toy-projects/326494#3264942Answer by VolkA for What version-control system is most trivial to set up and use for toy projects?VolkA2008-11-28T19:31:31Z2008-11-28T20:13:18Z<p>For real ease of use for your students, you could install a SVN server with autocommit turned on, shared using webdav. This way they can just mount their directory using WebDAV and will autcommit every time they hit save - accessing the history is easy with TortoiseSVN, the Eclipse / Visual Studio Plugins or some web access solution like ViewVC. For your access restriction needs you could use the integrated subversion authentication (look <a href="http://svnbook.red-bean.com/nightly/en/svn.serverconfig.svnserve.html#svn.serverconfig.svnserve.auth" rel="nofollow">here</a>) - which uses a simple configuration file for fine grained access control. </p>
<p>Configuration has become a lot easier (and there is better documention now - have a look at <a href="http://svnbook.red-bean.com/" rel="nofollow">the SVN Book</a>), but could get a bit coplicated if you need multiple separate repositories with access restrictions and a web interface.</p>
<p>Autocommit is more a solution for the "my office worker / boss" who has no clue whats going on inside a computer needs version control for word documents. Students taking a programming course should perhaps also learn how to use a decent SCM anyway.</p>
<p>Git and Mercurial would be nice because of their distributed nature, which makes sharing easy - but both tools lack GUI interfaces which are really easy to use (TortoiseHg looks promising, and gitk is a very good Repository browser, but your students would still have to wrap their heads around the command line tools to make full use of the tools). Also the concept of distributed SCM's is a little more complex to grasp.</p>
<p>On the pro side you could use public hosting solutions like <a href="https://github.com/" rel="nofollow">GitHub</a> and wouldn't have to worry about a server setup. This also makes sharing solutions really easy, but would break your "only with each other" requirement. But I guess you won't be able to stop them from exchanging code anyway, in my experience with course work I found looking at the code and verifying that it's unique is the only way to prevent copying.</p>
<p>You could also use <a href="http://www.codicesoftware.com" rel="nofollow">PlasticSCM</a>, which has really nice interfaces for a lot of IDE's and (at least the site claims) free licenses for educational institutions.</p>
http://stackoverflow.com/questions/323200/is-a-https-query-string-secure/323219#3232196Answer by VolkA for Is a https query string secure?VolkA2008-11-27T08:29:42Z2008-11-27T08:38:02Z<p>From a "sniff the network packet" point of view a GET request is safe, as the browser will first establish the secure connection and then send the request containing the GET parameters. But GET url's will be stored in the users browser history / autocomplete, which is not a good place to store e.g. password data in. Of course this only applies if you take the broader "Webservice" definition that might access the service from a browser, if you access it only from your custom application this should not be a problem.</p>
<p>So using post at least for password dialogs should be preferred. Also as pointed out in the link littlegeek posted a GET URL is more likely to be written to your server logs.</p>
http://stackoverflow.com/questions/312527/os-x-run-rsync-under-sudo-using-sshconfig/312537#3125373Answer by VolkA for OS X run rsync under sudo using ssh_configVolkA2008-11-23T13:47:51Z2008-11-23T13:53:48Z<p>You can use</p>
<pre><code>ssh -i /Users/myuser/.ssh/id_rsa -F /Users/myuser/.ssh/config login@host
</code></pre>
<p>to let ssh use your config / key files. Use "-v" to check which file it is using. You could also copy your configuration / id to /var/root/.ssh, which will be used by default when using ssh via sudo.</p>
<p>To pass these options to rsync, you have to set the "--rsh" / "-e" like this:</p>
<pre><code>rsync -e "ssh -i ... -F ..."
</code></pre>
http://stackoverflow.com/questions/289614/how-can-i-get-my-vista-task-bar-back-without-rebooting/289631#2896310Answer by VolkA for How can I get my vista task bar back (without rebooting)VolkA2008-11-14T09:41:58Z2008-11-14T09:41:58Z<p>Seams to be a common problem with vista - does CTRL + ESC work? <a href="http://forums.microsoft.com/TechNet/ShowPost.aspx?PostID=2792148&SiteID=17" rel="nofollow">Here</a> is a forum thread describing this problem. If you can get to the properties of the Start menu try hiding and unhiding the taskbar.</p>
<p>Another <a href="http://www.windowsvistaplace.com/the-mystery-of-the-disappearing-taskbar/" rel="nofollow">solution</a> seams to be killing and restarting the explorer.</p>
http://stackoverflow.com/questions/278192/git-how-do-i-view-the-change-history-of-a-file/278242#27824212Answer by VolkA for Git - how do I view the change history of a fileVolkA2008-11-10T15:56:44Z2008-11-10T15:56:44Z<p>You can use </p>
<pre><code>git log -p filename
</code></pre>
<p>to let git generate the patches for each log entry, see</p>
<pre><code>git help log
</code></pre>
<p>for more options - it can actually do a lot of nice things :) To get just the diff for a specifiy commit you can </p>
<pre><code>git show HEAD
</code></pre>
<p>or any other revision by identifier. Or use gitk to browse the changes visually.</p>
http://stackoverflow.com/questions/278081/reolving-a-git-conflict-with-binary-files/278207#2782073Answer by VolkA for Reolving a Git conflict with binary filesVolkA2008-11-10T15:49:46Z2008-11-10T15:49:46Z<p>You have to resolve the conflict manually (copying the file over) and then commit the file (no matter if you copied it over or used the local version) like this</p>
<pre><code>git commit -a -m "Fix merge conflict in test.foo"
</code></pre>
<p>Git normally autocommits after merging, but when it detects conflicts it cannot solve by itself, it applies all patches it figured out and leaves the rest for you to resolve and commit manually. The <a href="http://www.kernel.org/pub/software/scm/git/docs/git-merge.html" rel="nofollow">Git Merge Man Page</a>, the <a href="http://git.or.cz/course/svn.html#merge" rel="nofollow">Git-SVN Crash Course</a> or <a href="http://www.bluishcoder.co.nz/2007/09/git-binary-files-and-cherry-picking.html" rel="nofollow">this</a> blog entry might shed some light on how it's supposed to work.</p>
http://stackoverflow.com/questions/276134/how-can-i-setup-different-ssl-certificates-for-vhosts-on-apache/276165#2761652Answer by VolkA for How can I setup different SSL-Certificates for vhosts on Apache?VolkA2008-11-09T17:25:13Z2008-11-09T17:25:13Z<p>AFAIK it's not possible to set up different SSL certificates for name-based virtual hosts using mod_ssl. You can read the detailed reason <a href="http://httpd.apache.org/docs/2.2/ssl/ssl_faq.html#vhosts" rel="nofollow">here</a>. An alternative would be using IP based virtual hosts (Which is probably not possible / not a very satisfying solution) - just insert different SSLCertificateFile directives, or you could try <a href="http://www.g-loaded.eu/2007/08/10/ssl-enabled-name-based-apache-virtual-hosts-with-mod_gnutls/" rel="nofollow">this</a> method using mod_gnutls.</p>
http://stackoverflow.com/questions/256803/what-defines-data-that-can-be-stored-in-strings/256819#2568192Answer by VolkA for What defines data that can be stored in stringsVolkA2008-11-02T12:03:46Z2008-11-02T12:03:46Z<p>I see three major problems with storing binary data in strings: </p>
<ol>
<li>Most systems assume a certain encoding within string variables - e.g. if it's a UTF-8, UTF-16 or ASCII string. New line characters may also be translated depending on your system.</li>
<li>You should watch out for restrictions on the size of strings.</li>
<li>If you use C style strings, every null character in your data will terminate the string and any string operations performed will only work on the bytes up to the first null.</li>
<li>Perhaps the most important: it's confusing - other developers don't expect to find random binary data in string variables. And a lot of code which <em>works</em> on strings might also get really confused when encountering binary data :)</li>
</ol>
http://stackoverflow.com/questions/248425/best-practice-for-following-subversion-repository-trunk-git-mirror-git-svn-s/248658#2486581Answer by VolkA for Best Practice for following Subversion repository Trunk: Git (Mirror), Git-Svn, Subversion?VolkA2008-10-29T22:25:03Z2008-10-29T22:25:03Z<p>Well, if you are using git for all your projects and you are reasonably familiar with it I would suggest to use the git mirror, as it seams to be reasonably up to date. Git should also be faster than using Subversion. If the mirror goes away / gets outdated you can always just <strong>svn co / svn up</strong> to get the current source.</p>
<p>But as you also have Subversion installed - you could also just use it instead ... doesn't make a big difference and is more a question of personal preference.</p>
<p>Git-svn is a little more tedious to setup and keep in sync - you have to fetch the subversion updates first using <strong>git svn fetch</strong> and then doing a <strong>git svn rebase</strong> to apply the changes to the git repository. It will also use up more disc space. This is somewhat more error-prone and I would only recommend using git-svn if you actually wanted to do development on the source tree. If you feel adventurous and want to give it a try have a look at <a href="http://utsl.gen.nz/talks/git-svn/intro.html" rel="nofollow">this Tutorial</a> - i found it quite useful to get going with git-svn.</p>
http://stackoverflow.com/questions/204295/does-anyone-know-where-i-can-find-a-memory-editing-user-control-for-net/204333#2043331Answer by VolkA for Does anyone know where I can find a memory editing user control for .net?VolkA2008-10-15T11:05:22Z2008-10-15T11:05:22Z<p>This project claims to have a reusable hex editor component: <a href="http://sourceforge.net/projects/hexbox/" rel="nofollow">Be.HexEditor</a> - that would probably be the best way to edit random binary data.</p>
http://stackoverflow.com/questions/193862/boo-vs-ironpython/193894#1938949Answer by VolkA for Boo vs. IronPythonVolkA2008-10-11T09:30:13Z2008-10-11T12:23:03Z<p>The main difference as I see it is that Boo is statically typed, meaning the type of a variable is inferred on its first assignment and is fixed from there - while IronPython has the "real" dynamic behaviour of normal Python code.</p>
<p>IronPython is officially maintained by Microsoft now and targets the new Dynamic Language Runtime in version 2.0. I suspect because of it's statically typed nature Boo might be faster. I don't have much "real" experience with that though ...</p>
<p>IronPython also reimplements lots of the python standard library so you can run lots of python software without change on IronPython (e.g. <a href="http://unbracketed.org/2008/mar/16/pycon-2008-django-now-plays-dark-side/" rel="nofollow">Django</a>).</p>
http://stackoverflow.com/questions/192319/in-the-bash-script-how-do-i-know-the-script-file-name/192344#1923442Answer by VolkA for In the bash script how do I know the script file name?VolkA2008-10-10T17:24:20Z2008-10-10T17:24:20Z<p>You can use $0 to determine your script name (with full path) - to get the script name only you can trim that variable with</p>
<pre><code>basename $0
</code></pre>
http://stackoverflow.com/questions/187281/sql-select-from-as-with-data-type-specifier4SQL SELECT FROM ... AS with data type specifier?VolkA2008-10-09T13:40:13Z2008-10-09T13:43:47Z
<p>I have a problem with an SQL query on Postgresql. This select clause is an example from a lecture on databases:</p>
<pre><code>1 select t.CourseNr, t.StudentsPerCourse, g.StudentCount,
2 t.StudentsPerCourse/g.StudentCount as Marketshare
3 from (select CourseNr, count(*) as StudentsPerCourse
4 from taking
5 group by CourseNr) t,
6 (select count(*) as StudentCount
7 from Students) g;
</code></pre>
<p>The problem is the Marketshare column in line 2. Both StudentsPerCourse and StudentCount are of type integer.</p>
<p>When using this on my Postgresql database, the Marketshare column is evaluated as an int type, while i would need a float/numeric here. I didn't find any way to specify the data type by searching the Postgresql Documentation on SELECT clauses nor by googling. Is there a (preferably standard SQL) way to specify the column type or am I missing something here?</p>
http://stackoverflow.com/questions/175690/i-want-to-use-an-ldap-client-here-at-work-to-talk-to-active-directory-how-can/175709#1757092Answer by VolkA for I want to use an LDAP client here at work to talk to Active Directory. How can I discover on my own the IP I should be aiming at?VolkA2008-10-06T19:04:09Z2008-10-06T22:41:00Z<p>Try ping or nslookup _ldap._tcp. with your AD Domain (e.g. _ldap._tcp.test.com) in a console (cmd.exe) - this should give you the AD Server IP.</p>
<pre><code>_ldap._tcp.*
</code></pre>
<p>Is a general SRV entry made by your active directory server for locating LDAP (AD) servers in your domain. Your domain itself should match your Windows Login Domain. If this isn't the case right-click on your "My Computer" Icon on your Desktop or in your Explorer and click Properties. In the System Properties there is a Tab showing your Computer Name and its Network ID, which also contains its DOMAIN/WORKGROUP name. This is what you should append to the resource locator above.</p>
<p>Btw. how did you get access to that machine without your Domain Login? :)</p>
<p>Edit: The FOOAD name would be the "old" Domain name, and foo.something.something the new DNS based name - this should give you the server address. Also try the suggestion by Almond, which is more specific regarding the requested service.</p>
http://stackoverflow.com/questions/960099/how-to-set-up-java-logging-using-a-properties-file-java-util-logging/960110#960110Comment by VolkA on How to set up java logging using a properties file? (java.util.logging)VolkA2009-06-06T18:19:57Z2009-06-06T18:19:57ZOh yes, got it - I'm using the same input stream twice, so I need to reposition it using configFile.reset() - otherwise the loadConfiguration() call will have nothing to read. Btw. the ) was just a copying error from my working code.http://stackoverflow.com/questions/960099/how-to-set-up-java-logging-using-a-properties-file-java-util-logging/960110#960110Comment by VolkA on How to set up java logging using a properties file? (java.util.logging)VolkA2009-06-06T18:16:20Z2009-06-06T18:16:20ZWell, it does seam to have something to do with the readConfiguration line - I stepped through this with a debugger and all the properties of the LogManager are cleared after this call.http://stackoverflow.com/questions/960099/how-to-set-up-java-logging-using-a-properties-file-java-util-logging/960133#960133Comment by VolkA on How to set up java logging using a properties file? (java.util.logging)VolkA2009-06-06T18:06:18Z2009-06-06T18:06:18ZYes, I'll probably add a check if this property is set and let it overwrite my config - having this all in one configuration file which works out-of-the box would be nice, though. Thanks!http://stackoverflow.com/questions/818163/make-jscrollpane-display-scrollbars-when-jlist-inside-is-changed/819132#819132Comment by VolkA on Make JScrollPane display scrollbars when JList inside is changedVolkA2009-05-04T16:45:20Z2009-05-04T16:45:20ZYes, I'm pretty much doing exactly what you did, but your code works for me - I'll have a closer look of what I'm NOT doing ... I suspect it could be something with the layout - thanks!http://stackoverflow.com/questions/818163/make-jscrollpane-display-scrollbars-when-jlist-inside-is-changed/819163#819163Comment by VolkA on Make JScrollPane display scrollbars when JList inside is changedVolkA2009-05-04T16:44:30Z2009-05-04T16:44:30ZYeah, I tried both, but with no effect ...http://stackoverflow.com/questions/582447/error-installing-postgresql-on-mac-os-x-10-5-using-macportsComment by VolkA on Error installing PostgreSQL on Mac OS X 10.5 using MacPortsVolkA2009-02-24T16:42:03Z2009-02-24T16:42:03ZCould you post the last few lines of config.log? This file tends to be very verbose, but somewhere in there is the command that actually failed...http://stackoverflow.com/questions/569183/poor-mans-authentication-algorithm/569195#569195Comment by VolkA on Poor man's authentication algorithm?VolkA2009-02-21T21:35:16Z2009-02-21T21:35:16ZThere are also lots of webmail services providing s/mime authentication and encryption. Of course you have to trust the webmail provider in this case, as the certificates are kept on the provides's server.http://stackoverflow.com/questions/551951/gps-time-synchronisation/551994#551994Comment by VolkA on GPS Time synchronisationVolkA2009-02-16T03:02:45Z2009-02-16T03:02:45ZOk, so I read that enabling a PPS signal is a proprietary function in some GPS devices, which would give msec accuracy - in the general case the offset of 0.25 sec, as suggested in the paper you posted, seams to be a good guess :) Thanks!http://stackoverflow.com/questions/541062/boostasioserialport-reading-after-reconnecting-device/541097#541097Comment by VolkA on boost::asio::serial_port reading after reconnecting DeviceVolkA2009-02-16T01:13:33Z2009-02-16T01:13:33ZThanks, checking for is_open() after the close() and then creating a new instance fixed the problem!http://stackoverflow.com/questions/541062/boostasioserialport-reading-after-reconnecting-device/541097#541097Comment by VolkA on boost::asio::serial_port reading after reconnecting DeviceVolkA2009-02-15T18:11:42Z2009-02-15T18:11:42ZOk, I just tried to set RTS_CONTROL_DISABLE - it doesn't change the behaviour. The boost::serial_port::is_open returns true, but won't start reading.
The behaviour is: connect GPS, start tool - reading, disconnect GPS, reading stops, connect again, still not reading. Restart tool: works again.http://stackoverflow.com/questions/541062/boostasioserialport-reading-after-reconnecting-device/541109#541109Comment by VolkA on boost::asio::serial_port reading after reconnecting DeviceVolkA2009-02-12T13:50:48Z2009-02-12T13:50:48ZThat looks good - I'm checking the error code, but I haven't noticed the native() method yet ... with that I should be able to somehow convice the serial port to read :)http://stackoverflow.com/questions/541062/boostasioserialport-reading-after-reconnecting-device/541097#541097Comment by VolkA on boost::asio::serial_port reading after reconnecting DeviceVolkA2009-02-12T13:48:55Z2009-02-12T13:48:55ZThanks, I'll try that - but shouldn't the read also fail when the device is first opened?http://stackoverflow.com/questions/530519/stdmktime-and-timezone-info/530582#530582Comment by VolkA on std::mktime and timezone infoVolkA2009-02-10T00:04:19Z2009-02-10T00:04:19ZYes, that looks easy for linux, but Microsoft doesn't seam to agree - they provide a _mkgmtime function instead ...http://stackoverflow.com/questions/530519/stdmktime-and-timezone-info/530557#530557Comment by VolkA on std::mktime and timezone infoVolkA2009-02-09T23:55:33Z2009-02-09T23:55:33ZYep, that solves it. Thanks!http://stackoverflow.com/questions/530519/stdmktime-and-timezone-info/530557#530557Comment by VolkA on std::mktime and timezone infoVolkA2009-02-09T23:36:54Z2009-02-09T23:36:54ZThanks! I saw something like this in a google result, but does it work on windows?