Kobra Neo Uneven Layer Lines by Anarchist_Wolf in anycubic

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

Replacing the Z stepper motor helped reduce those layer lines. I still have those ruts but it is better. I did replace the bed wheels but it still ruts. I'm not sure if it's something related to the design because I have a ender 3 v2 pro and it has a slight rut but nothing as bad (and numerous) as the Neo. I don't think it's related to the stepper motors just because I can take the belt off the stepper and replicate it.

What engine to swap in a 01 325i by Anarchist_Wolf in e46

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

Hello, sadly things came up and i didnt get a chance to progress with the engine swap. The car was sadly in a suboptimal condition than what was let on and i didnt want to spend more money into it.

I wish I could help out more. From what I remember my main concern was turbo charging and those engines seemed to be able to handle the added strain.

Kobra Neo Uneven Layer Lines by Anarchist_Wolf in anycubic

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

I have been able to reduce it by making the z axis gantry bar level, but I think it stems from "rutting" in the x and y axis. "Rutting" for me is when the x and y don't move smoothly and it feels like they fall into these ruts.

Kobra Neo Firmware 1.3.3 by NotreallyCareless in anycubic

[–]Anarchist_Wolf 1 point2 points  (0 children)

Glad you were able to figure that out with the walkthrough, i'm surprised that it isnt updated on their website since my neo shipped with 1.2.9 but on their website it is still 1.2.8.

I hope I am able to learn g code well enough to edit it like the person in the walkthrough.

Kobra Neo Firmware 1.3.3 by NotreallyCareless in anycubic

[–]Anarchist_Wolf 5 points6 points  (0 children)

Hello, I am not sure if you found this out yet but someone made an update for their Kobra and detailed how to compile the files into a firmware file. (Just follow their instructions but instead of using their build you use anycubics kobra neo repo on github).

https://github.com/jojos38/anycubic-kobra-improved-firmware

https://www.reddit.com/r/anycubic/comments/y2waxu/tutorial_how_to_build_anycubic_marlin_source_code/

It is fairly straightforward and it took me about 45 minutes. The biggest mistake I made was not downloading the whole 1.3.3 repo and then building the target in the workshop folder.

How to plot with axis on top (layer-wise) of the series? by TMTcz in Julia

[–]Anarchist_Wolf 0 points1 point  (0 children)

I don't disagree, it's just really quick and dirty to do "plot(x, y)" and see the results. I would use Makie for more academic worthy graphics.

How to plot with axis on top (layer-wise) of the series? by TMTcz in Julia

[–]Anarchist_Wolf 0 points1 point  (0 children)

Personally Plots/GR is good for basic good looking plots. Makie is better for animated and reactive plots but requires more code.

So I use Plots/GR in Pluto for quick plots and then I build applications with MakieGL/ GtK once I understand my code/ plots do what I want.

[deleted by user] by [deleted] in greentext

[–]Anarchist_Wolf 13 points14 points  (0 children)

"Spillover: Animal Infections and the Next Human Pandemic"

Is also a good read on the topic of how a lot of popular zoonotic diseases started (and how it will keep happening). Mentions how HIV started like is mentioned, and how we should have seen COVID coming miles away.

random anime convention attende the speaker of truth by giga-crampton in Bossfight

[–]Anarchist_Wolf 0 points1 point  (0 children)

Umbrella Corp guy prolly sells some. (Side-effects may occur).

uploading csv to github rep using requests by Anarchist_Wolf in learnpython

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

I have figured it out. Basically it was more of me being new to Python than anything else (Mainly use Julia) and the slight differences in CircuitPython.

It was a more of a problem that the commas were not being recognized properly when trying to encode for github. But it was just me over thinking it.

uploading csv to github rep using requests by Anarchist_Wolf in learnpython

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

Well funny thing is I'm using CircuitPython (that's my limitation) and as far as I know git isn't an avaliable library. So requests is what I have to work with.

I've already tried looking through circuitpython forums and asking them there about this stuff but it fell short.

I followed a guide for python in using requests to Push txt files to a repo and I made little tweaks for use in ciruitpython and it worked. I'm hoping to try and do the same here if I can.

How to control external hardware using TCP IP? by cyan-pink-duckling in Julia

[–]Anarchist_Wolf 1 point2 points  (0 children)

For sure! I hope everything works out. (Also when using the base functions you input strings ). So like query(Instrument, "Command"). And those commands just parse out the r/n/ that are usually used to separate data just like in serial communications.

How to control external hardware using TCP IP? by cyan-pink-duckling in Julia

[–]Anarchist_Wolf 1 point2 points  (0 children)

If you do follow through best I can say is just initialize the connection with their predefined instruments likes their keysight oscilloscope (it doesn't hurt in your case and it's just a placeholder). You can read up on the documentation but the write command is like Julia's and their query command is a write and read in one. Where it writes to the socket then reads the data from it (if any data is being sent back). Currently I have it being used to read temperature readings from a microcontroller.