User martinsb - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T04:36:59Z http://stackoverflow.com/feeds/user/837 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/838765/openid-authentication-from-an-installed-application 1 OpenID authentication from an installed application martinsb 2009-05-08T08:19:48Z 2009-05-09T03:33:01Z <p>Hello,</p> <p>I'm currently planning a new web project. Clients are going to connect using a regular web browser and, in case of regular java-enabled cell phones, j2me client. I would really like to make use of the OpenID authentication. In case of regular web browser things are pretty straightforward. However, I am really not sure about installed applications (such as j2me client installed on a mobile device) - regular OpenID authentication is performed by entering username/password on a webpage of particular OpenID provider - which is quite a limitation :)</p> <p>Has anyone coped with such a situation? Is it possible to create authentication mechanism to the site that uses OpenID from a mobile j2me client?</p> <p>Currently, I think of solution that users who would like to connect from their mobiles download necessary j2me application from the server web site after they have authenticated themselves (regular browser authentication). The mobile client app could be assembled dynamically on the server with the SSL certificate embedded that is associated with particular logged in OpenID user. After that, j2me client could authenticate to the server without entering any username/password. The data that is going to be stored on the server is not THAT sensitive - considering cases of mobile phone thefts etc.</p> <p>Can anybody come up with a better solution?</p> http://stackoverflow.com/questions/293590/dynamically-include-js-files-from-zendcontrolleraction/293722#293722 0 Answer by martinsb for Dynamically include .js files from Zend_Controller_Action? martinsb 2008-11-16T09:22:45Z 2008-11-16T09:22:45Z <p>Sure, you could do like @Bill Karwin described.</p> <p>But if you would like to do it really nicely, you need template inheritance - like it is implemented in Django framework for Python for instance. There are some extensions for Zend Framework as well, take a look at <a href="http://www.beberlei.de/calypso/" rel="nofollow">Calypso</a>.</p> http://stackoverflow.com/questions/274032/ajax-jsp-html-vs-applets/277462#277462 1 Answer by martinsb for AJAX/jsp/HTML vs Applets martinsb 2008-11-10T09:52:48Z 2008-11-10T09:52:48Z <p>Java applets ARE solid, stable, supported technology, even at the end of the year 2008. There are many things that could be better accomplished by using applets instead of AJAX or Flash/Flex - for instance, displaying MANY interactive objects or other interactive graphics-intensive tasks. Why not flash or flex? Well, it depends, Java (and inherently Java Applets) has many great libraries that could be reused - for example, in context of graphics, <a href="http://xmlgraphics.apache.org/batik/" rel="nofollow">Apache Batik</a> comes into mind first.</p> <p>I think that applets are so loathed technology mainly because of bad deployment. Read <a href="http://depth-first.com/articles/2008/02/20/demystifying-java-applets-part-1-cross-browser-standards-compliant-pure-html-deployment-using-the-object-tag" rel="nofollow">this article</a> (including the other parts) for explanation if interested.</p> <p>Of course, applets have well-known downsides. The most obvious one - it is not installed on an average Windows-based computer by default. Firstly, that is not convenient for your visitor to install JRE with browser plugin and, moreover, your service will not be accessible by user that has a (in Windows terms) "limited" account.</p> <p>But, at last answering your question: it depends on your needs. Ask yourself whether you CAN build needed service using AJAX, if not, choose between Silverlight, Flash/Flex or, yes, Applets.</p> http://stackoverflow.com/questions/243215/birt-in-a-desktop-application/243236#243236 0 Answer by martinsb for birt in a desktop application martinsb 2008-10-28T13:15:45Z 2008-10-28T13:15:45Z <p>Yes, it is possible. <a href="http://opensource.sys-con.com/node/336872" rel="nofollow">Here</a> is some general description. I've used Birt in server environment though as far as I know there's a RenderContext interface through which you render your reports in the way you want.</p> http://stackoverflow.com/questions/204396/returning-objects-in-c/204542#204542 2 Answer by martinsb for Returning Objects in C++ martinsb 2008-10-15T12:36:50Z 2008-10-15T12:36:50Z <p>The time to release the memory occupied by an object is when you don't need that particular object any more. In your particular case, the user of a class AnimalLister requested a pointer to a new allocated object of class Animal. So, he's the one that is responsible for freeing memory when he does need that pointer/object any more.</p> <pre><code>AnimalLister lister; Animal* a = lister.getNewAnimal(); a-&gt;sayMeow(); delete a; </code></pre> <p>In my opinion, there's no need to over-engineer anything in this case. AnimalLister is just a factory that creates new Animal objects and that's it.</p> http://stackoverflow.com/questions/161497/how-to-execute-an-application-in-xp-when-a-particular-type-of-usb-device-is-attac/161544#161544 3 Answer by martinsb for How to Execute an application in XP when a particular type of USB device is attached martinsb 2008-10-02T09:48:34Z 2008-10-02T09:48:34Z <p>A quick search revealed <a href="http://msdn.microsoft.com/en-us/library/bb758856.aspx" rel="nofollow">this site</a>, see section "3.3 Device change listener"</p> http://stackoverflow.com/questions/152250/get-class-property-name/152260#152260 0 Answer by martinsb for Get class property name martinsb 2008-09-30T08:42:25Z 2008-09-30T08:42:25Z <p>1) Specify the exact property name that you want and keep it that way</p> <p>2) Write a test involving that property name.</p> http://stackoverflow.com/questions/152077/programming-against-interfaces-do-you-write-interfaces-for-all-your-domain-class/152200#152200 1 Answer by martinsb for Programming against interfaces: Do you write interfaces for all your domain classes? martinsb 2008-09-30T08:17:29Z 2008-09-30T08:17:29Z <p>I think that the main reason for programming against interfaces is testability. Hence, for the domain objects - just stick to POJOs or POC#Os :) etc., i.e., just keep your classes from adding any specific framework so to prevent them from differend build and runtime dependencies and that's all. Creating interfaces for DAOs is a good idea though.</p> http://stackoverflow.com/questions/9615/displaying-vector-graphics-in-a-browser 13 Displaying vector graphics in a browser martinsb 2008-08-13T09:43:53Z 2008-09-26T19:57:55Z <p>I need to display some interactive (attaching with DOM listeners etc. and event handling) vector graphics in web site I am working on. There is a W3C recommendation for SVG though this format is still not recognized by Internet Explorer support of which is a must (for a public website). IE handles VML though and there are even javascript libraries that do some canvas-like drawing depending on a browser (SVG vs. VML) - <a href="http://excanvas.sourceforge.net/" rel="nofollow" title="excanvas">excanvas</a>, <a href="http://dojotoolkit.org/book/dojo-book-0-9/part-3-programmatic-dijit-and-dojo/drawing-gfx" rel="nofollow">GFX of Dojo Toolkit</a> and more. That would be nice and acceptable though none of them can display an SVG image from the given markup.</p> <p>So the question actually consists of several parts:</p> <ol> <li>Are there any cross-browser Javascript libraries that display vector graphics from given markup (not obligatory SVG) and offer availability to attach to DOM events?</li> <li>If there are not, which of the most pupular browser-embedded technologies would be most suitable for doing such a task? I can choose from Flex/Flash, Java applet. Silverlight is not an option because of Windows lock-in.</li> </ol> <p>[<strong>EDIT</strong>] Thank you all for your comments/suggestions. Below are just some my random notes/conclusions on this matter:</p> <ul> <li>The level of interactivity I need is ability to detect DOM events on the vector image being displayed - mouseover, mouseout, click etc. - and ability to react on them like changing background color, displaying dialog etc.</li> <li>The idea of sticking with SVG format is quite well as it is native on many browsers except the most popular one - IE. After some experimenting with displaying dynamic SVG I realized that IE version 7 the most problematic. There's too much hassle because of browser incompatibilities.</li> <li>Cake seems a great Javascript framework, though I could not get the examples working on IE7.</li> <li>Java Applets - I liked that idea the most as I though I could use the Apache Batik library, a quality SVG renderer. However, Batik is very big library and I cannot afford deploying an applet that weights few megabytes.</li> <li>I decided to stick with the Flex option. I found a nice vector graphics library <a href="http://www.degrafa.com/" rel="nofollow">Degrafa</a>. It uses its own markup format however it recognizes SVG path notation, so in my case it is going to be quite easy to transform my SVGs using XSLT or just parsing them.</li> </ul> <p>[<strong>EDIT 2</strong>] Some more comments appeared. I'd like to clarify that by "Windows lock-in" I mean the situation that Silverlight would normally run on Windows, more specifically, IE. I doubt it is an accepted solution (like Flash or Java Applet, for instance) on other systems. Yes, I have no doubt that one <em>is able to</em> launch Silverlight app on any system though I fear it would be too much effort for an average user.</p> <p>@Akira: Have you had any problems with those "SVG renderers" on IE7? I get thrown Javascript errors all the time.</p> http://stackoverflow.com/questions/6765/java-ms-sql-server-a-viable-solution 3 Java + MS SQL Server - a viable solution? martinsb 2008-08-09T13:23:40Z 2008-09-17T18:02:14Z <p>I'm going to start a new project - rewriting an existing system (PHP + SQL Server) from scratch because of some very serious limitations by design. We have some quite good knowledge of SQL Server (currently we're using SQL Server 2000 in existing system) and we would like to employ its newer version (2008 I guess) in our new project.<br/> I am really fond of technologies that Java offers - particularly Spring Framework and Wicket and I am quite familiar with Java from others projects and assignments before. Therefore, we consider using Java and Microsoft SQL Server. There are two JDBC drivers for SQL Server - jTDS and Microsoft's one - <a href="http://msdn.microsoft.com/en-us/data/aa937724.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/data/aa937724.aspx</a>. I think we should test both of them.<br/> Are there any limitations in such solution I should know of? Has someone experience with such a technology combination?</p> http://stackoverflow.com/questions/29516/template-engines-for-spring-framework/61205#61205 2 Answer by martinsb for Template Engines for Spring Framework martinsb 2008-09-14T08:37:54Z 2008-09-14T08:37:54Z <p>I would also like to add that your choice of template engine depends on the type of the output as well. If you know that your app will only have HTML output, I would suggest to stick with the standard JSP/JSTL. If your app requirement is also Excel, PDF or other format output, I would recommend Freemarker or Velocity. I personally like Freemarker better.</p> http://stackoverflow.com/questions/19654/introducing-python/19685#19685 0 Answer by martinsb for Introducing Python martinsb 2008-08-21T12:03:43Z 2008-08-21T12:03:43Z <p>I don't think it's a matter of a programming language as such. </p> <p>What is the proficiency level of PHP in the team you're talking about? Are they doing spaghetti code or using some structured framework like Zend? If this is the first case then I absolutely understand the guy's interest in Python and Django. It this is the latter, it's just a hype.</p> http://stackoverflow.com/questions/9545/who-in-the-software-world-do-you-admire-the-most/9586#9586 55 Answer by martinsb for Who in the software world do you admire the most? martinsb 2008-08-13T08:43:41Z 2008-08-13T08:43:41Z <p>I'm wandering why anybody hasn't mentioned <a href="http://en.wikipedia.org/wiki/Donald_knuth" rel="nofollow" title="Donald Ervin Knuth">Donald Ervin Knuth</a> yet. Yes, I understand he might not be the first violin in IT nowadays, though I think he's the greatest computer scientist ever. He might be considered as the introducer of analysis of algorithms, he's the author of TeX typesetting (can you imagine describing something we consider "beautiful" in programming language?) and of course <a href="http://en.wikipedia.org/wiki/The_Art_of_Computer_Programming" rel="nofollow">TAOCP</a> - in my opinion, a programmer's Bible.</p> http://stackoverflow.com/questions/8952/storing-a-file-in-a-database-as-opposed-to-the-file-system/8963#8963 1 Answer by martinsb for Storing a file in a database as opposed to the file system? martinsb 2008-08-12T15:27:00Z 2008-08-12T15:27:00Z <p>I agree with @ZombieSheep. Just one more thing - I generally don't think that databases actually need be portable because you miss all the features your DBMS vendor provides. I think that migrating to another database would be the last thing one would consider. Just my $.02</p> http://stackoverflow.com/questions/8569/whats-your-best-practice-for-the-first-java-ee-spring-project/8642#8642 1 Answer by martinsb for What's your "best practice" for the first Java EE Spring project? martinsb 2008-08-12T10:00:45Z 2008-08-12T10:00:45Z <p>Spring is also very much about unit testing and therefore testability of your classes. That basically means thinking about modularization, separation of concerns, referencing a class through interfaces etc.</p> http://stackoverflow.com/questions/7301/higher-pay-for-advanced-degrees/7347#7347 5 Answer by martinsb for Higher pay for advanced degrees? martinsb 2008-08-10T21:00:04Z 2008-08-10T21:00:04Z <p>I've worked for a company that had a strict formula of computing an employee's salary and it had been taking a degree in account (+10% to salary for every CS degree - BSc, MSc, PhD). After some time, they changed their policy as it was clear that not every time a degree tells about one's actual skills and knowledge. On the other hand, I've never regretted going to not only through BSc program but MSc CS program as well as it gave me additional, let's say broader, perspective on how to look at things. Although I realize that that's not the only way how to become proficient in CS and IT industry.</p> <p>Actually, if I am talking to someone who owns a BSc degree in CS, I know that he or she has successfully completed at least one project - his or her education. If I am talking to someone with MSc degree, I know he or she has successfully completed at least two projects, etc. And that's generally a good thing.</p> http://stackoverflow.com/questions/3088/best-ways-to-teach-a-beginner-to-program/6696#6696 1 Answer by martinsb for Best ways to teach a beginner to program? martinsb 2008-08-09T08:17:05Z 2008-08-09T08:17:05Z <p>I would recommend also watching some screencasts - they are generally created in context of a specific technology not a language, though if there's Python code displayed, that'll do :). The point is - they're created by some good programmers and watching how good programmers program is a good thing. You and your brother could do some peer programming as well, that might be an even better idea. Just don't forget to explain WHY you do something this way and not that way. I think the best way to learn programming is from good examples and try not to even see the bad ones.</p> http://stackoverflow.com/questions/838765/openid-authentication-from-an-installed-application/841179#841179 Comment by martinsb on OpenID authentication from an installed application martinsb 2009-05-08T19:17:22Z 2009-05-08T19:17:22Z Thank you very much! I did not know anything about OAuth, I'll look into it. Still, it seems very promissing. Thanks again