User flitzwald - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T20:12:36Z http://stackoverflow.com/feeds/user/11811 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/743319/why-isnt-the-d-language-picking-up/743472#743472 21 Answer by flitzwald for Why isn't the 'D' language picking up? flitzwald 2009-04-13T09:43:28Z 2009-10-16T20:11:59Z <p>First of all: Most software developers I talk to have at least have heard of D and have it mentally connected to basically those properties that you mentioned in your question (Usually it's fast + the way C++ should have been implemented in the first place). This for itself is a level of success that 99 percent of all programming languages created will never reach.</p> <p>There are some reasons though why it's not in the same league with Java/Python/C#/Ruby/etc.</p> <ul> <li>The language itself is a nicely done - and sane - C++ successor. But it's not different enough from other static-type languages to really catch one's attention. It's enough for a friendly "ah, that's really nice", but not for "gee! I <em>have</em> to use this".</li> <li>There is no killer application that requires you to learn D. Something that an average Joe programmer wants to work with so badly that he goes through the hassle of picking up a new language.</li> <li>Dynamic programming languages such as JavaScript, Ruby and Python have taken over some big chunks of the language market, making it harder for compile-time-type-checking-languages to find an audience.</li> <li>The corporate world is to a large extent JVM-world. Java might get replaced as an application development language anytime soon but its successor will most probably run on the JVM - because it's a pretty mature and stable piece of software with a large community and huge library resources. Most new JVM-languages such as Scala are compatible with already-written Java code. </li> </ul> <p>And one last but very subjective point: I'm under the impression that the classical C/C++/Java-style-languages have fallen a little out of fashion in the part of the developer community that likes to check out new languages.</p> <p>But all that said, D looks really nice and seems to solve the problems it promises to solve in a solid and fast manner. No reason why it shouldn't find its niche.</p> <p>Greets Seb</p> http://stackoverflow.com/questions/1237368/how-do-you-test-your-interrupt-handling-module/1237873#1237873 0 Answer by flitzwald for How do you test your interrupt handling module? flitzwald 2009-08-06T09:28:01Z 2009-08-06T09:28:01Z <p>I'm not an embedded developer, so I don't know if this is possible, but how about decoupling the code that handles the interrupts from the callback-registration mechanism? This would allow you to write simulator code fireing interrupt-events as you like it... </p> http://stackoverflow.com/questions/1206839/regex-to-extract-elements-by-class-name/1206869#1206869 0 Answer by flitzwald for Regex to extract elements by class name flitzwald 2009-07-30T14:15:12Z 2009-07-30T14:15:12Z <p>Trying to solve this kind of problem with regular expressions is a recipe for desaster. If you're working on the server, parse the snippet with a fault-tolerant html parser (ie. hpricot for ruby) and validate against the dom. Same can be done on the client with el.innerHTML = "..."</p> http://stackoverflow.com/questions/1176528/overriding-modifying-rails-class-activeresource/1176576#1176576 2 Answer by flitzwald for Overriding/Modifying Rails Class (ActiveResource) flitzwald 2009-07-24T09:22:20Z 2009-07-24T09:22:20Z <p>First of all, this is an issue you should report to Rails' bugtracker: <a href="https://rails.lighthouseapp.com/projects/8994-ruby-on-rails/" rel="nofollow">https://rails.lighthouseapp.com/projects/8994-ruby-on-rails/</a></p> <p>When I have to hotfix minor things like these, I usually create an initializer file in RAILS_ROOT/config/initializers and reopen the class I intend to fix. </p> <pre><code>class ActiveResource::Base # your fix goes here end </code></pre> <p>This is called monkey patching and is somewhat controversial. But I personally consider it quite brutal to introduce a new level into the inheritance hierarchy that has no semantical meaning to my code.</p> http://stackoverflow.com/questions/204125/implementing-a-kvo-bindings-compliant-bridge-pattern-in-cocoa 3 Implementing a KVO/Bindings-Compliant Bridge-Pattern in Cocoa flitzwald 2008-10-15T09:12:58Z 2009-06-30T20:10:25Z <p>Hi folks,</p> <p>I'm trying to implement a simple object bridge in cocoa where the bridge object acts as a kvo/bindings-compliant drop in for some arbitrary other NSObject instance.</p> <p>Here is my problem (more details in the code below):</p> <p>A bridge object acts as a drop in for a Person-Object, with an NSString* property called <em>name</em> and an Address* property <em>address</em>. Binding to the keyPath "name" or "address" of the Bridge works nicely. Trouble starts when binding some object to the keyPath "address.street" of the bridge and a new Address-Object is set for Person's <em>address</em> property. That results in KVO-related exceptions that look like this:</p> <blockquote> <p><code>Cannot remove an observer &lt;NSKeyValueObservance 0x126b00&gt; for the key path "street" from &lt;Address 0x12f1d0&gt; because it is not registered as an observer</code></p> </blockquote> <p>This happens even though the bridge notices the change in the "address"-Property and emits a willChangeValueForKeyPath/didChangeValueForKeyPath tuple.</p> <p>The code below produces the the problem. It's self-contained objective-c code that can be saved in a file "BridgeDemo.m" and compiled run with</p> <pre><code>gcc -o test BridgeDemo.m -framework AppKit -framework Foundation; ./test </code></pre> <p>If you know a solution to this problem or can offer me a better approach solving the same problem you make me a <strong>very</strong> happy programmer!</p> <p>BridgeDemo.m:</p> <pre><code>#import &lt;Foundation/Foundation.h&gt; #import &lt;AppKit/AppKit.h&gt; /* --- Address ----------------------------------------- */ @interface Address : NSObject { NSString* street; NSNumber* zipCode; NSString* city; } @property(retain) NSString* street; @property(retain) NSNumber* zipCode; @property(retain) NSString* city; @end @implementation Address @synthesize street, zipCode, city; -(id)init { if( !( self = [super init] ) ) { return nil; } self.street = @"Elm Street"; self.zipCode = @"12345"; self.city = @"Crashington"; return self; } -(void) modifyStreet { self.street = @"Main Street"; } -(void)dealloc { [street release]; [zipCode release]; [city release]; [super dealloc]; } @end /* --- Person ----------------------------------------- */ @interface Person : NSObject { NSString* name; Address* address; } @property(retain) NSString* name; @property(retain) Address* address; @end @implementation Person @synthesize address, name; -(id)init { if( !( self = [super init] ) ) { return nil; } self.name = @"Tom"; self.address = [[Address new] autorelease]; return self; } - (void)modifyAddress { Address* a = [[Address new] autorelease]; a.street = @"Jump Street"; a.zipCode = @"54321"; a.city = @"Memleakville"; self.address = a; } - (void)dealloc { [address release]; [name release]; [super dealloc]; } @end /* --- Bridge ----------------------------------------- */ @interface Bridge : NSObject { NSMutableDictionary* observedKeys; NSObject* obj; } @property(retain) NSObject* obj; @end @implementation Bridge @synthesize obj; - (id)init { if( !( self = [super init] ) ) { return nil; } observedKeys = [NSMutableDictionary new]; return self; } - (void)forwardInvocation:(NSInvocation*)inv { [inv invokeWithTarget:obj]; } - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { return [obj methodSignatureForSelector:aSelector]; } - (void) observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context { NSLog( @"&gt;&gt;&gt;&gt; Detected Change in keyPath: %@", keyPath ); [self willChangeValueForKey:keyPath]; [self didChangeValueForKey:keyPath]; } -(id)valueForUndefinedKey:(NSString*)key { /* Register an observer for the key, if not already done */ if( ![observedKeys objectForKey:key] ) { [observedKeys setObject:[NSNumber numberWithBool:YES] forKey:key]; [obj addObserver:self forKeyPath:key options:NSKeyValueObservingOptionNew context:nil]; } return [obj valueForKey:key]; } - (void)dealloc { for( NSString* key in [observedKeys allKeys] ) { [obj removeObserver:self forKeyPath:key]; } [obj release]; [observedKeys release]; [super dealloc]; } @end /* --- MyObserver ------------------------------------ */ @interface MyObserver : NSObject { Address* address; NSString* street; } @property(retain) Address* address; @property(retain) NSString* street; @end @implementation MyObserver @synthesize street, address; -(void)dealloc { [street release]; [super dealloc]; } @end /* This works fine */ void testBindingToAddress() { NSLog( @"Testing Binding to 'address' --------------" ); NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; Bridge* b = [[Bridge new] autorelease]; b.obj = [Person new]; MyObserver* o = [[MyObserver new] autorelease]; [o bind:@"address" toObject:b withKeyPath:@"address" options:nil]; NSLog( @"Before modifyStreet: %@", o.address.street ); [[b valueForKey:@"address"] performSelector:@selector(modifyStreet)]; NSLog( @"After modifyStreet: %@", o.address.street ); [b performSelector:@selector(modifyAddress)]; NSLog( @"After modifyAdress: %@", o.address.street ); [pool drain]; } /* This produces an exception */ void testBindingToStreet() { NSLog( @"Testing Binding to 'address.street' --------------" ); NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; Bridge* b = [[Bridge new] autorelease]; b.obj = [Person new]; MyObserver* o = [[MyObserver new] autorelease]; [o bind:@"street" toObject:b withKeyPath:@"address.street" options:nil]; NSLog( @"Before modifyStreet: %@", o.street ); [[b valueForKey:@"address"] performSelector:@selector(modifyStreet)]; NSLog( @"After modifyStreet: %@", o.street ); [b performSelector:@selector(modifyAddress)]; NSLog( @"After modifyAdress: %@", o.street ); [pool drain]; } /* --- main() ------------------------------------ */ int main (int argc, const char * argv[]) { testBindingToAddress(); testBindingToStreet(); return 0; } </code></pre> http://stackoverflow.com/questions/946858/convert-syntax-highlighted-code-to-html-in-emacs 4 Convert syntax highlighted code to HTML in Emacs flitzwald 2009-06-03T20:01:10Z 2009-06-04T09:23:24Z <p>In TextMate there is a feature called "Create HTML from Document", which converts displayed code including syntax coloring to HTML/CSS for easy online publishing. I wonder if there is such a feature hidden in Emacs or maybe an extension that I could install to do that.</p> http://stackoverflow.com/questions/901272/can-i-fetch-records-from-mysql-database-using-jquery/901398#901398 2 Answer by flitzwald for Can I fetch records from MySql database using jQuery? flitzwald 2009-05-23T11:49:08Z 2009-05-23T11:49:08Z <p>Short answer: </p> <p>No, you can't do that out of the box. JavaScript code runs in the browser, the MySQL-Database on the server. Browser-Javascript cannot run any code directly on the server (pfewww! :).</p> <p>Long answer:</p> <p>Some Web-Development-Frameworks expose the underlying database-structure in a well-defined (sometimes RESTful) manner in json:</p> <p>In case of a hypothetical model 'User' in Ruby on Rails:</p> <p>The list of all users, when issued as GET request. Creates a new User, when issued as POST.</p> <pre><code>/users.json </code></pre> <p>Returns the User with the database-id 1, when issued as GET request. Updates the User with database-id 1 when issued as PUT-Request. Removes the object when issued as DELETE request.</p> <pre><code>/users/1.json </code></pre> <p>The returned json-code (JavaScript Object Notation) can easily be parsed using eval() in JavaScript. So here's a way to access your database using jQuery in semi-direct way :)</p> <p>Hope this helps</p> http://stackoverflow.com/questions/901357/nsstring-to-nsdata/901379#901379 11 Answer by flitzwald for NSString to Nsdata flitzwald 2009-05-23T11:34:10Z 2009-05-23T11:34:10Z <pre><code>NSString* str= @"teststring"; NSData* data=[str dataUsingEncoding:NSUTF8StringEncoding]; </code></pre> http://stackoverflow.com/questions/901281/optimizing-a-ruby-on-rails-project/901300#901300 2 Answer by flitzwald for Optimizing a Ruby on Rails Project flitzwald 2009-05-23T10:51:28Z 2009-05-23T10:51:28Z <p>In your environment.rb - File:</p> <pre><code> # Skip frameworks you're not going to use. To use Rails without a database, # you must remove the Active Record framework. config.frameworks -= [ :active_record, :active_resource, :action_mailer ] </code></pre> http://stackoverflow.com/questions/901273/how-to-select-second-td-in-detailsview-datarow/901297#901297 1 Answer by flitzwald for How to select second td in detailsview datarow? flitzwald 2009-05-23T10:47:47Z 2009-05-23T10:47:47Z <p>I'd recommend against selecting a field that happens to be the second in a row. A better approach would be to assign meaningful css classes to the fields and selecting those:</p> <pre><code>&lt;head&gt; &lt;style type="text/css" media="screen"&gt; td.form-value { background-color:red; } &lt;/style&gt; &lt;/head&gt; &lt;tr&gt; &lt;td class="form-label"&gt; Label: &lt;/td&gt; &lt;td class="form-value"&gt; ... &lt;/td&gt; &lt;/tr&gt; </code></pre> http://stackoverflow.com/questions/896648/resources-for-learning-emacs/896771#896771 0 Answer by flitzwald for Resources for learning Emacs flitzwald 2009-05-22T07:52:25Z 2009-05-22T07:52:25Z <p>Last week I purchased this Peepcode screencast and really liked it. It walks you through the basic features (editing, loading saving, buffers) but also dives into some advances topics, like programming emacs lisp: </p> <p><a href="http://peepcode.com/products/meet-emacs" rel="nofollow">http://peepcode.com/products/meet-emacs</a></p> http://stackoverflow.com/questions/896477/rails-design-coding-question/896502#896502 2 Answer by flitzwald for Rails design/coding question flitzwald 2009-05-22T05:40:38Z 2009-05-22T06:01:48Z <p>In ActiveRecord::Base there is a feature called scopes. A query being issued in a certain scope will be combined with this scope's find-options ie.:</p> <pre><code> class Person &lt; ActiveRecord::Base default_scope :order =&gt; 'last_name, first_name' end </code></pre> <p>Maybe this is a feature you want to look into?</p> http://stackoverflow.com/questions/875410/rails-how-to-not-include-some-db-attributes-in-model/875470#875470 1 Answer by flitzwald for rails: how to not include some db attributes in model flitzwald 2009-05-17T20:52:55Z 2009-05-17T20:52:55Z <p>You'd have to specify the columns explicitly via the find-option :select. However, storing models in the session is discouraged. How about storing just the object-id in the session, and holding the Model-Object itself in Rails.cache?</p> <p>Greets</p> <p>Seb</p> http://stackoverflow.com/questions/874526/which-keyword-of-your-language-would-you-like-to-get-rid-of/874549#874549 2 Answer by flitzwald for Which keyword of your language would you like to get rid of? flitzwald 2009-05-17T12:48:30Z 2009-05-17T12:48:30Z <p>In Javascript "with" must go. </p> http://stackoverflow.com/questions/846114/ruby-on-rails-relationships-one-to-many/846127#846127 0 Answer by flitzwald for Ruby On Rails Relationships - One to Many flitzwald 2009-05-10T21:19:21Z 2009-05-10T21:19:21Z <pre><code>class Politician &lt; ActiveRecord::Base has_and_belongs_to_many :tasks end class Task &lt; ActiveRecord::Base has_and_belongs_to_many :politicians end </code></pre> <p>What you need are 3 tables: <code>politicians, tasks</code> and <code>politicians_tasks</code> (having the two columns <code>politician_id</code> and <code>task_id</code>, no primary key)</p> <p>Hope this helps Seb</p> http://stackoverflow.com/questions/817287/ar-tojson-works-in-console-fails-in-browser/817723#817723 0 Answer by flitzwald for AR.to_json Works in Console, Fails in Browser flitzwald 2009-05-03T18:55:45Z 2009-05-03T18:55:45Z <p>Whenever code in tests or the console behaves different from production environment (which is a guess... you might be running your site in development mode), this calls for a load order issue. In production environment, all the models and controllers are preloaded, in other environments they are loaded lazily when needed. Start your console with <code>RAILS_ENV=production ./script/console</code> and see if you can reproduce the error this way. As cscotta mentioned, there are a couple of gems and librarys, that can interfere with .to_json, first to mention the functionality, that you get when you require 'json'. I personally ran into several issues with that.</p> <p>Hope this helps</p> <p>Seb</p> http://stackoverflow.com/questions/641126/posix-semaphores-on-mac-os-x-semtimedwait-alternative/817411#817411 2 Answer by flitzwald for POSIX Semaphores on Mac OS X: sem_timedwait alternative flitzwald 2009-05-03T16:15:16Z 2009-05-03T16:15:16Z <p>Have you considered using the apache portable runtime? It's preinstalled on every Mac OS X Box and many Linux distros and it comes with a platform neutral wrapper around thread concurrency, that works even on MS Windows:</p> <p><a href="http://apr.apache.org/docs/apr/1.3/group%5F%5Fapr%5F%5Fthread%5F%5Fcond.html" rel="nofollow">http://apr.apache.org/docs/apr/1.3/group__apr__thread__cond.html</a></p> <p>Greets Seb </p> http://stackoverflow.com/questions/816465/cost-benefit-of-multi-threaded-text-processing/816501#816501 1 Answer by flitzwald for Cost/benefit of multi-threaded text processing flitzwald 2009-05-03T07:08:32Z 2009-05-03T07:08:32Z <p>As you pointed out yourself, on a single processor multithreading will not bring a huge performance boost, but will come with a stability and complexity penalty.</p> <p>On-the-fly Syntax-coloring is a hard problem, stuffed with possibilites for optimization:</p> <ul> <li>Are you applying a bunch of Regexes on the whole text? (bad) or do you parse the text to be held in an efficient datastructure like an ast? </li> <li>Are you limiting the colorized painting to the visible area?</li> </ul> <p>Greets</p> <p>Seb</p> http://stackoverflow.com/questions/814687/most-embarrassing-moment-during-a-project-presentation/814690#814690 7 Answer by flitzwald for Most embarrassing moment during a project presentation? flitzwald 2009-05-02T11:28:53Z 2009-05-02T11:28:53Z <p>Do it like Steve Jobs:</p> <p>Smile at the audience and say: "It's awesome when it works."</p> <p>Greets Seb</p> http://stackoverflow.com/questions/746435/ruby-deleting-subdirectories-that-contain-only-a-specific-directory/746514#746514 0 Answer by flitzwald for Ruby Deleting subdirectories that contain only a specific directory flitzwald 2009-04-14T06:22:15Z 2009-04-14T06:29:25Z <p>This would do the job... however it doesn't take into consideration, that the it's own run could create new leaves</p> <pre><code>#!/usr/bin/env ruby require 'fileutils' def remove_leaves(dir=".") Dir.chdir(dir) do entries=Dir.entries(Dir.pwd).reject { |e| e=="." or e==".."} if entries.size == 1 and entries.first == ".svn" puts "Removing #{Dir.pwd}" FileUtils.rm_rf(Dir.pwd) else entries.each do |e| if File.directory? e remove_leaves(e) end end end end end remove_leaves </code></pre> <p>Greets Seb</p> http://stackoverflow.com/questions/704485/how-to-update-several-working-copies-from-one-location/704534#704534 1 Answer by flitzwald for How to update several working copies from one location? flitzwald 2009-04-01T08:10:17Z 2009-04-01T08:10:17Z <p>Here's what we do:</p> <p>The path to our rails-app contains a symbolic link. When updating our app we completely check out the repo on all the servers to a new location and run the unit tests. When all update-processes have successfully finished their job, we update the symbolic link - almost simultaneously.</p> <p>Check out <a href="http://www.capify.org" rel="nofollow">http://www.capify.org</a> for a deployment-strategy of this kind</p> http://stackoverflow.com/questions/616776/why-am-i-getting-this-cache-money-error/665839#665839 0 Answer by flitzwald for Why am I getting this Cache-money error? flitzwald 2009-03-20T12:00:32Z 2009-03-20T12:00:32Z <p>I had a similar issue after updating to Rails 2.3. I still had the line</p> <pre><code>config.action_controller.session_store = :active_record_store </code></pre> <p>in my environment.rb I got it fixed by replacing it with</p> <pre><code>ActionController::Base.session_store = :active_record_store </code></pre> <p>in an initializer file.</p> http://stackoverflow.com/questions/552356/embarrassing-programming-languages/552374#552374 1 Answer by flitzwald for embarrassing programming languages flitzwald 2009-02-16T05:58:47Z 2009-02-16T05:58:47Z <p>10 PRINT "BASIC V2.0"</p> <p>20 GOTO 10</p> <p>Though... every /real/ programming language - with real as in "was used by people once" had it's legitimation. Today I'd say, that Perl's syntax is embarrassingly bad, but 5 years ago, I thought it was the best tool for the job.</p> http://stackoverflow.com/questions/550494/beginning-jquery-help/550555#550555 0 Answer by flitzwald for Beginning jQuery help flitzwald 2009-02-15T09:03:43Z 2009-02-15T09:03:43Z <p>$(#content) &lt;&lt; This is definately a problem. Selectors must be strings, so $("#content") would be correct.</p> http://stackoverflow.com/questions/549770/i-get-missing-these-required-gems-but-gems-are-installed/549931#549931 2 Answer by flitzwald for I get "Missing these required gems", but gems are installed flitzwald 2009-02-14T22:52:33Z 2009-02-14T22:52:33Z <p>This railswiki-entry gives lots of insight into handling of multiple gem-repositories. Maybe you find a clue there that solves your problem. Hope it helps</p> <p><a href="http://wiki.rubyonrails.org/rails/pages/HowToUseMultipleGemRepositories" rel="nofollow">http://wiki.rubyonrails.org/rails/pages/HowToUseMultipleGemRepositories</a></p> http://stackoverflow.com/questions/162542/performing-ajax-delete-operations-restfully-in-rails/162612#162612 2 Answer by flitzwald for Performing AJAX delete operations restfully in rails flitzwald 2008-10-02T14:32:28Z 2008-10-02T14:32:28Z <p>From my code:</p> <pre><code>&lt;%= link_to_remote "Delete", :url =&gt; post_url(post), :method =&gt; :delete %&gt; </code></pre> http://stackoverflow.com/questions/159221/how-do-i-create-a-bundle-of-reusable-code-in-xcode/159403#159403 -3 Answer by flitzwald for How do I create a bundle of reusable code in Xcode? flitzwald 2008-10-01T19:49:58Z 2008-10-01T19:49:58Z <p>The short and depressing answer is: You can't.</p> <ol> <li>There is no framework-Project Type for the iPhone platform</li> <li>There <em>is</em> a target-type "static library" for the iPhone, but out-of-the-box it can't be shared between projects</li> <li>Even if there was a framework-Project type for the iPhone platform, you'd still be stuck, since you need to link against different frameworks depending on the target platform (include UIKit/UIKit.h for the iPhone, include Cocoa/Cocoa.h for Cocoa)</li> </ol> <p>The only thing you <em>can</em> do is to keep your shared code in a separate directory, #include the correct headers by preprocessor-macros, and build static library targets in your applications by hand.</p> <p>Greets Seb</p> http://stackoverflow.com/questions/1176528/overriding-modifying-rails-class-activeresource/1176576#1176576 Comment by flitzwald on Overriding/Modifying Rails Class (ActiveResource) flitzwald 2009-07-28T06:48:06Z 2009-07-28T06:48:06Z initializer files are in no way special. Their content just gets executed after the environment has been loaded. In Ruby, nothing keeps you from reopening a class and fiddle around with private parts. A methods visibility is a pretty superficial concept in Ruby. You can for example call a private method on an object with obj.send(:private_method, ... ) http://stackoverflow.com/questions/817414/need-help-to-solve-window-opening-problem Comment by flitzwald on Need help to solve Window Opening Problem. flitzwald 2009-05-03T16:24:37Z 2009-05-03T16:24:37Z You better post the code these warnings refer to... http://stackoverflow.com/questions/616776/why-am-i-getting-this-cache-money-error/665839#665839 Comment by flitzwald on Why am I getting this Cache-money error? flitzwald 2009-03-21T10:14:54Z 2009-03-21T10:14:54Z Unsure :(. What I can say is that the session_store= ... -line is no longer to be found in environment.rb-Files generated with Rails 2.3 and the 2.3-release notes recommend the above notation