Why JSC 2 now needs 1GIG Ram instead of 512MB for EA?

Hi all,
What's the difference between JSCreator 2 and Early Access edition that require not 1 GIG of ram?
I'm skeptic of installing JSC2 bcz of this.
thx.

ok, that's a Ooooohmm.. I didn't think my question would spark such a buzz..
javaswed,
I'm sorry if I offended you with my question.
what are you doing in the J2EE department if you dont have 1GB ram in the first place ?.
I'm just starting to learn Java and Creator 2.
if you dont have 1 GB ram your hardly a serious developer anyhow.
Well actually I'm not new to programming, I finished a computer class and mainly did HTML in Dreamweaver since 1999. And I don't consider myself a serious developer I guess here you're right. You will be amazed what my current PIII 450Mhz with 400MB ram can run on Linux. It load's JSC2EA on XP SP2 with another 35 processes running in 2:27 mins. I manily need for learning, tutorials etc. By the time I go for a production i'll buy myself a new pc.
the comp hardware costs really is about 0 compared to what a software developers sallary is..
I'm not a "Software developer" and you should remember that not everybody live in the USA. I'm 24 y/old and the truth is i'm in the bottom of the tire now and the days of working 1/2 hour a day and making $1.5k from advertising are gone.
Times change...
so if you cant affard a decent comp, something is major wrong.
Maybe. Time will tell. I could have bought myself a new pc, I just decided to invest the money in something more important.
You should also be aware of that the generall sweet spot for client performance has recently moved from 1 to 2gb of ram.
this is something you should understand...
I sold pc's on my last job, I do understand it :-)
And really, arguing about these tiny amounts of ram for a developer machine is silly.
Actually arguing about anything is silly. I didn't come to start an argue. :-)
I came to look for help.
I wish you all of the best. :-)
Everybody, thank you very much for your kind comments and warm welcome!
vspurlin,
Thank you for your comment you actually answered my question. I will be able to run The new release of JSC2 on my pc for a learning purpose and tutorials for the time being.
It may be a good idea to show on the minimum system requirements, The actual MINIMUM of ram required to run the program, lets say for learning and recommended minimum for production work. Otherwise in my opinion 1GIG requirement may deter a lot of people "planning to replace comp" of touching JSC2 in the first place.
Thanks again, :-)
Valentine.

Similar Messages

  • Why do i need to buy the same app for each device over and over again??

    why do i need to buy the same app for each device over and over again??
    and why cant i just pay for the app ones for all devices as long at it is with the same account??
    i hate that i have to oay for the same game or app three time one for ipad ones for iphone and ones for mac please do something about that apple..!!!

    First, you posted in the Mac App Store forum which are apps for the Mac OS X, not iOS devices.
    You do not need to re purchase your apps. Connect your iOS devices to your computer, launch iTunes. From the menu bar click Apps then click Sync
    Downloading past purchases from the App Store, iBookstore, and iTunes Store

  • Why do I need original receipt (can't find) for repair when my tablet is in warranty.

    Why do I need original receipt (can't find) for repair when my tablet is in warranty.

    Hi 33fy,
    Welcome to the community! Since you're new please be sure that you have checked out our Discussion guidelines
    You may want to contact Sony Mobile from within your region, they may be able to help with a different alternative. Use the link in my signature to find appropriate contact details.
     - Official Sony Xperia Support Staff
    If you're new to our forums make sure that you have read our Discussion guidelines.
    If you want to get in touch with the local support team for your country please visit our contact page.

  • Why do we need MTP in the SIP trunk for CVP warm transfers

    Hi All,
    Why do we need to enable MTP in SIP trunk between CUCM and CVP for CVP based trasnfers???
    Thanks in advance!!
    Regards,
    Thammaya Gupta K.

    I saw also in the CDR logs that the IP Phone media transport going to CUBE is in G711.And as well in the wireshark capture of the IP communicator that the CUCM invoke to use the g711 codec but as per ITSP logs they are now in the g729.
    @ Jamie If I un-tick the MTP point required in SIP trunk will make the call leg from IP Phone to CUBE g729 (w/o hw resource), I have also tried to use g729 preferred originating codec, but still the IP Phone is using g711.
    I have seen a documentation states:
    " To configure G.729 codecs for use with a SIP trunk, you must use a hardware MTP or transcoder that supports the G.729 codec." - I read this on the CUCM help page under configuring SIP trunk setting.
    Our ultimate goal is to use g729 without using HW MTP/ transcoder.
    IP Phone ->CUCM SIP Trunk ->CUBE-> ITSP

  • Need Customizing request instead of Workbench for Table Mainetnance

    Hello All,
    I created a ztable with Table Maintenance.
    Whenever I am creating entries using SM30 it is asking workbench request instead of customizing request.
    I need customizing request to be created for table entries.
    Can anybody help me in this regard.

    Hi Eric,
    Thanks a lot!.
    The problem is solved....
    Thank you very much for your help.
    Regards,
    Sunil

  • MacBookPro2,2 can now access 4GB RAM instead of 3 GB

    Just upgrade my MacBookPro2,2 to 4 GB thinking it would only access 3GB but it's accessing all 4GB via System Profiler and Activity Monitor. Could the 10.6 update have anything to do with it or am I missing something?

    It always could handle 4 GBs, but only 3 GBs is available to the user. Select About This Mac from the Apple menu and see what's displayed for available memory. System Profiler and Activity Monitor simply show how much RAM is installed.
    With 4 GBs of RAM 3 GBs is available to the user while 1 GB is used by the hardware for assigned hardware address mapping. The limitation is not addressable by software as it's a function of the memory controller chip on the motherboard.

  • Why do I need to define these in std for my random access iterator???

    Hi guys,
    I have written my own iterator class, to support 1-d slices of 2-d matrices, 2-d slices of 3-d matrices, etc.
    At first I wrote the class as a bidirectional iterator, but then I needed to extend it to random access so that I could pass these iterators to std::sort etc. No problem, I thought, I just needed to add friend operators for "iterator-iterator" and "iterator+/-distance".
    So, I did that and tested the code with VS6 and various versions of g++, with no problems. Isn't STL great!
    But I had endless problems with Studio 10. It kept griping that various mostly-internal-looking template functions were not defined. The only way I could get it to work was to define these:
    #if (defined __SUNPRO_CC) && (__SUNPRO_CC <= 0x570)
    namespace std
         template<typename T>          // Sigh
         typename matrixit<T>::
         difference_type distance(const matrixit<T>& a, const matrixit<T>& b) {
              return b-a;
         template<typename T>           // WTF?
         T* __value_type(const matrixit<T>&) {
              return static_cast<T*>(0);
         template<typename T>           // WTF?
         typename matrixit<T>::
         difference_type* __distance_type(const matrixit<T>&) {
              return static_cast<typename matrixit<T>::difference_type*>(0);
         template<typename T>           // WTF?
         typename matrixit<T>::
         iterator_category __iterator_category(const matrixit<T>&) {
              return typename matrixit<T>::iterator_category();
    #endif
    Why do I have to do this, or am I missing something in my iterator class (eg, typedefs), or do I need to derive it from something? Here is what it looks like:
    template<typename T>
    class matrixit
    public:
         typedef T&                         reference;
         typedef T*                         pointer;
         typedef T                         value_type;
         typedef size_t                    size_type;
         typedef ptrdiff_t               difference_type;
         typedef std::random_access_iterator_tag iterator_category;
    Ta, Simon.

    Come on, it is not that hard to work around the limitations of Cstd. For what you show here, you can use:
    namespace std {
    template <class Iterator> struct iterator_traits
    typedef typename Iterator::value_type value_type;
    typedef typename Iterator::difference_type difference_type;
    typedef typename Iterator::pointer pointer;
    typedef typename Iterator::reference reference;
    typedef typename Iterator::iterator_category iterator_category;
    template <class T> struct iterator_traits<T*>
    typedef T value_type;
    typedef ptrdiff_t difference_type;
    typedef T* pointer;
    typedef T& reference;
    typedef random_access_iterator_tag iterator_category;
    template <class T> struct iterator_traits<const T*>
    typedef T value_type;
    typedef ptrdiff_t difference_type;
    typedef const T* pointer;
    typedef const T& reference;
    typedef random_access_iterator_tag iterator_category;
    template <class ForwardIterator>
    inline ptrdiff_t
    distance (ForwardIterator first, ForwardIterator last)
    ptrdiff_t n = 0;
    __distance(first, last, n,
    iterator_traits<ForwardIterator>::iterator_category());
    return n;
    template <class InputIterator, class T>
    inline typename iterator_traits<InputIterator>::difference_type
    count (InputIterator first, InputIterator last, const T& value)
    typename iterator_traits<InputIterator>::difference_type result;
    count(first,last,value,result);
    return result;
    template <class InputIterator, class Predicate>
    inline typename iterator_traits<InputIterator>::difference_type
    count_if (InputIterator first, InputIterator last, Predicate pred)
    typename iterator_traits<InputIterator>::difference_type result;
    count_if(first,last,pred,result);
    return result;
    template < class T >
    inline typename T::value_type*
    __value_type (const T&)
    { return (typename T::value_type*)(0); }
    template < class T >
    inline typename T::difference_type*
    __distance_type(const T&)
    { return (typename T::difference_type*)(0); }
    template < class T >
    inline typename T::iterator_category
    __iterator_category (const T&)
    typename T::iterator_category tmp;
    return tmp;
    } // namespace std
    For the missing constructor of vector with iterators, you can simply use std::copy with a back_insert_iterator.
    The hardest thing to work around is probably the missing conversion between std::pair of various types (for instance with various constness when you use std::map), but it can still be handled by always specifying the type of the pair instead of relying on std::make_pair.
    And if there is a thing you really don't know how to work around, you can always ask here...

  • Why does FF need to create 10,000 folders for the cache? How do I make it go back into single folder mode?

    Before it was x:\\Cache\"stuff"...Simple easy to find files if you need to.
    Now its..
    x:\\Cache\X\x1\"a little stuff"
    x:\\Cache\X\xA\"a little more stuff"
    x:\\Cache\X\x0\"a even more little stuff"
    x:\\Cache\X\x9\" crap... I'm lost now""
    What is the purpose for the extra folders? I want to be able to revert it back to single folder mode.

    You would need to revert to Firefox 3.6.23 to have the old cache setup.
    The multiple cache folder setup is to allow for a larger cache which works more efficiently that earlier versions worked.

  • Why do I need broadband when I only ask for a phon...

    BT you are now confusing yourself..I ordered on November 1st a new phone line to be installed on November 26th, On November 27th nothing...28th nothing, 29th nothing - you get the picture - eventually after phone call 45 I was told that BT did not come on the 26th due to the snow which arrived on the 29th November.
    The BT openreach people are very busy and my phone connection is now back until Jan 4th AM I am further told after chasing (phone call 87) - 
    This morning I get an automated email about my broadband being set up on 4th Jan ??? - I did not request this service, just a simple phone line - get to the exchange flick the switch and all systems go.
    If you call my number you get a ringing sound (not on the handset) and no it is not switched to mute or off - because the phone line is not connected, or so it seems...
    BT tell me - you've got my details what are you doing - how are you going to resolve this and hundreds of other complaints - I am waiting on my phone line only...do the right thing.

    Hi Djreid67,
    I am sorry to hear about the delay with the activation of your telephone service. I do know with the recent bad weather that this has caused a few major service outages across our network and this unfortunately has tied up a lot of our engineers.
    I would like to take a look at you order to see if there is anything I can do to get your telephone service activated a bit sooner. Please could you drop me an email with any BT account or order details you have? My email address can be found by clicking on my profile.
    Please make sure to include a link to this post.
    Thanks
    Paddy,
    BTCare Community Mod
    If we have asked you to email us with your details, please make sure you are logged in to the forum, otherwise you will not be able to see our ‘Contact Us’ link within our profiles.
    We are sorry but we are unable to deal with service/account queries via the private message(PM) function so please don't PM your account info, we need to deal with this via our email account :-)

  • Why do i need to declate methods two times for this program work

    Hi,
    why should i have to declare 2 times the methods
    public void mouseClicked(MouseEvent e) {    }
    public void mousePressed(MouseEvent e) {    }
    public void mouseReleased(MouseEvent e) {    }
    public void mouseEntered(MouseEvent e) { }
    public void mouseExited(MouseEvent e) {  }
    to make this program work? why when i declate 1 time this program doesn't work good?
    import java.awt.*;*
    import javax.swing.;
    import java.awt.datatransfer.*;
    import java.io.FileReader;
    import java.io.IOException;
    import java.awt.event.MouseListener;
    import java.awt.event.MouseEvent;
    public class Main extends JPanel implements MouseListener {
    public Main() {
    super(new GridLayout(2,2));
    final JTextArea jt= new JTextArea("dear test :) ",5,20);
    FileReader reader = null;
    System.err.println("Error closing reader");
    exception.printStackTrace();
    JButton bu = new JButton("copiar");
    final Clipboard clipboard = getToolkit().getSystemClipboard();
    //new add
    add(nn);
    add(tt);
    bu.addMouseListener(new MouseListener() {
    public void mouseEntered(MouseEvent e) {
    StringSelection data = new StringSelection(jt.getText());
    clipboard.setContents(data, data);
    public void mouseClicked(MouseEvent e) {
    public void mousePressed(MouseEvent e) {
    public void mouseReleased(MouseEvent e) {
    public void mouseExited(MouseEvent e) {
    private static void createAndShowGUI() {
    //Create and set up the window.
    JFrame frame = new JFrame("TextDemo");
    public static void main(String[] args) {
    //Schedule a job for the event dispatch thread:
    //creating and showing this application's GUI.
    javax.swing.SwingUtilities.invokeLater(new Runnable() {
    public void run() {
    createAndShowGUI();
    public void mouseClicked(MouseEvent e) {    }
    public void mousePressed(MouseEvent e) {    }
    public void mouseReleased(MouseEvent e) {    }
    public void mouseEntered(MouseEvent e) { }
    public void mouseExited(MouseEvent e) {  }
    }

    import java.awt.;
    import javax.swing.;
    import java.awt.datatransfer.*;
    import java.io.FileReader;
    import java.io.IOException;
    import java.awt.event.MouseListener;
    import java.awt.event.MouseEvent;
    public class Main extends JPanel implements MouseListener {
    public Main() {
    super(new GridLayout(2,2));
    final JTextArea jt= new JTextArea("dear test :) ",5,20);
    FileReader reader = null;
    System.err.println("Error closing reader");
    exception.printStackTrace();
    JButton bu = new JButton("copiar");
    final Clipboard clipboard = getToolkit().getSystemClipboard();
    //new add
    add(nn);
    add(tt);
    bu.addMouseListener(new MouseListener() {
    public void mouseEntered(MouseEvent e) {
    StringSelection data = new StringSelection(jt.getText());
    clipboard.setContents(data, data);
    public void mouseClicked(MouseEvent e) { }
    public void mousePressed(MouseEvent e) { }
    public void mouseReleased(MouseEvent e) {}
    public void mouseExited(MouseEvent e) { }
    private static void createAndShowGUI() {
    //Create and set up the window.
    JFrame frame = new JFrame("TextDemo");
    public static void main(String[] args) {
    //Schedule a job for the event dispatch thread:
    //creating and showing this application's GUI.
    javax.swing.SwingUtilities.invokeLater(new Runnable() {
    public void run() {
    createAndShowGUI();
    public void mouseClicked(MouseEvent e) { }
    public void mousePressed(MouseEvent e) { }
    public void mouseReleased(MouseEvent e) { }
    public void mouseEntered(MouseEvent e) { }
    public void mouseExited(MouseEvent e) { }
    } the problem is this line bu.addMouseListener(new MouseListener() {
    if i change this to bu.addMouseListener(this() {
    it gives error saying expected ')'
    and then doesn't compile.
    i just don't know why , although the program runs when i declare the methods two times,
    but i think it's better java code , if i learn it why is this error and correct it

  • Why do I need to supply credit card info for a free app?

    I've owned a 4s for 1 1/2 years and downloaded many free apps.  Now, in the last week, I'm asked for my credit card information to download a free app?  What gives?

    In the world of digital financial transactions, the term "free" is a bit of a misnomer.  Everything has a purchase price.  The price in this case is 0.00.  In order to pay the price for the item, you must enter valid payment information.

  • Why do we need a new PA (PErsonnel Area)  for retirees?

    Hi guys,
    I have seen this at many organizations that they have a separate PA for retirees. Why do they do that? Please explain.
    Thanks,
    Jess..

    Hi Jessica,
    There are many groupings that are determined according to personnel area & subarea of employees including premiums, primary wage types, appraisals, leave types, time quotas, work schedules, pay scales, etc.
    Thus, if retirees have different rights than normal workers in one of these groupings, then making the retirees a separate personnel area or subarea would make sense.
    Regards,
    Dilek

  • Hello my name is Vittorio about 2 years agoi've bought an student teacher licensed cs6 master collection, which worked quite well until recently. I don't know why but now it quit working, and keeps asking for my serial number. When i enter my serial numbe

    Hello my name is Vittorio. 2 years ago i've bought the CS6 master collection which has worked perfectly until recently.
    Now i keep getting the question to enter my serial number and when i do that i get the Invalid reaction. But it is the same number that worked before! What can i do to make CS6 work again?

    Hi Vittorio,
    We would like to know if you have re-installed your product on this machine. We would also like to know your OS version.
    Meanwhile, try:
    Error "The serial number is not valid for this product" | Creative Suite
    Invalid serial number error
    Error "Invalid serial number" | Acrobat 9 | CS4
    -Atul Saini

  • Google maps, why did it change, and why do I need a different public transportation app for every city?

    Is there a way to get google maps back on my phone?  I can't have multiple routing apps for each destination I travel.

    Kevnjhayes wrote:
    Is there a way to get google maps back on my phone? 
    Sure!
    Go here on your device:
    https://maps.google.com

  • Why we dont need sender agreement and comm channel in IDOC to file scenario

    Hi,
    there are 2 queries:
    first query :
    Scenario is "Idoc to file transfer"
    why we dont need sender agreement and communication channel for IDOC to file ,while we do need
    both of these for "File to RFC "
    Answer : which i got is because IDOC sits at ABAP stack but same is valid for RFC also.
    Then why For "IDOC to file" we dont need that.
    Second query:
    Also when i did scenario for File1-RFC-File2 scenario using BPM i have created a interface
    between XI-RFC synchronous to send data which we got from file1 in XI to RFC importing parameter
    and getting data from RFC back to File2.
    Here in IDOC to file scenario why we dont need any interfface for IDOC-XI Asynchronous.
    Regards,
    Mayank
    Edited by: mayank verdia on Jan 13, 2009 11:49 AM
    Edited by: mayank verdia on Jan 13, 2009 11:50 AM

    Dear All,
    For file to idoc scenario is there any possibility to get line items details or xml details i.e the segments and its related field details using reference id, transaction id or interface name or message id in SAP PI 7.0. I know we need to click each and every message in sxi_monitor and look for details.
    For SAP(R3 System) I can create a report and set the job for specific time period so automatically it throws the details(like reference no, document date, invoice no from) in ftp path as .csv file. The same ftp path is maintained in program.
    I wanted to check FTP--->PI postings and I have set the job at r3 system it is working fine and Im monitoring it too.
    Now the end to end scenario is FTP--->PI--->ECC(R3 system). Please help.Many Thanks.

Maybe you are looking for

  • Reports  distribution in reports 10g

    I am making the distribution file whose content are as follows in tne group filter dest_1: desname=c:\\_.pdf_ destype=file desformat=pdf level=report dest_2: desname=HP LaserJet 4 Plus destype=printer desformat=bitmap copies=1 level=Report But when I

  • Reading Health XML files

    I was able to export info from the Health app and got 2 files - export.xml and export_ca.xml. Unfortunately, any app that I can get to open the XML file is just a list of delimited information. I can read in a text editor but can not import into Numb

  • Reader plug in missing

    Safari 5.1.1 on Lion, keeps telling me plug in is missing for Adobe Reader X 10.1.1. I have downloaded it a couple of times and it works fine any where outside of Safari. It works fine in Firefox. Any advice?

  • MBP takes up to 2 minutes to sleep

    My MBP usually only needs 5 seconds to go to sleep mode when I choose the "Sleep" option, but all of a sudden it's been taking up to 2 minutes for it to go to sleep. Why could this be? Thanks

  • Basic C function ends up with error when trying to compile + example

    Hello Guys, Gotta problem here with normal function in c: My configuration: OS 10.8 Xcode 5.0.2 Code: void  printMessage (void) { NSLog(@"Test"); printMessage(); Note that this ends up with error: ProcessPCH /Users/cistyprofil/Library/Developer/Xcode