User Yakov Fain - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T06:22:32Z http://stackoverflow.com/feeds/user/87056 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1583920/flex-printing-on-osx-pushes-image-off-the-page-how-can-this-be-fixed/1589565#1589565 1 Answer by Yakov Fain for Flex printing on OSX pushes image off the page. How can this be fixed? Yakov Fain 2009-10-19T15:59:38Z 2009-10-19T15:59:38Z <p>Switch to PDF generation. There are two ways to do this without having to purchase server-side licenses:</p> <ol> <li><p>Use our library of Flex components - clear.swc, a part of open source Clear Toolkit available on Sourceforge. This process is described in Ch. 11 of the book Enterprise Development with Flex currently available as rough cuts on safaribooksonline.com</p></li> <li><p>Use open-source library alivePDF.</p></li> </ol> <p>Don't print by Flex PrintJob :)</p> http://stackoverflow.com/questions/1500155/how-do-i-make-sure-the-text-of-an-actionscript-textinput-is-updated-when-the-obje/1500448#1500448 0 Answer by Yakov Fain for How do I make sure the text of an ActionScript TextInput is updated when the Object property defining that text is updated? Yakov Fain 2009-09-30T20:23:36Z 2009-09-30T20:23:36Z <p>Compile your MXML component with the -keep option. Examine the ActionScript code that was generated by mxmlc and do something similar.</p> <p>You may also do it using the Proxy object - I blogged about it over here: <a href="http://flexblog.faratasystems.com/?p=433" rel="nofollow">http://flexblog.faratasystems.com/?p=433</a></p> http://stackoverflow.com/questions/1394283/watching-a-bindable-property/1395217#1395217 0 Answer by Yakov Fain for Watching a bindable property Yakov Fain 2009-09-08T17:27:18Z 2009-09-08T17:27:18Z <p>Use the class ObjectProxy or its subclass and wrap up the class that has a property you need to watch. In my example, I'm calling a func if someone is changing the property salary giving it a value of more than 55000 in an object Person: </p> <p>package com.farata { import mx.utils.ObjectProxy; import flash.utils.*;</p> <p>use namespace flash_proxy;</p> <pre><code>public dynamic class MyPersonProxy extends ObjectProxy { // The object to wrap up private var person:Person; public function MyPersonProxy(item:Person){ super(item); person=item; } flash_proxy override function setProperty(name:*, value:*):void { </code></pre> <p>if ( name == 'salary'&amp;&amp; value>55000) { // add a new property to this instance of the // class Person, which can be used in the calculations // of the total compensation setProperty("pension", 0.02); } super.setProperty(name, value);<br /> } } }</p> http://stackoverflow.com/questions/329652/enums-in-as3-flash-flex/1365994#1365994 1 Answer by Yakov Fain for Enums in AS3 / Flash / Flex? Yakov Fain 2009-09-02T05:41:19Z 2009-09-02T05:41:19Z <p>Check this out: <a href="http://flexblog.faratasystems.com/?p=242" rel="nofollow">http://flexblog.faratasystems.com/?p=242</a></p> http://stackoverflow.com/questions/1300667/how-much-logic-should-be-included-in-a-flex-mxml-attribute/1302861#1302861 1 Answer by Yakov Fain for How much logic should be included in a Flex MXML attribute? Yakov Fain 2009-08-19T22:00:46Z 2009-08-19T22:00:46Z <p>It's not a good idea to put more than one liner inline. Hard to read, hard to debug. To make the inline code more readable though, put it inside the curly braces and write it in multiple lines.</p> http://stackoverflow.com/questions/1184521/how-to-implement-http-tunneling/1184546#1184546 2 Answer by Yakov Fain for How to implement HTTP Tunneling Yakov Fain 2009-07-26T13:06:53Z 2009-07-26T13:06:53Z <p>Don't reinvent the wheel - use remoting via AMF protocol. AMF an HTTP-based binary format that performs serialization between ActionScript (MXML) and server side languages. Technically, this is HTTP tunneling. Adobe offers BlazeDS (open source) and LCDS (commercial) implementations of AMF for AS/Java, but there are third-party implementations of AMF for AS/PHP, AS/Python, AS/Ruby, AS/.Net.</p> <p>BTW, AMF is an open source format.</p> http://stackoverflow.com/questions/872847/problem-with-my-team-lead/872887#872887 1 Answer by Yakov Fain for Problem with my Team Lead Yakov Fain 2009-05-16T17:44:41Z 2009-05-16T17:44:41Z <p>The question is not exactly clear, but I just want to remind you, that if you don't work for yourself, it's always "work for hire". It's not your work, it's the work of your employer.</p> <p>I know, sometime people behave as a**holes, and if you feel that this is the case, try to find a new job, and then quit. But first give it another thought, "Is there a real problem or you are just painting things black?" </p> http://stackoverflow.com/questions/868298/where-does-a-career-as-java-corporate-trainer-lead-to/868383#868383 7 Answer by Yakov Fain for Where does a career as Java Corporate Trainer lead to? Yakov Fain 2009-05-15T12:22:46Z 2009-05-15T12:22:46Z <p>This is a pretty dangerous start of a career. Unless you have a real industry experience with Java, you'll keep finding yourself in non-pleasant situations in the classrooms when someone will start asking questions that only practitioners can answer. </p> <p>If you just do training, you'll get a "book knowledge" of the subject. Another issue with this career is that whenever economy goes bad, training corporate budgets are being cut first, and you may find yourself out of job.</p> <p>I love teaching classes on the software myself, but would consider being just a trainer or a professor as a good ending of the IT career, not the start of it.</p> <p>Having said that, I really admire people who know how to teach software, which is not the same as to know how to build software.</p> http://stackoverflow.com/questions/744937/how-do-teams-use-flex-builder-pro-to-develop-large-applications/855088#855088 1 Answer by Yakov Fain for How do teams use Flex Builder Pro to develop large applications? Yakov Fain 2009-05-12T22:00:35Z 2009-05-12T22:00:35Z <p>Unless you develop a Hello World application, you should have more than one Flex Builder projects. The main one has the bare minimum of classes, and possibly shared libraries that are required to display the first screen of your app.</p> <p>Fonts and CSS go to a separate proj and are compiled into a separate swf. Load them during the runtime via StyleManager. This alone will speed up the compilation of your app.</p> <p>The rest of the code has to be split into a separate projects (either Flex Library projects or just the projects having modules). Read about differences in linking of the libraries with the main proj (RSL vs Merged into Code vs. External).</p> <p>We use Ant for building each of the projects and the entire app. Our open sourced Fx2Ant utility generates ANT scripts for your Flex Builder projects in seconds.</p> <p>For example, here's the project I was working on last year: <a href="http://www.mbusa.com" rel="nofollow">http://www.mbusa.com</a>. It consists of more than 15 Flex Builder projects.</p> http://stackoverflow.com/questions/851936/how-to-get-paid-for-contract-work-and-deal-with-debtor/852366#852366 0 Answer by Yakov Fain for How to get paid for contract work and deal with debtor Yakov Fain 2009-05-12T11:56:19Z 2009-05-12T11:56:19Z <p>Bite the bullet and move on with your life. Can't get blood from the stone. Lawyers wouldn't take this case on contingency basis, and any filings turn into more expences on your part.</p> <p>Just write an email and a letter to your former CEO (cc the bad guy too) explaining how unprofessional that guy is.</p> http://stackoverflow.com/questions/37043/flex-mvc-frameworks/843131#843131 1 Answer by Yakov Fain for Flex MVC Frameworks Yakov Fain 2009-05-09T11:07:53Z 2009-05-09T11:07:53Z <p>I've seen these kinds of discussions many many times. They usually start with WHICH Flex framework do you use. Not many people ask the question WHY do you even need to use any framework on top of Flex framework.</p> <p>I'm not in favor of using any MVC framework (Cairngorm, PureMVC) in Flex code. Mate is a better candidate. At least it's simple to understand and is non intrusive. I prefer using enhanced components ala cart. We've created and open sourced a bunch of them (see clear.swc in the Clear Toolkit at <a href="http://sourceforge.net/projects/cleartoolkit/" rel="nofollow">http://sourceforge.net/projects/cleartoolkit/</a>.</p> <p>The first chapter of our upcoming O'Reilly book "Enterprise Development with Flex" has a detailed comparison of several Flex frameworks: <a href="http://my.safaribooksonline.com/9780596801465" rel="nofollow">http://my.safaribooksonline.com/9780596801465</a> . </p> http://stackoverflow.com/questions/764012/how-do-you-hide-secret-keys-in-code/764041#764041 1 Answer by Yakov Fain for How do you hide secret keys in code? Yakov Fain 2009-04-18T19:42:56Z 2009-04-18T19:42:56Z <p>When we started developing our software, we've created a dated license file. Then, we realized, that not too many people are even interested in buying our software. Then, we decided to give it away for free. A lot more people started to care at least trying our masterpiece. Finally, we've open sourced our software. A lot more users started using it. Now we just hope that a small number of these users might turn into paying customers (i.e. buying prod. support or asking for customization).</p> <p>The bottom line is, if someone wont's to crack your software, he/she'll do it anyway. Is it really worth it to waste your time trying to protect it with this hidden secret key? </p> http://stackoverflow.com/questions/527225/using-flex-with-struts/721291#721291 1 Answer by Yakov Fain for Using flex with struts Yakov Fain 2009-04-06T12:51:48Z 2009-04-06T12:51:48Z <p>Go with Flex-BlazeDS option. Simpify the architecture by removing Action servlet, action class and JSP that returns the presentation with a simple POJO that just returns the data to be displayed in those Wen pages that you'll decided to turn into Flex (it doesn't have to be all-or-nothing - you can keep most of our app as you have now, gradually introducing Flex pieces to it).</p> <p>Things to pay attention to:</p> <ol> <li><p>Scalability. If your app has more than 500 concurrent users, you will need to go through some advance coding to keep the server up. </p></li> <li><p>Think of changing the app design to keep the state on the client for all portions that you'll re-write in Flex.</p></li> <li><p>Think of the ways to exchange the server-side user session info between the old (JSP) and new (Flex-BlazeDS) modules.</p></li> </ol> http://stackoverflow.com/questions/718739/how-do-you-find-time-for-improving-your-programming-skills/718801#718801 0 Answer by Yakov Fain for How do you find time for improving your programming skills? Yakov Fain 2009-04-05T11:37:05Z 2009-04-05T11:37:05Z <p>In the order of importance: 1. Start looking for a job that requires not more than 10 hr a day 2. Join an open source project and become a contributor there - you'll learn faster 3. Tell to your boss about Google that allows their employees spend 20% of time working on other projects. I'm sure you constantly stay in the office for 12 hours not because you are always behind on your projects, but because of the "culture" in your group, which is usually a result of poor management.</p> http://stackoverflow.com/questions/716597/array-or-list-in-java-which-is-faster/717191#717191 1 Answer by Yakov Fain for Array or List in Java. Which is faster ? Yakov Fain 2009-04-04T14:35:12Z 2009-04-04T14:35:12Z <p>Array is faster - all memory is pre-allocated in advance.</p> http://stackoverflow.com/questions/710772/how-can-i-implement-a-list-of-links-in-flex/716947#716947 0 Answer by Yakov Fain for How can I implement a list of links in Flex? Yakov Fain 2009-04-04T11:48:25Z 2009-04-04T11:48:25Z <p>Use LinkBar with ViewStack.</p> http://stackoverflow.com/questions/398690/how-to-split-up-income-from-a-product-between-co-founders/716944#716944 0 Answer by Yakov Fain for How to split up income from a product between co-founders? Yakov Fain 2009-04-04T11:44:52Z 2009-04-04T11:44:52Z <p>Split equally - you are partners, not billable consultants. The last thing you want in business is to attach a stop watch to a partner. Such business is doomed.</p> http://stackoverflow.com/questions/641936/should-i-change-my-job-during-the-economic-recession/716918#716918 0 Answer by Yakov Fain for Should I change my job during the economic recession? Yakov Fain 2009-04-04T11:16:31Z 2009-04-04T11:16:31Z <p>What makes you think that you deserve a bonus? Do you think they pay you less than you deserve? If so, continue working at your present place but try to hit the job market and see if someone is willing to pay you more. You may be surprised... </p> <p>Who's going to put bread on your table if you just quit? Mom and pop?</p> http://stackoverflow.com/questions/570947/what-is-development-in-the-enterprise-like/716909#716909 1 Answer by Yakov Fain for What is development in the "Enterprise" like? Yakov Fain 2009-04-04T11:06:45Z 2009-04-04T11:06:45Z <p>Since you are just starting a new career, you'll need to learn to manage your time, be a team player and deal with "political stuff" to survive. </p> <p>Here's a link to a free download of my e-Book "Enterprise Software without the BS": <a href="http://yakovfain.javadevelopersjournal.com/enterprise_software_without_the_bs_is_available_for_download.htm" rel="nofollow">http://yakovfain.javadevelopersjournal.com/enterprise_software_without_the_bs_is_available_for_download.htm</a></p> http://stackoverflow.com/questions/716532/hibernate-ibatis-jee-or-other-java-orm-tool/716894#716894 -2 Answer by Yakov Fain for Hibernate, iBatis, JEE or other Java ORM tool Yakov Fain 2009-04-04T10:56:59Z 2009-04-04T10:56:59Z <p>Have you tried to answer WHY even use an ORM tool before deciding which one to use? If you have people on your team who know SQL, see stick to JDBC. </p> http://stackoverflow.com/questions/706963/as-a-consultant-should-i-charge-my-clients-for-developing-specs/716892#716892 1 Answer by Yakov Fain for As a consultant should I charge my clients for developing specs? Yakov Fain 2009-04-04T10:53:06Z 2009-04-04T10:53:06Z <p>If you are a consultant, you charge for your time regardless of what you do. </p> http://stackoverflow.com/questions/703398/does-open-source-look-impressive-on-a-resume/716888#716888 0 Answer by Yakov Fain for Does open source look impressive on a resume? Yakov Fain 2009-04-04T10:49:44Z 2009-04-04T10:49:44Z <p>It looks good to me and makes this resume stand out. For people just out of college participating in an open source project may be the only way to get first job. </p> http://stackoverflow.com/questions/231951/whats-the-next-thing-on-your-list-to-learn/716885#716885 1 Answer by Yakov Fain for What's the next thing on your list to learn? Yakov Fain 2009-04-04T10:45:59Z 2009-04-04T10:45:59Z <p>Cloud computing</p> http://stackoverflow.com/questions/676610/what-do-i-need-to-know-before-i-sell-a-software-license/716882#716882 0 Answer by Yakov Fain for What do I need to know before I sell a software license? Yakov Fain 2009-04-04T10:42:34Z 2009-04-04T10:42:34Z <p>The chances that an individual will be able to sell his software are slim. Consider giving it away for free using one of the open source licenses. This may substantially increase the number of the users of your software and may turn some of them into buying customers (i.e. prod support or customization).</p> http://stackoverflow.com/questions/716814/dealing-with-multiple-consulting-projects/716873#716873 1 Answer by Yakov Fain for Dealing with multiple consulting projects Yakov Fain 2009-04-04T10:35:56Z 2009-04-04T10:35:56Z <p>Hire other people to help and manage them. Don't be greedy:)</p> http://stackoverflow.com/questions/1500155/how-do-i-make-sure-the-text-of-an-actionscript-textinput-is-updated-when-the-obje/1500448#1500448 Comment by Yakov Fain on How do I make sure the text of an ActionScript TextInput is updated when the Object property defining that text is updated? Yakov Fain 2009-10-01T22:45:19Z 2009-10-01T22:45:19Z You don't need a base class. Create the class in the main proj that has a code snippet from your original post and take a look at the generated code. Besides, the compc compiler accepts -keep too. http://stackoverflow.com/questions/1184521/how-to-implement-http-tunneling/1184546#1184546 Comment by Yakov Fain on How to implement HTTP Tunneling Yakov Fain 2009-07-28T23:39:18Z 2009-07-28T23:39:18Z To the best of my knowledge, during the last 8 years no firewalls restrict AMF (binary) content. Your Flex app talks to a BlazeDS/LCDS servlet over the port 80 or 443. You don't need to use proxy unless your flex app needs to connect to a 3rd party server that doesn't have a crossdomain.xml with proper permissions. http://stackoverflow.com/questions/764012/how-do-you-hide-secret-keys-in-code/764041#764041 Comment by Yakov Fain on How do you hide secret keys in code? Yakov Fain 2009-04-19T11:24:55Z 2009-04-19T11:24:55Z It's Clear Toolkit - a set of components and Eclipse plugins for Flex/Java development: <a href="http://sourceforge.net/projects/cleartoolkit/" rel="nofollow">sourceforge.net/projects/cleartoolkit</a>. http://stackoverflow.com/questions/716532/hibernate-ibatis-jee-or-other-java-orm-tool/716894#716894 Comment by Yakov Fain on Hibernate, iBatis, JEE or other Java ORM tool Yakov Fain 2009-04-08T20:15:18Z 2009-04-08T20:15:18Z ...and Valery is missing the points made by me. http://stackoverflow.com/questions/716814/dealing-with-multiple-consulting-projects/716873#716873 Comment by Yakov Fain on Dealing with multiple consulting projects Yakov Fain 2009-04-06T16:22:06Z 2009-04-06T16:22:06Z Yes, it's pretty weird to downvote the right way to do business in addition to offering jobs for other people. http://stackoverflow.com/questions/716532/hibernate-ibatis-jee-or-other-java-orm-tool/716894#716894 Comment by Yakov Fain on Hibernate, iBatis, JEE or other Java ORM tool Yakov Fain 2009-04-05T11:27:09Z 2009-04-05T11:27:09Z This is a typical answer. People are taking it as a given, but I've yet to see some strong arguments proving this. Here's my blog post on the similar subject with a bunch of comments: <a href="http://yakovfain.javadevelopersjournal.com/this_java_architecture_is_a_tough_sell.htm" rel="nofollow">yakovfain.javadevelopersjournal.com/this_java_arc&hellip;</a>