Open Side Menu Go to the Top
Register
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** ** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD **

10-03-2015 , 05:21 PM
Quote:
Originally Posted by jmakin
Lol, actually it's funny you say that, I've corresponded with both of them a bit via email and I do get that sense.

Barrin's class is with her, I skipped it this semester because I just can't stand her teaching style. I seem to be an outlier though, everyone loves her. I'm hoping next semester a different teacher offers the course.

She was pretty cool to me last semester though, I got an 87.8 or something and she gave me an A for the letter grade. Pretty cool of her because she didn't have to at all.
That's not cool, it's grade inflation, and it's bull****. Basically steals from the students that actually earned an A, because it won't mean nearly as much.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
10-03-2015 , 05:24 PM
Those other students won't know, and thus it doesn't affect them.

Besides, what you get out of school is what you learn, not what letter goes beside what class name.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
10-03-2015 , 06:13 PM
Lot of people know about Java here!

I have some program I'm trying to use. The error is:

Invalid initial heap size: -Xms5g
The specified size exceeds the maximum representable size.
Error: Could not create the Java Virtual Machine.
Error: A fatal exception has occurred. Program will exit.

I ran java -server -Xms4g

Got the same error

I ran java -server -Xms3g

Error occurred during initialization of VM
Could not reserve enough space for 3145728KB object heap

I can't run this much memory in my VirtualBox, so I'm using Windows7 with 6g RAM. I had to do this hack to get JVM server to run in the JRE:

http://stackoverflow.com/questions/1...server-jvm-dll

Any ideas to get this to run?

(rant: I hate Windows)
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
10-03-2015 , 08:31 PM
I think I know what the issue is. Windows is running over 2g of "stuff" and I don't know what it is. Even with everything shut down, it is well over 1g of "stuff," so it looks like I won't be able to run this program.

Is there any way to do swap memory on Windows so I can run this VM?
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
10-03-2015 , 09:05 PM
I had memory issues with my ****ty laptop, so I changed the default location of filepage.sys to my external HD and that fixed it. Not sure that'll fix your issue but I had like 80% of my memory just trying to run it at idle
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
10-03-2015 , 09:09 PM
Quote:
Originally Posted by KatoKrazy
That's not cool, it's grade inflation, and it's bull****. Basically steals from the students that actually earned an A, because it won't mean nearly as much.
Lol or maybe she felt that I did A level coursework and my final grade didn't reflect that. I don't see how that "steals" from anyone.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
10-03-2015 , 09:28 PM
I tried to run an older version of the program. It ran into a whole bunch of deprecated Java commands, which I removed from the run script. Now I have this wonderful error:

Could not reserve enough space for 3072000KB object heap

*sigh*. I'm just not going to deal with it. The external HD idea sounds pretty interesting, but it isn't important enough for me to play around with the system (prepping for a job interview, but I can explain this one off, I think).
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
10-03-2015 , 10:32 PM
It could be possible to use a java decompiler to get the source if it wasn't obfuscated and examine the code.
If possible debugging the program, stepping through he code and seeing when the error happens by what execution of code.
Maybe you find that a certain feature, using x resources could be removed and it now runs with lower requirements.

http://jd.benow.ca
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
10-03-2015 , 11:13 PM
This may be a stupid question, but are you using 64 bit windows?
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
10-04-2015 , 02:04 AM
Yes. 64 bit.

The Java is open source, but doesn't really do much. The other stuff is compiled though.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
10-04-2015 , 02:59 AM
Doesn't the jvm need a continuous block or something silly like that?

I remember with some of the C++ projects I have worked on that launched a jvm for some external stuff, they sometimes would allocate the approximate memory needed just to free it again before launching the jvm. That seems to kick windows into shuffling the other stuff around to get a continuous block. Or something like that; it's a really vague memory.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
10-04-2015 , 04:35 AM
Quote:
Originally Posted by daveT
I tried to run an older version of the program. It ran into a whole bunch of deprecated Java commands, which I removed from the run script. Now I have this wonderful error:

Could not reserve enough space for 3072000KB object heap

*sigh*. I'm just not going to deal with it. The external HD idea sounds pretty interesting, but it isn't important enough for me to play around with the system (prepping for a job interview, but I can explain this one off, I think).
i think you probably need to change your page file size for Windows. Here is a link that may provide as to why matching page file size to the way you use your system varies. Keep in mind that your system may be slower, hopefully you have an SSD.

Page file size
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
10-04-2015 , 05:26 AM
Quote:
Originally Posted by daveT
Yes. 64 bit.

The Java is open source, but doesn't really do much. The other stuff is compiled though.
Also double-check that you have a 64bit Java Runtime. (Plenty of people have 32bit Java installed on 64bit Windows fwiw, and there is a ~1.3G heap limit on the 32bit JRE.)

Edit: Also, what are you using for Xmx?

Last edited by plexiq; 10-04-2015 at 05:52 AM.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
10-04-2015 , 02:00 PM
Quote:
Originally Posted by adios
i think you probably need to change your page file size for Windows. Here is a link that may provide as to why matching page file size to the way you use your system varies. Keep in mind that your system may be slower, hopefully you have an SSD.

Page file size
I increased it but still get the same error.

Quote:
Originally Posted by plexiq
Also double-check that you have a 64bit Java Runtime. (Plenty of people have 32bit Java installed on 64bit Windows fwiw, and there is a ~1.3G heap limit on the 32bit JRE.)

Edit: Also, what are you using for Xmx?
I downloaded the 64 bit version. The program looks under x86 for the files. I downloaded JRE to get the stuff to read, then did the server hack thing I posted above.

Xmx is set to 8g by default.

The program works by calling a bunch of Java load scripts to Jetty, then does whatever magic to get the rest of the compiled code to work, which is not in Java.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
10-04-2015 , 02:33 PM
Assume you applied to a full-blown tech company. You send your resume into a unicorn-hunting job ad. They write you and invite you in for interview. No phone screen, no pre-testing. What's going on here?
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
10-04-2015 , 03:14 PM
Organ harvesting
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
10-04-2015 , 03:28 PM
Quote:
Originally Posted by daveT
What's going on here?
white privilege

welcome to texas my boy

** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
10-04-2015 , 03:43 PM
I used to not like that song. Now you just made me hate it.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
10-04-2015 , 03:58 PM
Worst song on the entire album
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
10-04-2015 , 04:15 PM
Quote:
Originally Posted by daveT
Assume you applied to a full-blown tech company. You send your resume into a unicorn-hunting job ad. They write you and invite you in for interview. No phone screen, no pre-testing. What's going on here?
It's local? They probably just like doing in person interviews.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
10-04-2015 , 04:29 PM
Last time I went to something like that they offered me to come over and work a few months for free, but that's probably not a thing in US.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
10-04-2015 , 04:31 PM
Quote:
Originally Posted by Roonil Wazlib
Worst song on the entire album
I think that is the best song on the entire album...

Quote:
Originally Posted by jjshabado
It's local? They probably just like doing in person interviews.
Yes, local.

First time I've had this happen. There was one other company that did it, but, but not exactly a tech company, though tied very much into tech. I guess that talking to a non-tech recruiter doesn't count in many ways, so I could say it has happened several times.

This one is a major moonshot. I have zero confidence going into this one, which makes it more confusing that they are just bringing me in. I think I'd last about 3 minutes in a phone screen, to be honest.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
10-04-2015 , 04:33 PM
Quote:
Originally Posted by Absurdas
Last time I went to something like that they offered me to come over and work a few months for free, but that's probably not a thing in US.
That's called an unpaid internship in the US.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
10-04-2015 , 04:38 PM
Yea, that's a thing here too, but it was advertised as a job with pay depending on skill, which they didn't even test.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
10-05-2015 , 12:19 AM
Fellow video game nerds,

Pretty awesome and crazy technical explanation of what's happening during the Super Mario World credits glitch, recently confirmed on console:

** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote

      
m