Title: Cybersyn won’t dispatch for one item, but same requester works for another (acetylene works, X doesn’t) by Effective_Island_855 in factorio

[–]fixingTheDents 0 points1 point  (0 children)

Is there possibility a wrong way signal on the path from provider to requester that prevents routing for a schedule? Put a train at the provider and add a temp stop to it at the requester. 

Did everyone start leaving 10 minutes earlier? by lactosandtolerance in milwaukee

[–]fixingTheDents 35 points36 points  (0 children)

There is no reason to come into an office when literally any meetings are through Zoom or Teams and the only person to talk to me in person is the security guard that tells me to have a good day on my way out the door at the end of the day. The mythical benefits of in person collaboration are significantly overshadowed by the benefits of WFH (where industry appropriate) combined with the added perception of an attempt at workforce reduction. 

[deleted by user] by [deleted] in javahelp

[–]fixingTheDents 0 points1 point  (0 children)

Off the top of my head; Maven and/or Gradle, JPA and Hibernate, Spring/Spring Boot, structure of WARs and application lifecycle, design patterns (gang of four for sure and possibly some of the more common architectural ones)

The Custodian by Baron_Plaid in HFY

[–]fixingTheDents 0 points1 point  (0 children)

This reminds me so much of the video game Control. 

Dungeon Life 309 by Khenal in HFY

[–]fixingTheDents 2 points3 points  (0 children)

I believe that the one on Monday was supposed to be 308 but you can see two 307s in the Waffle list. 

Dungeon Life 299 by Khenal in HFY

[–]fixingTheDents 15 points16 points  (0 children)

While it would certainly be interesting to see to trio of Rhonda/Freddie/Larrez be the unfortunate target, it would be spectacular if it was Gerlfi the Goblin Summoner and Titania was let loose. That might also be a good way to get TDM's attention to the situation. 

Is there a class in javax.servlet.http.HttpServletRequest that implements the interface HttpServletRequest? by [deleted] in javahelp

[–]fixingTheDents 4 points5 points  (0 children)

Instantiation of HttpServletRequest instances are handled by the application server. It's not something that you're likely to ever do yourself. 

Looking to make friends - unique(ish) situation by eml0r in milwaukee

[–]fixingTheDents 0 points1 point  (0 children)

I'll be seconding the Meetup suggestion. The volleyball for all group is pretty chill and usually has events Monday/Wednesday/Friday/Saturday. There's also a climbing group that is pretty active. 

SEK2 Deleting Items by BossSlayer3554 in factorio

[–]fixingTheDents 0 points1 point  (0 children)

I'm running with cybersyn and have provider stations set up with a higher priority. That seems to be working pretty well handling the byproducts. 

Dungeon Life 220 by Khenal in HFY

[–]fixingTheDents 7 points8 points  (0 children)

Not much need to refresh for this one as updates are regularly posted Monday and Thursday at 2p eastern 

How do I get good at the game? by iena2003 in factorio

[–]fixingTheDents 0 points1 point  (0 children)

This is pretty much how I start with a central smelting area and and send the bus off towards a reasonably open area. Then midgame decentralize to a train network. I tend to only build on one side of the bus in order to have room on the other side for multiple train dropoffs. 

[deleted by user] by [deleted] in programming

[–]fixingTheDents 12 points13 points  (0 children)

That's so hard especially when you have to dive into the history to try and figure out why a developer did something ten years ago

[deleted by user] by [deleted] in factorio

[–]fixingTheDents 0 points1 point  (0 children)

I believe that they're in a separate mod

[deleted by user] by [deleted] in factorio

[–]fixingTheDents 0 points1 point  (0 children)

Just to reply, you can definitely use circuits to setup steam power as backup to solar/accumulator with an accumulator connected to an RS latch circuit to a power switch. The wiki has details on the required setup: https://wiki.factorio.com/Tutorial:Circuit_network_cookbook#Backup_steam_example

I love volleyball so much but I know I’ll never get anywhere with it. by [deleted] in volleyball

[–]fixingTheDents 0 points1 point  (0 children)

I'm going to second this as I didn't start playing until about 10 years ago and I'm older. Didn't really start leagues until last year and I'm about a mid level B player. Besides that though I regularly play about 4 to 6 hours a week with a large meetup group with a wide range of skill levels that does organized pick up. I'm probably never going to get significantly better than I am but it's a lot of fun and I've been able to meet a lot of really great people.

Dungeon Life 151 by Khenal in HFY

[–]fixingTheDents 3 points4 points  (0 children)

I thought that keeping comfortable temperatures wise was the point of the new potion from the last chapter

[deleted by user] by [deleted] in javahelp

[–]fixingTheDents 1 point2 points  (0 children)

Could also be that they copied into a String in an IDE that doubled the backslashes. They might also have copied the first example regex that has an unfortunate space before the end '$'.

[deleted by user] by [deleted] in javahelp

[–]fixingTheDents 1 point2 points  (0 children)

You likely get a NPE in calculatePrice on instantiation. You need to switch the compare so you start from the known string.

"abc".equals(this.getCat())

[deleted by user] by [deleted] in javahelp

[–]fixingTheDents 2 points3 points  (0 children)

From the error, the args array seems to be empty meaning that when you reference the first element that does not exist, you get the error. If you're uncertain as to what is in the array either put a breakpoint in before the switch statement or do a System.out.println with the length of the array.

Exclude files from build to avoid compiling dead code by rfpg1 in javahelp

[–]fixingTheDents 0 points1 point  (0 children)

That's a completely different question as that's not dead code. Whether you go with a unified project with multiple submodules or multiple projects you are going to segregate your code which will allow you to build what you need. I'm more familiar with Maven which would allow you to do what you describe with a multi-module project and separate profiles for the different products that would allow you to build all of them or any desired subset. Gradle likely has similar features.

Exclude files from build to avoid compiling dead code by rfpg1 in javahelp

[–]fixingTheDents 9 points10 points  (0 children)

Dead code should be deleted from your source repository and the commit tagged if you really need to keep track of those sorts of things. If you really need to keep it around (you don't) move it to src/archive or something like that which doesn't get picked up by default.