User ComSubVie - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T13:12:51Zhttp://stackoverflow.com/feeds/user/15709http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1940093/lvm-snapshot-of-mounted-filesystem/1940302#19403020Answer by ComSubVie for LVM snapshot of mounted filesystemComSubVie2009-12-21T14:07:40Z2009-12-21T14:07:40Z<p>It depends on the filesystem you are using. With XFS you can use <code>xfs_freeze -f</code> to sync and freeze the FS, and <code>xfs_freeze -u</code> to activate it again, so you can create your snapshot from the frozen volume, which should be a save state.</p>
http://stackoverflow.com/questions/1936636/alternative-to-writing-many-if-statements/1936660#19366600Answer by ComSubVie for Alternative to writing many if statements?ComSubVie2009-12-20T19:12:33Z2009-12-20T19:12:33Z<p>You could concatenate both strings ("DegreesRadians") and call a Method called "DegreesRadians" via Reflection:</p>
<pre><code>MethodInfo theMethod = thisType.GetMethod(methodName);
theMethod.Invoke(this, parameters);
</code></pre>
<p>Where methodName are the concatenated strings (maybe with additional information, like "convert" + unit1 + "2" + unit2, like "convertDegrees2Radians"), and parameters is an array containing both values.</p>
http://stackoverflow.com/questions/1870029/wireless-communication-avr-based-embedded-system-and-iphone1Wireless communication: AVR based embedded system and iPhoneComSubVie2009-12-08T21:38:34Z2009-12-09T11:45:42Z
<p>What is the best way to realize wireless communication between an embedded system (based on an AVR controller) and the iPhone? I think there are only two options: either WiFi or BlueTooth. The range is not really a problem, since both devices should stay in the same room.</p>
<p>I have no idea, if there are any useful WiFi boards that can be connected to an AVR based microcontroller system (or any small microcontroller), any hints would be highly welcome.</p>
<p>I guess the better solution would be BlueTooth, but there is also the problem: which BlueTooth board is best suited for attachment to an AVR system, and is it possible to use the iPhone BlueTooth stack for (serial) communication over BlueTooth with the AVR device.</p>
<p>I hope that somebody already realized such a system and can give some helpful tips...</p>
http://stackoverflow.com/questions/1870022/java-resultset-hasnext/1870091#18700911Answer by ComSubVie for Java ResultSet hasNext()ComSubVie2009-12-08T21:49:09Z2009-12-08T21:49:09Z<p>You could try the following:</p>
<pre><code>public class A implements Iterator {
private ResultSet entities;
private Entity nextEntity;
...
public Object next() {
Entity tempEntity;
if ( !nextEntity ) {
entities.next();
tempEntity = new Entity( entities.getString...etc....)
} else {
tempEntity = nextEntity;
}
entities.next();
nextEntity = new Entity( entities.getString...ext....)
return tempEntity;
}
public boolean hasNext() {
return nextEntity ? true : false;
}
}
</code></pre>
<p>This code caches the next entity, and hasNext() returns true, if the cached entity is valid, otherwise it returns false.</p>
http://stackoverflow.com/questions/1775860/uitextfield-move-view-when-keyboard-appears/1775928#17759281Answer by ComSubVie for UITextField: move view when keyboard appearsComSubVie2009-11-21T16:22:20Z2009-11-21T16:22:20Z<p>I just solved this problem. The solution is a combination of a <code>UIKeyboardDidShowNotification</code> and <code>UIKeyboardDidHideNotification</code> observer with the above <code>textFieldDidBeginEditing:</code> and <code>textFieldDidEndEditing:</code> methods.</p>
<p>You need three additional variables, one to store the current selected UITextField (which I have named activeField), one to indicate if the current view has been moved, and one to indicate if the keyboard is displayed.</p>
<p>This is how the two <code>UITextField</code> delegate methods look now:</p>
<pre><code>- (void)textFieldDidBeginEditing:(UITextField *)textField {
activeField = textField;
}
- (void)textFieldDidEndEditing:(UITextField *)textField {
activeField = nil;
// Additional Code
}
</code></pre>
<p>When the view is loaded, the following two observers are created:</p>
<pre><code>- (void)viewDidLoad {
// Additional Code
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(keyboardWasShown:)
name:UIKeyboardDidShowNotification
object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(keyboardWasHidden:)
name:UIKeyboardDidHideNotification
object:nil];
}
</code></pre>
<p>And the corresponding methods are implemented as follows:</p>
<pre><code>- (void)keyboardWasShown:(NSNotification *)aNotification {
if ( keyboardShown )
return;
if ( ( activeField != inputAmount ) && ( activeField != inputAge ) ) {
NSDictionary *info = [aNotification userInfo];
NSValue *aValue = [info objectForKey:UIKeyboardBoundsUserInfoKey];
CGSize keyboardSize = [aValue CGRectValue].size;
NSTimeInterval animationDuration = 0.300000011920929;
CGRect frame = self.view.frame;
frame.origin.y -= keyboardSize.height-44;
frame.size.height += keyboardSize.height-44;
[UIView beginAnimations:@"ResizeForKeyboard" context:nil];
[UIView setAnimationDuration:animationDuration];
self.view.frame = frame;
[UIView commitAnimations];
viewMoved = YES;
}
keyboardShown = YES;
}
- (void)keyboardWasHidden:(NSNotification *)aNotification {
if ( viewMoved ) {
NSDictionary *info = [aNotification userInfo];
NSValue *aValue = [info objectForKey:UIKeyboardBoundsUserInfoKey];
CGSize keyboardSize = [aValue CGRectValue].size;
NSTimeInterval animationDuration = 0.300000011920929;
CGRect frame = self.view.frame;
frame.origin.y += keyboardSize.height-44;
frame.size.height -= keyboardSize.height-44;
[UIView beginAnimations:@"ResizeForKeyboard" context:nil];
[UIView setAnimationDuration:animationDuration];
self.view.frame = frame;
[UIView commitAnimations];
viewMoved = NO;
}
keyboardShown = NO;
}
</code></pre>
<p>This code works now as expected. The keyboard is only dismissed when the Done button is pressed, otherwise it stays visible and the view is not moved around.</p>
<p>As an additional note, I think it is possible to get the <code>animationDuration</code> dynamically by asking the <code>NSNotification</code> object, since I have already played with a similar solution but didn't get it to work (which it does now).</p>
http://stackoverflow.com/questions/1775860/uitextfield-move-view-when-keyboard-appears2UITextField: move view when keyboard appearsComSubVie2009-11-21T15:57:26Z2009-11-21T16:22:20Z
<p>Hello!</p>
<p>I'm currently working on an iPhone application with a single view, which has multiple UITextFields for input. When the keyboard shows, it overlays the bottom textfields. So I added the corresponding <code>textFieldDidBeginEditing:</code> method, to move the view up, which works great:</p>
<pre><code>- (void)textFieldDidBeginEditing:(UITextField *)textField {
if ( ( textField != inputAmount ) && ( textField != inputAge ) ) {
NSTimeInterval animationDuration = 0.300000011920929;
CGRect frame = self.view.frame;
frame.origin.y -= kOFFSET_FOR_KEYBOARD;
frame.size.height += kOFFSET_FOR_KEYBOARD;
[UIView beginAnimations:@"ResizeForKeyboard" context:nil];
[UIView setAnimationDuration:animationDuration];
self.view.frame = frame;
[UIView commitAnimations];
}
}
</code></pre>
<p>This method checks, if the source of the message is one of the textfields that are visible when the keyboard shows, and if not, it moves the view up.</p>
<p>I also added the <code>textFieldDidEndEnditing:</code> method, which moves the view down again (and updates some model objects according to the changed input):</p>
<pre><code>- (void)textFieldDidEndEditing:(UITextField *)textField {
if ( ( textField != inputMenge ) && ( textField != inputAlter ) ) {
NSTimeInterval animationDuration = 0.300000011920929;
CGRect frame = self.view.frame;
frame.origin.y += kOFFSET_FOR_KEYBOARD;
frame.size.height -= kOFFSET_FOR_KEYBOARD;
[UIView beginAnimations:@"ResizeForKeyboard" context:nil];
[UIView setAnimationDuration:animationDuration];
self.view.frame = frame;
[UIView commitAnimations];
}
// Additional Code
}
</code></pre>
<p>However, this solution has a simple flaw: When I finish editing one of the "hidden" textfields and touch another textfield, the keyboard vanishes, the view moves down, the view moves up again and the keyboard reappears.</p>
<p>Is there any possibility to keep the keyboard from vanishing and reappearing between two edits (of the "hidden" textfields - so that the view only moves when the selected textfield changes from one that would be hidden by the keyboard to one that would not be hidden)?</p>
http://stackoverflow.com/questions/132241/hidden-features-of-c/132274#13227432Answer by ComSubVie for Hidden features of CComSubVie2008-09-25T09:12:30Z2009-03-03T08:21:05Z<p>Interlacing structures like <a href="http://en.wikipedia.org/wiki/Duffs%5Fdevice" rel="nofollow">Duff's Device</a>:</p>
<pre><code>strcpy(to, from, count)
char *to, *from;
int count;
{
int n = (count + 7) / 8;
switch (count % 8) {
case 0: do { *to = *from++;
case 7: *to = *from++;
case 6: *to = *from++;
case 5: *to = *from++;
case 4: *to = *from++;
case 3: *to = *from++;
case 2: *to = *from++;
case 1: *to = *from++;
} while (--n > 0);
}
}
</code></pre>
http://stackoverflow.com/questions/280659/mid-range-embedded-processor/284222#2842222Answer by ComSubVie for Mid range embedded ProcessorComSubVie2008-11-12T15:05:29Z2008-11-12T15:05:29Z<p>I find the Analog Devices BlackFin processor very nice. It can run Linux, the Analog Devices VisualDSP++ includes it's own RTOS Kernel, it has a pretty usable "Device Drivers and System Services" framework, and there are quite some nice Evaluation Boards (directly from Analog Devices) and Tinyboards (from BlueTechnix.com) available.</p>
http://stackoverflow.com/questions/157207/can-one-language-be-better-than-another/157217#1572170Answer by ComSubVie for Can one language be better than another?ComSubVie2008-10-01T11:44:32Z2008-10-01T11:44:32Z<p>The answer is no. The quality of a language depends on the problem you use it on. Not every language is good for every problem, but for every problem there is at least one ideal language.</p>
http://stackoverflow.com/questions/140677/how-often-should-you-refactor/140695#1406950Answer by ComSubVie for How often should you refactor?ComSubVie2008-09-26T17:03:51Z2008-09-26T17:03:51Z<p>I think you should refactor something when you're currently working on a part of it. Means if you have to enhance function A, then you should refactor it before (and afterwards?). If you don't do anything with this function, then leave it as it is, as long as you have something else to do.</p>
<p>Do not refactor a working part of the system, unless you already have to change it.</p>
http://stackoverflow.com/questions/139411/is-a-gantt-chart-larger-than-a-single-page-ever-useful/139440#1394402Answer by ComSubVie for Is a Gantt Chart larger than a single page ever useful?ComSubVie2008-09-26T13:16:15Z2008-09-26T13:16:15Z<p>And is a GANNT Chart smaller than a single page ever useful? That little information could easily sit on a whiteboard or postit or whatever you have always in sight. There's not really any reason why you should start to wrestle with any GANNT tool when you can specify the neccesary information in a minute with a pencil on whatever paper you have.</p>
http://stackoverflow.com/questions/139346/including-quality-into-the-software-development-project-plan/139414#1394140Answer by ComSubVie for Including quality into the software development project planComSubVie2008-09-26T13:11:22Z2008-09-26T13:11:22Z<p>Use test-driven development instead of development-driven testing (it really helps!).</p>
http://stackoverflow.com/questions/139214/redundant-code-constructs/139399#1393991Answer by ComSubVie for Redundant code constructsComSubVie2008-09-26T13:09:02Z2008-09-26T13:09:02Z<p>I often run into the following:</p>
<pre><code>function foo() {
if ( something ) {
return;
} else {
do_something();
}
}
</code></pre>
<p>But it doesn't help telling them that the else is useless here. It has to be either</p>
<pre><code>function foo() {
if ( something ) {
return;
}
do_something();
}
</code></pre>
<p>or - depending on the length of checks that are done before do_something():</p>
<pre><code>function foo() {
if ( !something ) {
do_something();
}
}
</code></pre>
http://stackoverflow.com/questions/128150/finding-a-partner-for-a-for-profit-software-project/128157#1281574Answer by ComSubVie for Finding a partner for a for-profit software projectComSubVie2008-09-24T16:18:57Z2008-09-24T16:18:57Z<p>In the coffee shops near a university with a computer science department.</p>
http://stackoverflow.com/questions/128039/java-threads-priority-in-linux/128144#1281440Answer by ComSubVie for Java Threads priority in LinuxComSubVie2008-09-24T16:16:52Z2008-09-24T16:16:52Z<p>As far as I can remember it depends mostly on the used JVM. Some JVMs use real processes for each thread or threadgroup, so you can use the operationg systems tools to tune the priorities.</p>
http://stackoverflow.com/questions/126877/educational-usages-of-acceleration-sensors4Educational usages of acceleration sensorsComSubVie2008-09-24T12:37:37Z2008-09-24T12:54:52Z
<p>Hello!</p>
<p>I'm working in a higher school in Austria and I'm currently evaluation how acceleration sensors can be used to deepen fundamental understandings (physics, mathematics, electronics, software engineering, project management, user interface [iPhone]...) and achive better motivation of the students (for example by giving a far milestone like an autopilot).</p>
<p>However this doesn't seem to be a widely used idea; acceleration sensors are used somewhere at universities for different projects and are included in some modern hardware or gadgets (iPhone).</p>
<p>I'd like to know if there is somebody who knows about educational projects that use these sensors in any kind of subject?</p>
<p>thanks</p>
http://stackoverflow.com/questions/126797/is-there-a-style-guide-for-guis-somewhere/126844#1268444Answer by ComSubVie for Is there a style guide for GUI's somewhere?ComSubVie2008-09-24T12:28:58Z2008-09-24T12:28:58Z<p>There are lots of guides:</p>
<p><a href="http://developer.apple.com/documentation/UserExperience/Conceptual/AppleHIGuidelines/XHIGIntro/chapter_1_section_1.html" rel="nofollow">Apple Human Interface Guidelines</a></p>
<p><a href="http://developer.gnome.org/projects/gup/hig/" rel="nofollow">GNOME Human Interface Guidelines</a></p>
<p><a href="http://en.wikipedia.org/wiki/Human_interface_guidelines" rel="nofollow">Wikipedia: Human Interface Guidelines</a></p>
http://stackoverflow.com/questions/126680/algorithm-for-counting-the-number-of-unique-colors-in-an-image/126705#1267051Answer by ComSubVie for Algorithm for counting the number of unique colors in an imageComSubVie2008-09-24T12:00:12Z2008-09-24T12:00:12Z<p>That depends on what types of images you want to analyse. For 24 Bit images you will need up to 2MB of memory (since in the worst case you have to process each color). For this a bitmap would be the best idea (you have a 2 MB bitmap, where each bit corresponds to an color). This would be a good solution for pictues with a high color count which can be realized in O(#pixels). For 16 Bit images you would only need 8 kB for this bitmap using this technique.</p>
<p>However if you have pictures with not much colors it would be better to use something else. But then you would need some kind of check to indicate which algorithm you should use...</p>
http://stackoverflow.com/questions/82432/is-learning-assembly-language-worth-the-effort/82516#825160Answer by ComSubVie for Is learning Assembly Language worth the effort?ComSubVie2008-09-17T12:22:35Z2008-09-17T12:22:35Z<p>It depends on what you plan for your future and what you like to program.</p>
<p>On modern CPUs there are very much possibilities to improve program performance, which I think are to complex to learn, and current compilers do a pretty good job on optimizing code for specific CPU types.</p>
<p>However learning assembly might help you to get a better understandig of the used CPU, which might be a good idea to learn programming on small embedded CPUs (like the AVR architecture, or PICs). However even on these embedded systems modern (C) compilers do a pretty good job, so that in the most cases you will not get any better performance when you use assembly.</p>
<p>On the other side the assembly language is a nice low level programming concept which might help you get a different perspective to computer programming problems.</p>
<p>If you decide to learn the assembly language the architecture you choose depends mostly on your plans what you want to realise. But it might be a good idea to choose an architecture which has a good simulator or at least realtime debugging interface, so that you can see what your code does (and so that you can see the contents of the used processor registers).</p>
http://stackoverflow.com/questions/1870029/wireless-communication-avr-based-embedded-system-and-iphone/1870861#1870861Comment by ComSubVie on Wireless communication: AVR based embedded system and iPhoneComSubVie2009-12-09T13:55:13Z2009-12-09T13:55:13ZYou are right, the full BlueTooth stack is only available via the btstack project (<a href="http://code.google.com/p/btstack/" rel="nofollow">code.google.com/p/btstack</a>) for jailbroken iPhones. For the unbroken iPhone you need the "Made of iPod/iPhone" program to get access to the BlueTooth stack, which seems to need (since it is an NDA program, I couldn't find any useful information regarding the BlueTooth part) some special certified BlueTooth hardware (and you need to be a company to even apply for this program - which also prevents me from building a hardware extension for the iPhone).
So I guess WiFi is the only possible solution left...http://stackoverflow.com/questions/1870029/wireless-communication-avr-based-embedded-system-and-iphone/1873111#1873111Comment by ComSubVie on Wireless communication: AVR based embedded system and iPhoneComSubVie2009-12-09T13:49:47Z2009-12-09T13:49:47ZThanks for this answer! However, it is an 8-bit AVR.http://stackoverflow.com/questions/1870022/java-resultset-hasnext/1870090#1870090Comment by ComSubVie on Java ResultSet hasNext()ComSubVie2009-12-08T21:51:39Z2009-12-08T21:51:39ZI think this solution is better than mine, since it has a smaller runtime fingerprint. http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/237087#237087Comment by ComSubVie on What is your best programmer joke?ComSubVie2008-11-25T17:45:57Z2008-11-25T17:45:57ZI just thought about adding this myself. I wondered that it isn't on the front page :(http://stackoverflow.com/questions/40485/optimizing-conways-game-of-life/40529#40529Comment by ComSubVie on Optimizing Conway's 'Game of Life'ComSubVie2008-10-01T17:46:47Z2008-10-01T17:46:47ZThat's definitively a must-read book!http://stackoverflow.com/questions/133556/best-programming-novel-to-take-on-holiday/133611#133611Comment by ComSubVie on Best programming novel to take on holidayComSubVie2008-09-26T18:24:22Z2008-09-26T18:24:22ZThey have made a small TV series in Germany called "Ijon Tichy", see <a href="<a href="http://www.ijontichy.de/">www.ijontichy.de</a>" rel="nofollow">ijontichy.de/">www.ijontichy.de</a>/…</a>;, it's very entertaining when you understand german (with a big polish accent). I don't know if there is any translated version available...http://stackoverflow.com/questions/133556/best-programming-novel-to-take-on-holiday/133597#133597Comment by ComSubVie on Best programming novel to take on holidayComSubVie2008-09-25T14:22:21Z2008-09-25T14:22:21ZDon't forget Diamond Age! There's also a new book from Stephenson just released: Anathemhttp://stackoverflow.com/questions/132241/hidden-features-of-c/132274#132274Comment by ComSubVie on Hidden features of CComSubVie2008-09-25T14:00:35Z2008-09-25T14:00:35ZI don't understand this. I've added the link, it is displayed in the preview, but not in the final post...http://stackoverflow.com/questions/132241/hidden-features-of-c/132558#132558Comment by ComSubVie on Hidden features of CComSubVie2008-09-25T11:09:55Z2008-09-25T11:09:55ZThe combination of structs and unions is even more interesting - on embedded systems or low level driver code. An example is when you like to parse the registers of an SD card, you can read it in using union (1) and read it out using union (2) which is a struct of bitfields.http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/132548#132548Comment by ComSubVie on Good excuses NOT to use version controlComSubVie2008-09-25T11:00:03Z2008-09-25T11:00:03ZHere <i>every</i> code that was written as prototype or proof-of-concept is still running. For years. So I think there's no such thing as throw-away code.http://stackoverflow.com/questions/126877/educational-usages-of-acceleration-sensors/126895#126895Comment by ComSubVie on Educational usages of acceleration sensorsComSubVie2008-09-24T19:35:17Z2008-09-24T19:35:17ZThanks for your links! You're right, there are already some very cool implemetations of acceleromater based interactions, and I'm sure there is a lot more to come.http://stackoverflow.com/questions/126877/educational-usages-of-acceleration-sensors/126940#126940Comment by ComSubVie on Educational usages of acceleration sensorsComSubVie2008-09-24T19:34:09Z2008-09-24T19:34:09ZThanks for the answer! I didn't even think about the wii till now. Seems to be very interesting. I'll have to take a deeper look into this device...