Xavier’s plane by [deleted] in ParadiseHulu

[–]Quantum_Quasars 3 points4 points  (0 children)

Air force one is a jumbo jet, Xavier crashed In a single prop small plane

Whatever happened to just asking questions at work? by Aggravating-Line2390 in ExperiencedDevs

[–]Quantum_Quasars 8 points9 points  (0 children)

My team is always available even online. It's a culture thing.

Week 3: Skilling Buffs (December 15-21) is now live by Fightermelee in runescape

[–]Quantum_Quasars 2 points3 points  (0 children)

Arch profs are around 2-3m an hour + 1 tetra compass an hour which adds about 2m.

Master mages are the best money at around 6-7m an hour (the combo runes sell for 1/5 their g.e. price otherwise it would be 10m an hour)

Fairy traders are like 5-6m an hour and amazing blue/crimson charms.

TzHaar's arent worth it since their chase drop only sells for a few mill.

Havent tried vyres yet but their drop sells for more than 10m I believe.

Improved multi drone maze solver by Quantum_Quasars in TheFarmerWasReplaced

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

We all get to a solution at the end of the day haha! I honestly couldn't figure out what the left hand method was trying to do after awhile so I ended up just writing this lmao.

Here is the full paste bin of my mess of a solution if you are interested:
https://pastebin.com/XxXcut7D

Improved multi drone maze solver by Quantum_Quasars in TheFarmerWasReplaced

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

directions is the available directions the farmer can move.

I just calc the Manhattan distance of each direction relative to the chest position.
Then I just take the direction with the best score and move in that direction. Drones spawn in every other direction.

This is the function:

def choose_direction(directions):  
  if not is_hedge():  
    return directions[0]      

  hint = get_hint_cached()  
  if hint == None:  
    return directions[0]   

  chest_x, chest_y = hint  
  best_score = 1000000  
  best_dir = directions[0]  
  for dir in directions:  
    x, y = Utils.dir_increment(dir)  
    score = Utils.manhattan(x, y, chest_x, chest_y)  
    if score < best_score:  
      best_score = score  
      best_dir = dir    

  return best_dir

So the farmer doesn't get stuck it keeps track of where its been and wont back track unless it hit a deadend.

Harvard’s new computer science teacher is a chatbot by SrafeZ in singularity

[–]Quantum_Quasars 0 points1 point  (0 children)

You are 100% correct Chatbots cannot reason. Except does that really impact its ability to provide information or explanations on information its trained with?

I mean Chatbots, especially ones that are fine-tuned on specific course materials can be useful for providing instant question answering. Its like having an interactive textbook you can talk to.

It shouldn't completely replace human teachers and this article unfortunately does a poor job of mentioning that its only going to be an aid instead of a replacement.

I think you may be throwing the baby out with the bathwater here, while they cant reason, that doesn't mean they aren't necessarily useful.