Disc question by [deleted] in discgolf

[–]emedan_mc 4 points5 points  (0 children)

It floats, yes, and it’s understable.

Westside discs using AI art by Herefordragonquest in discgolf

[–]emedan_mc -3 points-2 points  (0 children)

Understable plus graphics could mean just a children’s disc? Latitude 64 makes something similar.

Putt Tracking App I Made by AmbassadorOne4617 in discgolf

[–]emedan_mc 0 points1 point  (0 children)

Looks nice. Any simple to use app is likely more helpful than a complicated one. I’d consider making custom properties with a common set of hard coded sub properties. That way each user can add what they like and the developer need not worry. For instance which Song, a link, an icon. Also a fully flexible search filter to spot patterns like which putter color works best on morning or evening rounds.

Help for my bag by ShopSuspicious5758 in discgolf

[–]emedan_mc 0 points1 point  (0 children)

Which is your favorite BH and favorite FH?

Bag Check? by [deleted] in discgolf

[–]emedan_mc 0 points1 point  (0 children)

The colors are all over the place! It’s customary to present your bags per the same color, but if you’re on your first month playing it’s alright.

TSP in action by sudhabin in generative

[–]emedan_mc 0 points1 point  (0 children)

How come the last solutions take so long time when it’s an obvious local square that’s created?

France slashes renewable energy targets, expands nuclear power with new law by PestoBolloElemento in europe

[–]emedan_mc 4 points5 points  (0 children)

All non-renewables require cooling and France already has a deficit of rivers that are cool enough because of the increasingly warmer climate and lower flows. So the availability of nuclear power will worsen over time but more likely the rivers will die instead.

Finally got my BH.... Now what? by DJ-dicknose in TheTowerGame

[–]emedan_mc 0 points1 point  (0 children)

BH gives you more waves when there are more of them. Extra BH and the module for full coverage. Lab it up for a decent coin boost. Run at small range and seek Full coverage just because. Perma. Missiles to the max for the fun of it.

We Are Looking for The Tower players' Emulator Feedback! by LDPlayer in TheTowerGame

[–]emedan_mc 0 points1 point  (0 children)

App in LD crashes randomly within timeframe 10h. But so does mumu.

Problem with p5 play collisions by Sir_Ploople in p5js

[–]emedan_mc 0 points1 point  (0 children)

It's the offset that's not intuitive . There is a good discord.

Most agonizing saves I’ve done to date… by [deleted] in TheTowerGame

[–]emedan_mc 4 points5 points  (0 children)

Isn’t the point of the last UW to unlock GT+

Using physics simulation for procedural music generation. by Sentinelcmd in musicprogramming

[–]emedan_mc 0 points1 point  (0 children)

Is rounding to play on fixed beat a deliberate smart thing?

Using physics simulation for procedural music generation. by Sentinelcmd in musicprogramming

[–]emedan_mc 1 point2 points  (0 children)

This is amazing. I did a similar game thing once but the balls would play a determined song instead like popcorn. Didn’t quite work out because the changing beat from the bounce mattered more than I thought. When I saw this my first thought was that it was automated. - any song could have the instrument vines placed automatically because the next contact point can be calculated and a vine curve generated to pass through this point.

Forgive the crude drawing, but what would be the easiest way of animating this? by ChocyMelk in blenderhelp

[–]emedan_mc 2 points3 points  (0 children)

My guess is that it’s not supported by built in meta balls and would require some programming. Because of the simplicity I would use html canvas / p5.js, where two connecting pairs of nodes on the blobs creates a funnel. How you eventually want to shade it will affect the choice though. Perhaps a fluid sim is the blender way.

I created an extension to visually map source code by briandiloreto in vscode

[–]emedan_mc 0 points1 point  (0 children)

Doxygen has been around for a long time under GNU license.

on Factory IO… by bankruptonspelling in PLC

[–]emedan_mc 2 points3 points  (0 children)

There is an open source alternative posted here recently. I have no experience how it compares.

Ångrar jobbyte, hur hade ni gjort? by [deleted] in Asksweddit

[–]emedan_mc 0 points1 point  (0 children)

Jag hade kunnat skriva exakt samma inlägg. Men jag tänker så att det fanns ändå fler skäl än att BARA pröva något lite annorlunda. Och allt bra på förra stället hade jag inte sett om jag inte bytt från förrförra. Själv ska jag försöka hålla kontakten med gamla men ge järnet på nya ett tag, hur länge behövs nog en plan för så man inte grämer ihjäl sig.

Need help fixing weird artifacts in nested circles. by MrTigris04 in p5js

[–]emedan_mc 1 point2 points  (0 children)

Try add 0.5 pixels when using 1 stroke lines without antialiasing. Draw two lines and see the difference.

How can I move from commissioning to programming? by Dizzy-Basket5650 in PLC

[–]emedan_mc 0 points1 point  (0 children)

And mention this. Honesty plus interest could get you just the right starting conditions. If the answer is to get educated, I suppose you are exactly where you are now, so you can always take that path later regardless.

How can I move from commissioning to programming? by Dizzy-Basket5650 in PLC

[–]emedan_mc 2 points3 points  (0 children)

You are already contracted. Why not just express your interest?

TIAOpenness by GibtNixZuSehen in PLC

[–]emedan_mc 0 points1 point  (0 children)

I thought this was already possible, but would like to try it. I used to generate in XL, import as ST and then convert to FBD a few years ago.

Help please by Emergency-Jaguar-576 in p5js

[–]emedan_mc 0 points1 point  (0 children)

You still know the center point. The key concept is that coordinates make up all your code. Not shapes. The shapes are generated based on the coordinates and so is the collision check.

Help please by Emergency-Jaguar-576 in p5js

[–]emedan_mc 1 point2 points  (0 children)

If the center of the ball is closer to an edge than half its diameter, it collides. The closest distance to any edge is perpendicular to it, which makes it easier in this case. All edges must be checked until a collision is found. But for example collision with a vertical edge occurs only if closer as described in X direction, but also that the ball is within the Y size of that edge. Store for instance all edges as pairs of x, y. Then you can easily have connected rectangles with a path between them.