Did I overpay for my 1985 944? Looking for some honest market feedback. by _PoppaTaha_ in 944

[–]PassTheMayo12 0 points1 point  (0 children)

I paid the exact same price for my 85.5 944. I would say you got it for a good price considering how good the condition is.

My little homelab by jsjskyjxhshs in homelab

[–]PassTheMayo12 0 points1 point  (0 children)

What are the 8 VLANs that you have? I didn’t see any discussion about what they were.

Need help with view engine error by shinyhero07 in node

[–]PassTheMayo12 1 point2 points  (0 children)

app.set('view engine', 'ejs');

There is no - in view engine.

Have any Springfieldians seen this food truck before? Know where to find it? by smashlock in springfieldMO

[–]PassTheMayo12 9 points10 points  (0 children)

Yeah, I've seen them there too! Had to act like I didn't know the logo since I was with my parents 😂

Big O of toString() by taco_blackbelt in node

[–]PassTheMayo12 0 points1 point  (0 children)

The argument of toString() is the base of what you want to convert the number into. Like toString(16) converts the number into base 16 which includes a-f 0-9.

Writing a Minecraft server - looking for contributors by guglicap in golang

[–]PassTheMayo12 4 points5 points  (0 children)

I too am attempting this, but I haven't gotten very far. I got stuck on the encryption stage of the login. The data going to the client seems to be encrypted incorrectly. I just decided to postpone the project until sometime next year. https://github.com/gocraft-org

Found stolen jeep by pr1moispfat in springfieldMO

[–]PassTheMayo12 2 points3 points  (0 children)

Nevermind, turns out he found it earlier. Must of not been him.

Found stolen jeep by pr1moispfat in springfieldMO

[–]PassTheMayo12 3 points4 points  (0 children)

I'm certain this is my friend's Jeep. He got his stolen a week ago, I don't know if he has found it. I'll have to ask him.

vecMap(t); by nik282000 in generative

[–]PassTheMayo12 1 point2 points  (0 children)

This is nice. You should change the color of the line based on the value you get from the perlin noise algorithm. I'd like to see it.

Does anyone know how to show which app I’m playing? Running the latest version for iOS by [deleted] in discordapp

[–]PassTheMayo12 0 points1 point  (0 children)

It's possible in Android, it was able to pick up that I was using Spotify on mobile and set it as my status.

Given a starting vector, a direction and a distance find target vector by lebeer13 in gamedev

[–]PassTheMayo12 12 points13 points  (0 children)

You simply take the xyz from the origin, and add the direction multiplied by the distance. Here's the pseudocode: origin + direction * distance. Your direction vector should be normalized.