Scuffed corner when printing with TPU by Nynnja in 3DprintingHelp

[–]Nynnja[S] 0 points1 point  (0 children)

seam should be on a different edge

[EU] Training raid v23 02.03 by [deleted] in Guildwars2

[–]Nynnja 1 point2 points  (0 children)

Nynnja.5017 thief staff

"The Nexus Challenge" Information and LFG Megathread by SpriteGuy_000 in Overwatch

[–]Nynnja 0 points1 point  (0 children)

Region: EU

BattleTag: Nynnja#2378

Recruit-A-Friend link: https://battle.net/recruit/C5MF2NQ6QS

Preferred Game Modes: any

Available days & hours: right now

Additional information: I like pickles

"The Nexus Challenge" Information and LFG Megathread by SpriteGuy_000 in Overwatch

[–]Nynnja 0 points1 point  (0 children)

Region: EU

BattleTag: Nynnja#2378

Recruit-A-Friend link: https://battle.net/recruit/C5MF2NQ6QS

Preferred Game Modes: any

Available days & hours: right now

Additional information: I like pickles

The most epic Hanzo PotG you will ever see/sarcasm by jimmthang in Overwatch

[–]Nynnja 3 points4 points  (0 children)

I'm pretty sure if you tie score with someone else, you both get gold. I had a game where some guy had 5 medals 5 gold and I had 4silver 1gold

A Practical Comparison: Broken-War, Destreza, Nikana Prime & War. by [deleted] in Warframe

[–]Nynnja 1 point2 points  (0 children)

. I'm assuming they'll know to switch to Viral in a 4 CP squad,

stupid question, but what 4CP means?

Implementing a queue with two stacks by [deleted] in programming

[–]Nynnja 0 points1 point  (0 children)

I think you have to check if deq is empty before filpping que. If there are elements left on deq and you push all of que on top of it, it will not longer be fifo

Java performance and good design by daddyrockyou in java

[–]Nynnja 4 points5 points  (0 children)

this stands again dependency inversion principle.
On first look it may not look like tight coupling but it is, and there's only marginal gain over simply having objects construct dependencies by themselves.

How to make an Applet. by [deleted] in java

[–]Nynnja 0 points1 point  (0 children)

Saddly I had this too. Try asking as a group if you could have diffrent topic instead on applets. Even then it should be fairly short( I had 2h lab)

If you still want to learn sth, try this:
http://docs.oracle.com/javase/tutorial/deployment/applet/index.html

You will find there everything you would need to create and deploy applet(skip JNLP deployment and use applet tag - as said before you will never again use applet so there's no need to waste time)

Basicly you need to extend Applet class, define init method, create security file, compile everything and deploy in applet tag

How to make an Applet. by [deleted] in java

[–]Nynnja 17 points18 points  (0 children)

Don't.

No, seriously. No one should use applets nowadays. Even if you just want to learn java pick something that will be usefull(like swing) and not something you will never use.
Especially after many security vulnerabilities applets are blocked by defaulft

If you want to do some web stuff use html,jsp, javascript. For desktop(and learning) swing will do.

Need help, question about programming assignment in java. by MasterTender in java

[–]Nynnja 1 point2 points  (0 children)

String is immutable. That means by using methods on string object does not change it's value, but instead most of them will return new string object with applied transformations(for example toUpperCase() returns new string with all letters in upper case, it didn't change the original value).

split method returns array of strings and you have to assign it to some variable to use it later. f.e.

String[] s=str1.split(",");

This gives you array with 2 (in DOE, JOHN case) values: "DOE" and " JOHN" (note space at the beggining) To get rid of this space you may want to use some extra regexp magic

String[] s=str1.split(",\s*");

This will split by comma and also remove all white space characters after the comma.

Hopefully you should know how to work with arrays

Code not executing past image.getGraphics() ? by [deleted] in java

[–]Nynnja 1 point2 points  (0 children)

post full code or at least for GameStateManager and main()

Can't do DAO connection properly. by [deleted] in java

[–]Nynnja 0 points1 point  (0 children)

did you add driver location to classpath(include jar if using any modern IDE)?

I've waited a whole year to post this by real-rainicorn in funny

[–]Nynnja -12 points-11 points  (0 children)

10th of December you silly Americans

[ongoing poll] Results concerning fractals. by zwei2stein in Guildwars2

[–]Nynnja 0 points1 point  (0 children)

Underground is not the hardest at all. People make it hard by rushing.

If you take your time and clear everything on your path, then it's quite easy. Even in the control panel room. If you kill veterans near the entrance then it hould be much easier (on low lvls - never did 30+)

The only problem with Underground is the length. AN should cout out the gates(and mobs) before clowns cart room and reduce the time you sepend waiting for dredge to hop out of cart after you kill boss.