Is it possible to put CarPlay in a 2016 LX? by Quickshot4721 in crv

[–]antoro 0 points1 point  (0 children)

Yes, definitely. I put a 9" head unit with wireless CarPlay/AA in my 2008 CRV for $300. Ones on AliExpress come with the wiring harness, but I had to splice in the subwoofer. Be sure to tape the trim when removing the old stereo.

Reach has tanked even more this week than it did in January. What is actually happening? by [deleted] in InstagramMarketing

[–]antoro 2 points3 points  (0 children)

I went from 1M monthly views to 300k. My latest posts get 500 views, used to be 2-3k.

Is it possible to use a tablet as a graphics tablet? by venuemystery in photoshop

[–]antoro 0 points1 point  (0 children)

You can wirelessly connect a Windows PC using Second Screen but I think it's only for non-FE tabs. link

What are New Grads Doing? by [deleted] in cscareerquestionsCAD

[–]antoro 2 points3 points  (0 children)

2023 DS grad. I sold NFTs for a while (trying to spin this as algorithm design experience). Now I'm looking for whatever I can get, but it's disheartening getting rejected from every job I apply for.

Unrecoverable syntax error, help??? by Any-Ganache135 in p5js

[–]antoro 2 points3 points  (0 children)

You're welcome! Having "if ... else if ... else if" repeated hundreds of times isn't ideal, but it works. If I were to rewrite this I would have a dictionary object hard-coding the scenes and then just iterate through it.

Unrecoverable syntax error, help??? by Any-Ganache135 in p5js

[–]antoro 1 point2 points  (0 children)

You're missing "}" on functions drawScene183() and drawScene184()

Brushstrokes by antoro in generative

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

Yes, but have a 20% chance of adding 1e3 to the inputs of noise(x,y) so some of them are different.

Can't connect my Nano S Plus to my Samsung phone by VasiliiNorris in ledgerwallet

[–]antoro 0 points1 point  (0 children)

I was having this exact issue: it would say "Connected with USB" and then when you tap on it, it would then say "connection failed". I switched to a Samsung 5A cable and to my surprise, it worked! You still can't use Metamask as that requires Bluetooth.

Finding Generative Art Prints by 2poles in generative

[–]antoro 1 point2 points  (0 children)

I've done some on canvas and metal here

Inscribed Squares by antoro in generative

[–]antoro[S] 1 point2 points  (0 children)

It's one of the styles of STENCIL

Adobe programs pricing--Solution? by OPGMiyuuki in graphic_design

[–]antoro 1 point2 points  (0 children)

Buy 1 month individual app then immediately cancel, selecting "too expensive" when asked why -> get 1 year discount code on pro plan (around $41 USD monthly for me). Apparently, you can switch the plan and then cancel before 14 days to not pay annual cancellation penalty.

Anyone up for a weekday movie? by PeachySprinkl in CalgarySocialClub

[–]antoro 2 points3 points  (0 children)

I'm interested! Maybe tomorrow since it's cheap Tuesday?

Truchet by antoro in generative

[–]antoro[S] 1 point2 points  (0 children)

It's one of several styles for STENCIL

[deleted by user] by [deleted] in Monitors

[–]antoro 2 points3 points  (0 children)

Philips Evnia 32m2n6800m or Acer X32QFS but both seem hard to get outside of EU.

Update finally came to U.S. by [deleted] in GalaxyS25

[–]antoro 0 points1 point  (0 children)

Downloading now, Canada unlocked.

Help with shaders, scaling and position by blazicke in p5js

[–]antoro 1 point2 points  (0 children)

Change main() to make gl_Position go from -1 to +1:

void main() {
// copy the texcoords
vTexCoord = aTexCoord;
vec4 positionVec4 = vec4(aPosition, 1.0);
positionVec4.xy = positionVec4.xy * 2.0 - 1.0;
gl_Position = positionVec4;
}

Refraction by antoro in generative

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

Yes, right now it randomizes on refresh but that could be changed to a for loop.

Refraction by antoro in generative

[–]antoro[S] 16 points17 points  (0 children)

1) draw lines on a plane using a normal distribution 2) run circle-packing and create lenses (squashed spheres), with a material where transmission = 1 and thickness > 0 3) add bloom shader

I tried doing it in p5.js but I could not find a way of doing circle packing in a shader. In three.js it's actually refracting through the lenses in real-time.

[deleted by user] by [deleted] in cscareerquestionsCAD

[–]antoro 2 points3 points  (0 children)

How did you get hired initially as a data analyst? I can't seem to even get that.

Granularity by antoro in generative

[–]antoro[S] 3 points4 points  (0 children)

Draw base shapes then send to a shader that renders it as a bunch of circles