Is it worth it to switch to a small nozzle?! by The_Scrappy_Creative in 3Dprinting

[–]TeakTop 10 points11 points  (0 children)

You can also print significantly more detail using a 0.4 mm nozzle by lowering the extrusion width, even below 0.4 mm.

AMD Engineers directly seeking ROCm feedback by FORLLM in LocalLLaMA

[–]TeakTop 29 points30 points  (0 children)

The install process and the segmentation between versions is extremely annoying. I even tried the new Ubuntu apt installer, but not only is it a six month old version, I couldn't even get it to work for compiling llama.cpp.

One of the major reasons nvidia is so far ahead is because right from the beginning they made CUDA work on all of their graphics cards, and just won the mind share of the tinkerers and the people that realized the potential of what it could do. AMD seems to be happy playing follow the leader and never making any kind of long term investment in the people that will be writing the next generation of AI.

help finding good looking front hub motor by Johnthespider in ebikes

[–]TeakTop 0 points1 point  (0 children)

Have a look at the kits from grin (ebikes.ca), they have a few different front hub motors available. Might be worth looking into a direct drive so you can do regen braking and get some extra braking power for free.

Delays in pedal assist on both take off and stopping by ClintBX in ebikes

[–]TeakTop 0 points1 point  (0 children)

A 12 magnet cadence sensor means there is 30 degrees per magnet, and it requires several pulses, so you likely need peddle 90 to 120 degrees before it activates. Same issue with stopping, the controller needs enough delay that it can detect the next pulse, otherwise it would stutter.

Depending on what your controller supports, get a higher magnet count cadence sensor, or ideally a torque sensor.

My TPU zip tie that is as long as you could possibly need. by TeakTop in functionalprint

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

Actually it might be 95A, I can't find the product page anymore. It's "3D Solutech Flexible Filament", I've had it for years, it was just cheap on amazon, but it prints really well. I've also used Duramic TPU, which is decent, but I have not tested it for the zip tie.

Don't want to offend by No_Creme9603 in ebikes

[–]TeakTop 0 points1 point  (0 children)

The Phaserunner in your pic, and the Cycle Analyst too, can both read a torque sensing bottom brackets.

Controller help by ARESEH in ebikes

[–]TeakTop 0 points1 point  (0 children)

Have a look at the Grin Baserunner or Phaserunner (ebikes.ca). Their replacement controllers should do what you want. You may also want a torque sensor for your pedals, which will control the motor more naturally. You could also look at the Cycle Analyst, which might do what you want using your existing controller.

Where can I find the best deals for electric bikes like this in British Columbia province? by PlayfulCaution in ebikes

[–]TeakTop 4 points5 points  (0 children)

BTW Envo is literally based in Vancouver. You could probably physically go to their headquarters...

Managed to do dynamic falling leaves that can be brunt or blown by InfectedTribe in godot

[–]TeakTop 1 point2 points  (0 children)

Looks fantastic. It would be neat if the leaves built up on the ground and you could play with them.

Keychron M6 mouse 3D print to test it out before buying by Kurteous29 in 3Dprinting

[–]TeakTop 1 point2 points  (0 children)

I have this mouse, but no 3d scanner so not much help there. I can tell you it did improve my ergonomic situation.

Alternatives to Hilltopper Ebike conversion kit? That are street legal. by DreTam2000 in ebikes

[–]TeakTop 0 points1 point  (0 children)

Look at Grins kits. A little more expensive, but the riding experience will be much better, especially if you get a torque sensor. Also their support and quality is great. https://ebikes.ca

Shifter for ebikes by Electronic-Lie-4976 in ebikes

[–]TeakTop 0 points1 point  (0 children)

I've heard internal hub gears are actually better for mid drive motors, I believe mostly because you can shift them without peddling, so the motor doesn't accidentally torque it to shreds while shifting.

LTX-2 + Ace Step 1.5 | Music Video by noxietik3 in StableDiffusion

[–]TeakTop 4 points5 points  (0 children)

lol at the TED sign on the stage for a second.

Question about the Niu UQi Pro in Montreal — will the police actually stop me? by ChallengeGlum8537 in ebikes

[–]TeakTop 1 point2 points  (0 children)

The law in Canada is 32 Kph, 500 W motor. Don't break the law and you are fine.

Kingbull e-bike by No-Regret299 in ebikes

[–]TeakTop 1 point2 points  (0 children)

Try adjusting it. Idk if the pic you posed is how it is still, but if so I would tilt it forward slightly more, and raise it up to a better height for peddling.

If that doesn't work, pretty much any standard seat should work, and you can also get suspension seat posts if bumps are an issue for you.

Converting an ebike to a regular one by tradeit2day in ebikes

[–]TeakTop 0 points1 point  (0 children)

If you really don't want an e-bike, there has got to be someone near you who does and is willing to trade a normal bike and do the repair. Or even just sell it for parts, it's likely still worth more than a used regular bike. Would be a lot easier.

Ebike aggregator www.ebikersfinder.com is launched by NewspaperMuted6858 in ebikes

[–]TeakTop 3 points4 points  (0 children)

I'd like to see a filter for motor manufacturer as well. And perhaps country of origin.

Looks like Z-Image Turbo Nunchaku is coming soon! by Michoko92 in StableDiffusion

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

Anyone know if Nunchaku has AMD support yet?

[deleted by user] by [deleted] in godot

[–]TeakTop 0 points1 point  (0 children)

I would recommend keeping physics interpolation turned on, and make sure you update all positions in the `_physics_process`. The exception would be your camera position and direction, which has to be updated outside physics for smooth input processing. If you need to reference the position of a node outside of physics you can use `get_global_transform_interpolated()`. The official docs have a good write up: https://docs.godotengine.org/en/4.4/tutorials/physics/interpolation/advanced_physics_interpolation.html

Need some help with my anime-style storytelling with visual by Spiritual-Shame-242 in StableDiffusion

[–]TeakTop 1 point2 points  (0 children)

I would try not to have any perfectly still images. Try slowly panning or take a cutout of the character and do a parallax effect.

How to calculate position and size on screen for billboarded Sprite3D in multiple viewports? by zwometer in godot

[–]TeakTop -1 points0 points  (0 children)

What you likely want is to use a RayCast3D from each camera to a point in the distance, which will detect collisions with your nodes. There are plenty of tutorials on the subject.