User Yakov Fain - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T06:22:32Zhttp://stackoverflow.com/feeds/user/87056http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1583920/flex-printing-on-osx-pushes-image-off-the-page-how-can-this-be-fixed/1589565#15895651Answer by Yakov Fain for Flex printing on OSX pushes image off the page. How can this be fixed?Yakov Fain2009-10-19T15:59:38Z2009-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#15004480Answer 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 Fain2009-09-30T20:23:36Z2009-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#13952170Answer by Yakov Fain for Watching a bindable propertyYakov Fain2009-09-08T17:27:18Z2009-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'&& 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#13659941Answer by Yakov Fain for Enums in AS3 / Flash / Flex?Yakov Fain2009-09-02T05:41:19Z2009-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#13028611Answer by Yakov Fain for How much logic should be included in a Flex MXML attribute?Yakov Fain2009-08-19T22:00:46Z2009-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#11845462Answer by Yakov Fain for How to implement HTTP TunnelingYakov Fain2009-07-26T13:06:53Z2009-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#8728871Answer by Yakov Fain for Problem with my Team LeadYakov Fain2009-05-16T17:44:41Z2009-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#8683837Answer by Yakov Fain for Where does a career as Java Corporate Trainer lead to?Yakov Fain2009-05-15T12:22:46Z2009-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#8550881Answer by Yakov Fain for How do teams use Flex Builder Pro to develop large applications?Yakov Fain2009-05-12T22:00:35Z2009-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#8523660Answer by Yakov Fain for How to get paid for contract work and deal with debtorYakov Fain2009-05-12T11:56:19Z2009-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#8431311Answer by Yakov Fain for Flex MVC FrameworksYakov Fain2009-05-09T11:07:53Z2009-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#7640411Answer by Yakov Fain for How do you hide secret keys in code?Yakov Fain2009-04-18T19:42:56Z2009-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#7212911Answer by Yakov Fain for Using flex with strutsYakov Fain2009-04-06T12:51:48Z2009-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#7188010Answer by Yakov Fain for How do you find time for improving your programming skills?Yakov Fain2009-04-05T11:37:05Z2009-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#7171911Answer by Yakov Fain for Array or List in Java. Which is faster ?Yakov Fain2009-04-04T14:35:12Z2009-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#7169470Answer by Yakov Fain for How can I implement a list of links in Flex?Yakov Fain2009-04-04T11:48:25Z2009-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#7169440Answer by Yakov Fain for How to split up income from a product between co-founders?Yakov Fain2009-04-04T11:44:52Z2009-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#7169180Answer by Yakov Fain for Should I change my job during the economic recession?Yakov Fain2009-04-04T11:16:31Z2009-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#7169091Answer by Yakov Fain for What is development in the "Enterprise" like?Yakov Fain2009-04-04T11:06:45Z2009-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-2Answer by Yakov Fain for Hibernate, iBatis, JEE or other Java ORM toolYakov Fain2009-04-04T10:56:59Z2009-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#7168921Answer by Yakov Fain for As a consultant should I charge my clients for developing specs?Yakov Fain2009-04-04T10:53:06Z2009-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#7168880Answer by Yakov Fain for Does open source look impressive on a resume?Yakov Fain2009-04-04T10:49:44Z2009-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#7168851Answer by Yakov Fain for What's the next thing on your list to learn?Yakov Fain2009-04-04T10:45:59Z2009-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#7168820Answer by Yakov Fain for What do I need to know before I sell a software license?Yakov Fain2009-04-04T10:42:34Z2009-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#7168731Answer by Yakov Fain for Dealing with multiple consulting projectsYakov Fain2009-04-04T10:35:56Z2009-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#1500448Comment 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 Fain2009-10-01T22:45:19Z2009-10-01T22:45:19ZYou 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#1184546Comment by Yakov Fain on How to implement HTTP TunnelingYakov Fain2009-07-28T23:39:18Z2009-07-28T23:39:18ZTo 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#764041Comment by Yakov Fain on How do you hide secret keys in code?Yakov Fain2009-04-19T11:24:55Z2009-04-19T11:24:55ZIt'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#716894Comment by Yakov Fain on Hibernate, iBatis, JEE or other Java ORM toolYakov Fain2009-04-08T20:15:18Z2009-04-08T20:15:18Z...and Valery is missing the points made by me.http://stackoverflow.com/questions/716814/dealing-with-multiple-consulting-projects/716873#716873Comment by Yakov Fain on Dealing with multiple consulting projectsYakov Fain2009-04-06T16:22:06Z2009-04-06T16:22:06ZYes, 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#716894Comment by Yakov Fain on Hibernate, iBatis, JEE or other Java ORM toolYakov Fain2009-04-05T11:27:09Z2009-04-05T11:27:09ZThis 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…</a>