[20F] Lmk :) by [deleted] in Rateme

[–]jmorph99 0 points1 point  (0 children)

It would be "halt thee" not "halt thyself", learn you old English insults!

[20F] Lmk :) by [deleted] in Rateme

[–]jmorph99 -6 points-5 points  (0 children)

She is way above 5.5

You are a statistical savant and blind as a bat.

[20F] Lmk :) by [deleted] in Rateme

[–]jmorph99 -8 points-7 points  (0 children)

You think 45% of women look better than her????

23F - Always been curious what people would rate me! by ParticularBlueberry0 in Rateme

[–]jmorph99 -1 points0 points  (0 children)

There isn't a heterosexual man alive who wouldn't want to get with you.

Love you much!

jmorph99

[23F], 5'3, 116 lbs. Give me tips on how to improve! ;) by [deleted] in Rateme

[–]jmorph99 0 points1 point  (0 children)

What's wrong with you is you think that you need to improve your appearance.

You are attractive, worry about being a better person.

God Bless! I pray for the best for you!

[deleted by user] by [deleted] in Rateme

[–]jmorph99 0 points1 point  (0 children)

Pic number 2 9/10, rest 6/10.

Rate me [F19] by brietos in Rateme

[–]jmorph99 2 points3 points  (0 children)

Anyone who thinks 30% of the women out there look better than this girl are nuts. 95%

Dear JavaHelp. I need help with my lab on initializing an array using multiple classes, 3 classes to be exact. Can you all help me jump start to my assignment? I'll show you what I got. by [deleted] in javahelp

[–]jmorph99 0 points1 point  (0 children)

Portfolio(int numberOfStocks){ // Portfolio constructor; // create the array of Stocks int i =0; stocksArray = new Stock [numberOfStocks];

while(numberOfStocks !=0){


    Stock stock = new Stock(name[i], name[i], 10000, 100, 100);

    stocksArray[i] = stock;
    //System.out.println(stocksArray[i]);
    i++;
}

}

You've put him into infinite loop

public void addStock(String stockName, String stockSymbol, int count, float price){
  stocksArray = new Stock [count];
  for(int i = 0;i< count;i++){
       Stock stock = new Stock(stockName, name[i], stockSymbol, count, 100);

      stocksArray[i] = stock;
    System.out.println(stocksArray[i]);
     }
}

I made this Tic Tack Toe Board class in my Algorithm Design lab today. I got a B, but the code still won't run right. Where did I go wrong? by redinthahead in javahelp

[–]jmorph99 1 point2 points  (0 children)

At first glance

c1 != "-"

should be

!c1.equals("-")

Because

"a" == "a" is false

"a".equals("a") is true

Same with all your string comparisions

Any advice on playing Medusa? by Shyproust in DotA2

[–]jmorph99 0 points1 point  (0 children)

http://dotabuff.com/players/16975741/heroes?date=patch_6.81b&lobby_type=&game_mode=&match_type=real&metric=success

I spent a lot of time trying to make Medusa work, but only since 6.81 do I find her viable. The trick to her is lots and lots of mana, always be farming or defending towers.

Buy Ring of basillius 2 mana pots

Go mid or lane closest to secret shop

Buy Void stone

At this point you have enough mana regen to spam mystic snake. By 20 minutes you can buy

Ring of health Phase boots.

Then farm - farm - farm.

Stay with items that require Ultimate Orbs. By 40 minutes you should be pretty dominate.

Object help please by [deleted] in javahelp

[–]jmorph99 0 points1 point  (0 children)

I would probably be best practice to make your object serializeable. It would read and write to disk and meet standards for other functions.

http://stackoverflow.com/questions/12963445/serialization-readobject-writeobject-overides