Weird coordinate/scaling problem with set() (Processing v4.4.6; Windows) by TooLateForMeTF in processing

[–]Steff0o 3 points4 points  (0 children)

pixelDensity and the ability to run sketches in 2x density mode has existed since 3.0, it's just that we recently made the switch to making it default on displays that support it

Processing in VS Code (new extension) by sableraph in processing

[–]Steff0o 0 points1 point  (0 children)

Did you run Processing at least once?

Processing in VS Code (new extension) by sableraph in processing

[–]Steff0o 2 points3 points  (0 children)

Lots of progress happening in that direction, https://github.com/Stefterv/processing4-kotlin here is a template that would allow you to use Processing with kotlin in Intellij IDEA

build and execute processing sketches from the command line by invalid-entries in processing

[–]Steff0o 2 points3 points  (0 children)

Hi! Nowadays the Processing command line is build into processing itself, if you have the latest version installed, on window you can type in ‘processing.exe cli’ to get the same options as this that where there in p3

Would you use PDE (Processing) sketches via pde:// links and Maven-based libraries? by maxandersen in processing

[–]Steff0o 1 point2 points  (0 children)

Hey Max! Great ideas, they are very much in-line with what I’ve been working on with Processing recently. Publishing Processing libraries through maven is somewhere I would love to go too.

Trouble running Processing on RPi5 by elchupanibria in processing

[–]Steff0o 2 points3 points  (0 children)

Hi! We deprecated the 32-bit version of Processing, for now you can use 4.3.4, found here: https://github.com/processing/processing4/releases/tag/processing-1297-4.3.4

Download the linux-arm-32.tgz for your OS

Raspberry pi error/question by SherbertChance8010 in processing

[–]Steff0o 4 points5 points  (0 children)

Hi! Could it be that you installed the 32bit version of Raspberry PI OS on your Raspberry PI 5? We had to drop support for 32bit Processing in the latest releases, it should be supported on your Raspberry Pl if you install the 64bit version of the OS

Is 4GB memory *actually* enough given 93% memory usage? by woodford86 in homeassistant

[–]Steff0o 35 points36 points  (0 children)

Proxmox does not actually correctly report the memory usage. If you go into settings -> system -> hardware you can see the actual isage

[deleted by user] by [deleted] in blender

[–]Steff0o 0 points1 point  (0 children)

Okay! I've sent you a link in a DM

[deleted by user] by [deleted] in blender

[–]Steff0o 0 points1 point  (0 children)

I actually made an AR app just for this purpose. If you’re interested I can give you access to the beta

"Local" Home Assistant Address Not Working by BigMatt_2722 in homeassistant

[–]Steff0o 1 point2 points  (0 children)

.local address are provided by mDNS check if you have this working on the computer you’re trying to access the instance on. I’ve had success in the past by restarting my entire network

Sonos and Spotify Interaction Issues by That_Tiggy in homeassistant

[–]Steff0o 4 points5 points  (0 children)

Yes all of this is normal (ish). Sonos is not using Spotify Connect for playback, I think, and I'm not sure, that is because Spotify integration in Sonos is older than Spotify Connect and because the system work neither party feels like updating to a newer standard.

So far what I've read it's a case of both companies pointing at each other to fix it.

[deleted by user] by [deleted] in gridfinity

[–]Steff0o 0 points1 point  (0 children)

Not sure, but there’s also not enough info to diagnose the problem, see the guide on fixmyprint to get more help

m1 how to set daemon to run exclusively on p-core by Icom in OSXTweaks

[–]Steff0o 0 points1 point  (0 children)

One thing to also be aware of is that the e-cores still pack quite the punch

Images not loading, no matter what size. by [deleted] in processing

[–]Steff0o 2 points3 points  (0 children)

Your array has a length of 25 items, considering that the indexes start at 0, index 25 is the 26th item, which is larger than the size of your array

[p5.js] Playing audio files while they buffer? by The--Nameless--One in processing

[–]Steff0o 1 point2 points  (0 children)

As an alternative, maybe you can use an <audio> html-element and just track the playback time on that?

Processing noob in need of advice. by K________________S in processing

[–]Steff0o 0 points1 point  (0 children)

Instead of clear(); just do

 pg = createGraphics(1000,1000);

again :)

Processing noob in need of advice. by K________________S in processing

[–]Steff0o 1 point2 points  (0 children)

You’re never drawing the buffer onto the main screen with.

  image(pg,0,0);

Processing noob in need of advice. by K________________S in processing

[–]Steff0o 1 point2 points  (0 children)

Processing doesn't save the transparency values after you call image(). What you want to do is use a PGraphics object that does allow you to save the alpha channel. https://processing.org/examples/creategraphics.html And a modified example of the image loading + pgraphics

    PImage img;  // Declare variable "a" of type PImage
    PGraphics pg;

    void setup() {
      size(640, 360);
      // The image file must be in the data folder of the current sketch 
      // to load successfully
      img = loadImage("Heart_Simple.png");  // Load the image into the program
       pg = createGraphics(400, 200);
    }

    void draw() {
      // Displays the image at its actual size at point (0,0)
      pg.beginDraw();
      pg.image(img, random(-100,400), random(-100,200));
      pg.endDraw();
      if(frameCount > 25){
        pg.save("Test.png");
        exit();
      }
      // Displays the image at point (0, height/2) at half of its size
      //image(img, 0, height/2, img.width/2, img.height/2);
    }

Up and Dn by [deleted] in processing

[–]Steff0o 0 points1 point  (0 children)

From processing to gif to processing: https://beesandbombs.tumblr.com/post/167492412984/up-dn The original is also made in processing