User cranley - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T15:58:30Z http://stackoverflow.com/feeds/user/10308 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1584026/google-app-engine-needs-index-error/1589927#1589927 0 Answer by cranley for Google App Engine Needs Index Error cranley 2009-10-19T17:10:13Z 2009-10-19T17:10:13Z <p>I believe you'll need to add the index to your app.yaml file. Also, it will take some time to generate the index when you push to AppEngine, as your request to build indexes will simply be thrown into a job queue along with everybody else. </p> http://stackoverflow.com/questions/1441388/account-strategies-on-new-social-enabled-sites 2 Account Strategies on New Social Enabled Sites cranley 2009-09-17T21:14:31Z 2009-09-21T08:18:11Z <p>So I'm in the midst of creating a Facebook Connect enabled site. The site in question will leverage your social graph - as defined by your facebook account - to do social things (what is really not important here). Here's the big question I have:</p> <p>Are people still rolling their own authentication heuristic when using something like Facebook Connect? That is, are newer (FBConnect) sites today providing only FBConnect as an authentication strategy, or are they pairing it with other auth strategies (such as Google Auth, Open ID, etc)? What do you think is the best way to go? With Facebook having over 300,000,000 users now, is having 1 authentication strategy (FBConnect) enough? Or is it proper netiquette to provide users other means?</p> http://stackoverflow.com/questions/1441388/account-strategies-on-new-social-enabled-sites/1445331#1445331 1 Answer by cranley for Account Strategies on New Social Enabled Sites cranley 2009-09-18T15:36:54Z 2009-09-18T15:36:54Z <p>Some of the references I have been looking at today:</p> <p><a href="http://www.kenburbary.com/2009/08/five-reasons-companies-should-be-integrating-social-media-with-facebook-connect/" rel="nofollow">http://www.kenburbary.com/2009/08/five-reasons-companies-should-be-integrating-social-media-with-facebook-connect/</a></p> <p>Increased Registration - Data from Facebook states that sites that use Facebook Conect as an alternate to account registration have seen a 30-300% increase in registration on their sites. • Citysearch.com – Daily site registrations have tripled in the 4 months since Facebook Connect testing began • Huffingtonpost.com – Since integrating with Facebook Connect, more than 33% of their new commentor registrations come through Facebook • Cbsinsider.com – Over 85% of all new user registrations are coming from Facebook Connect</p> <p><a href="http://www.simtechnologies.net/facebook-connect-integration.php" rel="nofollow">http://www.simtechnologies.net/facebook-connect-integration.php</a></p> <p>"according to the current statistics using facebook connect increases 30-40% user traffic as compared to non-facebook connect websites."</p> <p><a href="http://wiki.developers.facebook.com/index.php/Connect/Authentication%5Fand%5FAuthorization" rel="nofollow">http://wiki.developers.facebook.com/index.php/Connect/Authentication%5Fand%5FAuthorization</a></p> <p>Our research has shown that sites that implement Facebook Connect see user registration rates increase by 30 - 200%.</p> <p>No Need to Create Separate Accounts In general, it's not a good practice to force a new user to create a separate account when registering on your site with Facebook Connect. You'll have the user's Facebook account information, and can create a unique identifier on your system for that user. Just make sure you understand what Facebook user data you can store, or simply cache for 24 hours. See Storable Information for details.</p> <p>If the user ever deactivates his or her Facebook account, you have a chance to contact the user to request the user create a new account on your site. When a user deactivates his or her account, we ping your account reclamation URL to notify you of the deactivation. Then Facebook sends the user an email regarding the deactivation. If the user has connected accounts with any Facebook Connect sites, and if your site has specified an account reclamation URL, the email will contain a section with your application logo, name, and reclamation link, in addition to an explanation about the link's purpose. For more information, see Reclaiming Accounts.</p> <p><a href="http://www.chrisbrogan.com/how-facebook-connect-points-the-way-towards-velvet-rope-networks/" rel="nofollow">http://www.chrisbrogan.com/how-facebook-connect-points-the-way-towards-velvet-rope-networks/</a></p> <p>The Drawbacks Though there are advantages to using Facebook Connect for integration, there are some drawbacks, mostly from the marketer’s point of view. If you build out a social network project using Facebook Connect, Facebook gets all the information and you get none. You don’t get a database of users. You don’t get a way to message people participating in your event, except for “in stream,” the way everyone else is using the app. You don’t have any sense of demographics, nor any control abilities to block trolls or other unwanted types.</p> <p>Crystal Beasley "All of the FB Connect sites we have built so far have incorporated "standard" accounts as well, even with the added complexity of supporting dual login methods."</p> http://stackoverflow.com/questions/76364/what-is-the-single-most-effective-thing-you-did-to-improve-your-programming-skill/76466#76466 309 Answer by cranley for What is the single most effective thing you did to improve your programming skills? cranley 2008-09-16T20:16:41Z 2009-09-12T15:19:07Z <p>In no specific order...</p> <ol> <li><p>learning other frameworks/languages, and seeing how they do things, and compare that to stuff that I already know</p></li> <li><p>reading about patterns, best practices, and then examining my old stuff and applying those patterns where necessary</p></li> <li><p>pair programming</p></li> <li><p><strong>working with people far smarter than I</strong></p></li> <li><p><strong>Always listening to what others have to say, regardless if they're junior, intermediate, senior or guru. title means shit all</strong></p></li> <li><p>Disagreeing with everything Joel says. ;)</p></li> </ol> http://stackoverflow.com/questions/151011/improving-as-a-coder-with-respect-to-design/151138#151138 2 Answer by cranley for Improving as a coder with respect to design. cranley 2008-09-29T23:12:36Z 2008-10-01T17:44:47Z <p>There are a lot of answers to your question, but I'll point out what I think are key basics.</p> <ol> <li><p>Keep it simple. It should only do what it needs to do, and it should do it well. (Test Driven Development can really help in this regard... TDD is a great habit to get into)</p></li> <li><p>Understand the <em>business</em> problem that you're trying to solve. Too often I've seen jr. programmers get so wrapped up in the technical side they forget what the business problem is - and this often leads to horrifically complex solutions that are unnecessary.</p></li> <li><p>Design in a group, or get somebody far smarter than you to review your design. If you're the smartest one there, than get a new job.</p></li> <li><p>Keep in mind that nothing is written in stone. Business requirements and strategies change over time, so will your application. Allow it to grow... which leads me to the following 2 key points</p></li> <li><p>Buy this book. Seriously, just buy it. It's simple and can have a dramatic effect on how you approach your design. <a href="http://rads.stackoverflow.com/amzn/click/0596007124" rel="nofollow">Head First Design Patterns</a></p></li> <li>Focus on the principles, not the technology.</li> </ol> http://stackoverflow.com/questions/151024/how-can-i-upgrade-the-console-version-of-vim-on-os-x/151101#151101 3 Answer by cranley for How can I upgrade the *console* version of vim on OS X? cranley 2008-09-29T22:57:39Z 2008-09-29T22:57:39Z <p>This may sound stupid, but are you copying the vim binary to /usr/bin? by default, the "vim" path is /usr/bin/vim. If you compile from source, you'll likely need to either copy the vim binary to /usr/bin/vim (thus overwriting the original vim), or launch the compiled version via absolute path (eg. ~/vim-checkout/build/vim).</p> <p>that's just a guess, however. I can't see it being anything more than that.</p> http://stackoverflow.com/questions/127914/compact-framework-any-finger-friendly-gui/129705#129705 1 Answer by cranley for Compact Framework : any Finger Friendly GUI ? cranley 2008-09-24T20:23:18Z 2008-09-24T20:23:18Z <p>I'm not entirely sure what you're asking here... Windows Mobile 6.0 Pro <em>is</em> touch-screen enabled, so you should simply have to create your project targeting the Windows Mobile 6.0 Pro (note, however, that your application will not be compatible with Windows Mobile 6.0 Standard devices).</p> http://stackoverflow.com/questions/103575/wpf-validation-not-firing-on-first-lostfocus-of-the-textbox/103641#103641 2 Answer by cranley for WPF Validation Not Firing on First LostFocus of the TextBox cranley 2008-09-19T16:50:52Z 2008-09-19T16:50:52Z <p>Unfortunately this is by design. WPF validation only fires if the value in the control has changed. </p> <p>Unbelievable, but true. So far, WPF validation is the big proverbial pain - it's terrible. </p> <p>One of the things you can do, however, is get the binding expression from the control's property and manually invoke the validations. It sucks, but it works. </p> http://stackoverflow.com/questions/103480/iphone-programming-impressions-opinions/103594#103594 4 Answer by cranley for iPhone programming - impressions, opinions? cranley 2008-09-19T16:45:09Z 2008-09-19T16:45:09Z <p>I'm in the same boat as you (somewhat). I've been developing in C# for 7 years, ever since .NET 1.0. Over the past couple weeks I've been teaching myself Cocoa and Objective-C. Here are my impressions (note for note with yours)</p> <ul> <li><p>Agreed in that clutter can be a problem. I tend to use Spaces heavily when developing in XCode (put XCode in one space, Interface Builder in another space, Instruments in a third space). If you don't have Leopard (and thus, no spaces), then use Command-H to hide your active window. Using that tends to clean things up quite a bit (however it'd be nice if you could command-h automagically the current window when command-tab'ing to another app).</p></li> <li><p>I'm liking XCode more and more. I hate Visual Studio - I find it to be unstable, slow, and well, just kind of a crappy IDE. Comparatively I've found XCode to be fast, stable, and I like how it organizes and filters your files. I'm not too up on my XCode shortcuts, but I'm hoping there's a way I can quick-switch from one class to another (similar to ctrl +n shortcut in ReSharper). Intellisense could be better with regards to how it displays to the user, but I really like how it essentially creates a template and you can ctrl + / to jump to the next argument in a message.</p></li> <li><p>I'm hating the documentation in XCode. The help system sucks, and for whatever reason it <em>never</em> finds what I'm searching for. I end up just googling for anything I need to know... I hope they improve the documentation. This is my biggest beef right now.</p></li> <li><p>Not quite there yet, as I'm going through the full Cocoa framework for Mac desktops. So far I'm really, really liking what I see. One thing I will say is that it would be nice if the iPhone SDK allowed for garbage collection...</p></li> <li><p>Objective-C - I've never used it, this is my first foray into it. At first I was kinda wierded out by the syntax and the square brackets for messaging, but it's really growing on me. It's so quick to skim a method and see the message calls that method makes. The more I use it, the more Objective-C just feels nice... however templating/generics would be a welcome addition to the language.</p></li> </ul> <p>All in all, my foray into Mac development has been enjoyable, and I'm excited to start working (today! yay!) on some actual mac/iphone projects.</p> http://stackoverflow.com/questions/77503/c-datatype-for-large-sorted-collection-with-position/77588#77588 1 Answer by cranley for C# Datatype for large sorted collection with position? cranley 2008-09-16T21:54:19Z 2008-09-16T21:54:19Z <p>System.Collections.Specialized.StringCollection allows you to add a range of values and, using the .IndexOf(string) method, allows you to retrieve the index of that item.</p> <p>That being said, you could likely just load up a couple of byte[] from a filestream and do byte comparison... don't even worry about loading that stuff into a formal datastructure like StringCollection or string[]; if all you're doing is checking for differences, and you want speed, I would wreckon byte differences are where it's at.</p> http://stackoverflow.com/questions/75713/wpf-cant-databind-to-an-interface/77391#77391 1 Answer by cranley for WPF Can't Databind to an Interface? cranley 2008-09-16T21:36:48Z 2008-09-16T21:36:48Z <p>We bind to almost nothing but Interfaces in our project, all without problem. The problem you're experiencing is due to entlib... but I'm not familiar enough with entlib to help you there. WPF can, however, bind to Interfaces.</p> http://stackoverflow.com/questions/76864/can-i-alter-how-types-are-resolved-and-instantiated-in-net/76926#76926 0 Answer by cranley for Can I alter how types are resolved and instantiated in .NET? cranley 2008-09-16T20:51:41Z 2008-09-16T20:51:41Z <p>Will, can you give an example of what the XML is like, and how it got to XML? Is it simply an xml-serialized object that you want to deserialize (rehydrate)? Or is it a description of a Type that you want to create?</p> <p>I just need a bit of context here to get my head around your dilemma.</p> http://stackoverflow.com/questions/76522/should-my-c-net-team-migrate-to-windows-presentation-foundation/76816#76816 15 Answer by cranley for Should my C# .Net team migrate to Windows Presentation Foundation? cranley 2008-09-16T20:42:29Z 2008-09-16T20:42:29Z <p>We are just wrapping up a project in which myself and 4 others developed a rather successful, distributed enterprise app. We started using Win32 and then switched to WPF after the first iteration to meet the demands of our usability expert. Here is my experience.</p> <p>WPF has some really, really great features. In general, it makes the really hard things trivial (such as creating listboxes that show rich presentation data, such as images mixed with tables, copy, etc.), but in turn can make the "this used to be so easy in Win32" painfully frustrating. I've been working in WPF for 6 months now, and I still find databinding a combobox to an XML dataprovider a dreaded experience.</p> <p>As I eluded to above, WPF has some great and not-so-great binding. I love how you can bind to an xml document or inline-fragment using XPath, but I hate how you can only use the built in binding validations if your binding is two-way (and I doubly hate how you can't force the built in binding validations to pass user input back to the object, even if the data falls outside the range of some business rule).</p> <p>WPF has a huge learning curve. It's not even a curve - it's a wall. It's a rough go. It's a completely different way of working with windows presentation, and, for me anyways, it required a lot of reading and playing before I started to feel somewhat comfortable. It's not the easiest thing in the world, but it allows you to do some incredibly powerful stuff (eg. In our project i created a form engine that creates full fledged XAML forms from XML using about 300 lines of XSLT - complete with full binding and validation).</p> <p>Overall, I'm extremely satisfied that we chose XAML, despite the learning curve, the somewhat buggy nature of it all, and some of the deep frustrations... the positives have far outweighed the negatives and it allowed us to do things I didn't think were possible without an enormously heavy hit to performance.</p> <p>If you decide to go the route of WPF, I would highly recommend these 2 books:</p> <ul> <li><p>Windows Presentation Foundation Unleashed, by Adam Nathan is a great intro, with full colour! It reads like a blog and gives you a great great intro - <a href="http://rads.stackoverflow.com/amzn/click/0672328917" rel="nofollow">http://www.amazon.ca/Windows-Presentation-Foundation-Unleashed-WPF/dp/0672328917/ref=pd_ys_iyr3</a></p></li> <li><p>Programming Wpf: Building Windows Ui with Windows Presentation Foundation, by Chris Sells. More detail and a great book to accompany the WPF Unleashed - <a href="http://rads.stackoverflow.com/amzn/click/0596510373" rel="nofollow">http://www.amazon.ca/Programming-Wpf-Building-Presentation-Foundation/dp/0596510373/ref=pd_ys_iyr4</a></p></li> </ul> <p>Good luck!</p> http://stackoverflow.com/questions/76595/soap-or-rest/76635#76635 0 Answer by cranley for SOAP or REST cranley 2008-09-16T20:29:16Z 2008-09-16T20:29:16Z <p>It's a good question... I don't want to lead you astray, so I'm open to other people's answers as much as you are. For me, it really comes down to cost of overhead and what the use of the API is. I prefer consuming web services when creating client software, however I don't like the weight of SOAP. REST, I believe, is lighter weight but I don't enjoy working with it from a client perspective nearly as much.</p> <p>I'm curious as to what others think.</p> http://stackoverflow.com/questions/76499/what-is-your-favorite-use-of-resharper/76592#76592 4 Answer by cranley for What is your favorite use of Resharper? cranley 2008-09-16T20:26:02Z 2008-09-16T20:26:02Z <p>for me it's the shortcuts... specifically</p> <ol> <li><strong>ctrl b</strong> - Navigates to declaration/definition</li> <li><strong>ctrl alt b</strong> - Navigates to inheritor (eg. <strong>ctrl alt b</strong> on an abstract method)</li> <li><strong>ctrl n</strong> - open a class/interface</li> <li><strong>ctrl shift n</strong> - open a file</li> <li><strong>ctrl alt F7</strong> - finds all usages</li> </ol> <p>As for killer features, Resharper's NUnit Runner is worth the cost. Also, file templating and the code snippet editor are all pretty fantastic. I've had and have upgraded my resharper license since version 1.0... I can't live without it.</p> http://stackoverflow.com/questions/76467/what-programming-screencasts-podcast-resources-do-you-know/76496#76496 2 Answer by cranley for What programming screencasts/podcast resources do you know? cranley 2008-09-16T20:19:27Z 2008-09-16T20:19:27Z <p>Software Engineering podcast is pretty good - <a href="http://www.se-radio.net/" rel="nofollow">http://www.se-radio.net/</a></p> http://stackoverflow.com/questions/67299/is-unit-testing-worth-the-effort/67611#67611 3 Answer by cranley for Is Unit Testing worth the effort? cranley 2008-09-15T22:27:34Z 2008-09-15T22:27:34Z <p>In short - yes. They are worth every ounce of effort... to a point. Tests are, at the end of the day, still code, and much like typical code growth, your tests will eventually need to be refactored in order to be maintainable and sustainable. There's a tonne of GOTCHAS! when it comes to unit testing, but man oh man oh man, nothing, and I mean NOTHING empowers a developer to make changes more confidently than a rich set of unit tests.</p> <p>I'm working on a project right now.... it's somewhat TDD, and we have the majority of our business rules encapuslated as tests... we have about 500 or so unit tests right now. This past iteration I had to revamp our datasource and how our desktop application interfaces with that datasource. Took me a couple days, the whole time I just kept running unit tests to see what I broke and fixed it. Make a change; Build and run your tests; fix what you broke. Wash, Rinse, Repeat as necessary. What would have traditionally taken days of QA and boat loads of stress was instead a short and enjoyable experience.</p> <p>Prep up front, a little bit of extra effort, and it pays 10-fold later on when you have to start dicking around with core features/functionality. </p> <p>I bought this book - it's a Bible of xUnit Testing knowledge - tis probably one of the most referenced books on my shelf, and I consult it daily: <a href="http://rads.stackoverflow.com/amzn/click/0131495054" rel="nofollow" title="xUnit Test Patterns">link text</a></p> http://stackoverflow.com/questions/1933/how-do-you-beat-procrastination/67584#67584 3 Answer by cranley for How do you beat procrastination? cranley 2008-09-15T22:20:09Z 2008-09-15T22:20:09Z <p>I haven't been in school for quite some time, so the only procrastination type experience i have right now has to do with real-world job-like procrastination, and I've found defeating it pretty easy in my current environment.</p> <p>i) Make a list of all the items you need to complete. Typically, at the start of an iteration, I have about 20 of these tasks.</p> <p>ii) Calculate how many days you have between now and your deadline.</p> <p>iii) calculate how much work you have to do everyday to complete all your items in time to meet the deadline.</p> <p>I know it sounds trivial, but man, there aren't a whole lotta things that keep me more motivated than seeing that I have to put in an ever-increasing amount of effort on a daily basis if I continue to beat the dog in order to make my deadline. It's simple, and it scares the piss outta me. </p> http://stackoverflow.com/questions/76364/what-is-the-single-most-effective-thing-you-did-to-improve-your-programming-skill/76466#76466 Comment by cranley on What is the single most effective thing you did to improve your programming skills? cranley 2009-10-19T17:14:35Z 2009-10-19T17:14:35Z I don't cart-blanche disagree with everything Joel says, I think much of the time he has some interesting things to say. My comment was tongue in cheek. There's a lot of stuff that I agree with when it comes to Joel, but about once a month he makes me shake my head and ask &quot;What? Are you serious?!&quot;. Which I love, as I find those the most challenging things that force me to really check my position and what I believe. http://stackoverflow.com/questions/1441388/account-strategies-on-new-social-enabled-sites/1450216#1450216 Comment by cranley on Account Strategies on New Social Enabled Sites cranley 2009-09-20T19:10:14Z 2009-09-20T19:10:14Z I hear ya, unfortunately due to the FB Connect Terms of Service, we are not allowed to slurp data in via their API and permanently store it (we can only cache it for up to 24 hours). They also frown upon pre-populating fields with data slurped in via their API. It's a real pain. That being said, I still think you're probably on the right track. http://stackoverflow.com/questions/1441388/account-strategies-on-new-social-enabled-sites/1441480#1441480 Comment by cranley on Account Strategies on New Social Enabled Sites cranley 2009-09-17T21:43:31Z 2009-09-17T21:43:31Z Yea, I had tied into MySpace for a bit as well, but the developer story was so terrible, and the typical demographic on mySpace doesn't match up with our demographic (plus, MySpace numbers have plateaued for the past year, whereas FB has tripled in users), so I decided to drop them. I'm kinda leaning towards what you're saying... the big question is account linking and merging of data (and hopefully being able to avoid that) http://stackoverflow.com/questions/76364/what-is-the-single-most-effective-thing-you-did-to-improve-your-programming-skill/76466#76466 Comment by cranley on What is the single most effective thing you did to improve your programming skills? cranley 2008-10-01T17:51:40Z 2008-10-01T17:51:40Z @Zizzencs - that's a good question and I have a simple answer (which is, admittedly, nerve wracking and difficult to implement): Get a new job. We're hiring, if you're interested. ;) (www.vendasta.com) http://stackoverflow.com/questions/151011/improving-as-a-coder-with-respect-to-design/151138#151138 Comment by cranley on Improving as a coder with respect to design. cranley 2008-10-01T17:45:52Z 2008-10-01T17:45:52Z holy crap... I can't get think linking to work despite using the visual tools.... sorry guys. Ridiculous. http://stackoverflow.com/questions/103480/iphone-programming-impressions-opinions/103629#103629 Comment by cranley on iPhone programming - impressions, opinions? cranley 2008-09-19T16:56:18Z 2008-09-19T16:56:18Z I agree with your App Store sentiments... I'm hoping that when Android is released that Apple is forced to loosen up on their iPhone application distribution monopoly... http://stackoverflow.com/questions/76364/what-is-the-single-most-effective-thing-you-did-to-improve-your-programming-skill/76466#76466 Comment by cranley on What is the single most effective thing you did to improve your programming skills? cranley 2008-09-19T16:54:17Z 2008-09-19T16:54:17Z Bill- ayup. He never ceases to get a reaction from me... I love to hate him, and hate to love him. http://stackoverflow.com/questions/103474/adding-net-webservice-references Comment by cranley on Adding .net Webservice references cranley 2008-09-19T16:33:49Z 2008-09-19T16:33:49Z What are the actual differences in output? If is it just that one is strict off while the other is on?