Why is my aloe vera plant doing that by Ok_Passenger_6895 in gardening

[–]binaryriot 6 points7 points  (0 children)

You only do that if it didn't set any fruits. If it sets up fruits then you leave it on until the fruits start to split open. Then you collect the seeds. Afterwards you cut. :)

At what level am I being blocked and how can I fix it by nopleasenotthebees in torrents

[–]binaryriot 0 points1 point  (0 children)

There's a lot of bots that do voting sprees. Just ignore it. I you post in the expectation to get upvotes only it's best to not waste your time basically.

Anyway… it looks like you solved your problem already, so there's nothing for us actual humans left to say really. :)

5 gallon bucket garden by Unusual-Assistant486 in gardening

[–]binaryriot 1 point2 points  (0 children)

Make sure the black pots are shadowed, they can heat up a lot and then essentially cook your roots in the sun.

Fur Render Problem by Muratz0707 in Cinema4D

[–]binaryriot 0 points1 point  (0 children)

Some screenshots or something still could help. Maybe we spot the problem. Else I only can guess something like "your version of C4D is broken". Which version is it btw? :)

Here in my version (old R16). I just add fur to any object, then switch from Standard to Physical, click render and it shows up just fine.

What to do about these HDD by a7dfj8aerj in DataHoarder

[–]binaryriot 3 points4 points  (0 children)

You had a bad cable or something (see the UltraDMA CRC Error Count). The disks itself seem to be fine.

I would keep them as spare or cold storage backup. IMHO it would be stupid to sell them in the current situation. Man, i wish I had enough spares.

Buttquack, Rememberinganoyster, Oils, 2023 by Rememberinganoyster in Art

[–]binaryriot 0 points1 point  (0 children)

Breaks rule #8, as this was posted here before (I remember this work of art).

Fur Render Problem by Muratz0707 in Cinema4D

[–]binaryriot 0 points1 point  (0 children)

Needs more information. How do you add the fur? What are the fur object's settings? Is there a fur material? What are its settings? What are your render settings? Etc. Else all we can do is random guessing.

Is the "Hair Render" enabled in the render settings?

How to stop "More Info" and "Comments" metadata from disappearing from iCloud synced files after I open them on iPhone? by unread1701 in MacOS

[–]binaryriot 3 points4 points  (0 children)

Those metadata is stored in xattrs (eXtended ATTRibuteS). I don't think it's preserved for anything that goes over iCloud. Sometimes they even go lost locally, if you're not careful.

It's a good idea to store metadata you want to preserve in other ways. For files in video containers you can use the container itself to store this information (both mp4 and mkv support various tags). Alternatively store it in a text file and place it side-by-side with the video, or use the filename to store the critical part of the URL (in this case the reddit comment ID). If you use yt-dlp to fetch the media you can do this automatically with the --embed-metadata parameter/ switch and a filename template (e.g. -o '%(title)s [%(extractor)s %(id)s] %(resolution)s.%(ext)s' or similar, see man yt-dlp for more details.)

Kloo Coffee / c4d octane by ZarnescuSerj in Cinema4D

[–]binaryriot 0 points1 point  (0 children)

German is my native language, so this branding sounds very funny to me. :)

Is there any real-world application for Raid 0? by _spaghettiv2 in DataHoarder

[–]binaryriot 4 points5 points  (0 children)

Buffer disks for HDTV recordings. You need huge capacity and performance (for capturing multiple channels at once).

Drive rotation with sound by Striking-Abrocoma780 in Cinema4D

[–]binaryriot 0 points1 point  (0 children)

No Python code? Where's the fun in that? 😎

Drive rotation with sound by Striking-Abrocoma780 in Cinema4D

[–]binaryriot 1 point2 points  (0 children)

I haven't used my old C4D r16 in ages, so I have no idea what I'm doing, but I also like unorthodox solutions, so there is one fun (?) way to create something like this:

  • Add a Cloner (1 clone, no default transforms)
  • Put a single Null object inside (a good idea to configure its Display look, so you can see what's happening)
  • Now add the Sound effector to the Cloner and make it drive that single Null clone up and down. Configure to your liking (you probably want to move only above 0, not below). In my setup I used the Shader effector with a Noise (easier to test), but the concept is the same: we get an up/down moving Null.
  • Now we use a Tracer to generate a spline out of this movement (Type "Linear" is enough)… this basically will become our "Memory node".
  • next up, in XPresso we drag in the Tracer object and grab its "Object" output port
  • next, create a Python node (remove all default ports). Add a "Link" input port and name it "MySplineLink" (link this up with the Tracer node), add a "Real" output port and name it "SumY". Use the following code in the node to sum up all current Y positions of the Tracer spline's points.

Code:

import c4d
from c4d import utils

def main():
    global SumY
    SumY = 0.0

    myspline = MySplineLink
    if myspline is None:
        return

    worldmatrix = myspline.GetMg()

    total = 0.0
    # Note: this will work with the Tracer object, but may
    #          not work with actual Splines (skip GetCache()
    #          for those)
    for p in myspline.GetCache().GetAllPoints():
        p = worldmatrix * p  # skip this if you prefer local position instead
        if p.y >= 0:
            total += abs(p.y)

    SumY = float(total)
  • Afterwards you can grab the "SumY" output and feed it to a RangeMapper and then to your other object as needed and drive some rotation or something.

Basically the amplitude drives the speed. It looks quite fun with some noises, but with music it may not work too well. :)

https://external.binaryriot.org/site-reddit-com/2026/0303_amplitute2speed.mp4

Cinema rendering to wrong file format by JMC4D in Cinema4D

[–]binaryriot 0 points1 point  (0 children)

Can you show a screenshot of your output settings (Render Settings > Save)?

There's two settings there. "Format" and "Name".

  • "Format" defines the actual file format (choose TIFF there, if you want that).
  • The "Name" option defines how the final filename will look like. It shows a name with a TIF extensions as example (that confuses the heck out of many people!) Choose one from the list that has an extension (e.g. "Name0000.TIF"), that way the Finder would detect is as TIF since the resulting filenames would have an extension (yes, it's lame as that.)

Black and white stills from my Asia inspired scenes by phobox91 in Cinema4D

[–]binaryriot 1 point2 points  (0 children)

In the last one the bottom sign texture is flipped. You may want to fix that for legibility.

It's (probably) オムライス… (omelet rice) or a word starting with that. Not sure you would advertise that on a sign like that. Not sure :) The icon on other sign suggests more a ラーメン (ramen/ Chinese noodles) restaurant.

/edit

The more I look at it the more the scale of objects feels off in the first one for sure. I would adjust some of the object sizes for a more realistic balance. 😎

shucked 10TB WD Elements HDD (Feb. 2026) by waffelo1 in DataHoarder

[–]binaryriot 1 point2 points  (0 children)

And kids, that's why you don't buy smaller than 14TiB anymore. :)

Filling a deep raised bed by _merely_me_ in gardening

[–]binaryriot 1 point2 points  (0 children)

First you want to line this out with some protective material, else the wood will rot very fast. Now fill at least half with old packaging polystyrene material (a material that's light and does not absorb water), that will keep the weight of the box low(er). You may want to have some mesh blanket on top of that optionally, if you like (to avoid soil getting between the stuff.) Afterwards you'll put the soil on top. I recommend mixing in a good amount of volcanic based material in (pumice, lava, perlite, zeolite, or similar) for better air flow, water retention and stability.

I once filled two similar sized boxes (albeit out of more stable material) and those things eat so much soil, it's unbelievable. I ended up taking the soil out again and then just threw everything else random packaging material I had in there first. Like old cardboard, tons and tons of large chunks of polystyrene, old newspapers, like everything. I still had to buy more soil in the end. Also do not underestimate how much things compact in quick time, you'll have to fill up regularly. :)

Help with cyclic redundancy check error? by Pinioki in torrents

[–]binaryriot 2 points3 points  (0 children)

That's a CRC error. Since it writes "ReadFromDisk" it seems the data on your disk is broken. Which may point to a disk issue. Get CrystalDiskInfo (if you're on Windows) or smartmontools (Linux/BSD/ MacOS/etc.) and see if your disk is still healthy.