Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)NO
Posts
6
Comments
442
Joined
2 yr. ago

  • I don't think there is a way to force black to loose, at least given they play well. Obviously if they take the queen they loose, but if they move a pawn forward they can keep playing indefinitely.

  • Looks like nothing got printed after the bottom layers, try increasing lift distance (10mm or so), decrease layer thinkness (0.05mm is fine) and increase exposure times (3-5s or so).

    Looking at your print settings, it looks like the lift distance is low, which could be caused the print to fall of the lift plate.

    Generally the bottom layers are printed with a much more aggressive settings to guarantee they stick to an imperfect lift plate, and those seem to have printed fine, so the printer can work with very long exposures. (30s or so)

  • With resin when a print fails, you just get a half print stuck to the bottom of the resin tank, no spaghetti. The most common cause of failure is the part falling of the lifting platform, typical due to poor supports, but rarelybecause the platform is crooked.

    Leveling is pretty easy on most printers, just loosen the bed, remove the resin tank, placing some thin cardboard in it's place, lower the platform until it touches the cardboard, and lock it in place.

  • So many sites just outsource to content farms and have flooded the internet with SEO crap for years. With automation making this easier and cheaper it will probably only get worse.

    Right now, generally well know sites like Wikipedia are fine, random people's blogs are fine, but the first google result from some random company is almost guaranteed to be shit.

  • I have done some tests, and under low memory conditions, when frequently writing to the drive (especially with a high /proc/sys/vm/dirty_writeback_centisecs) swap can actually reduce the amount of writes to the drive. If you do have enough memory, swap is hardly used but still results in a noticeable speed improvement.

  • I keep getting up to go work on a (perpetually unfinished) hobby project half way through most movies. For some reason most movies are the least entertaining entertainment possible. (Ofc better than staring at a wall)

  • Your going to have to read the input one piece at a time, allocating a bigger buffer as you go. (realloc is the way to go here) I recommend putting the input reading code in a function do you can easily use it multiple times.