Julian Vidal (monkeyfonk)

Results 9 comments of Julian Vidal (monkeyfonk)

For CentOS 5.5 the libs are called "-devel" instead of "-dev". So, yum install libxml2-devel will solve this. Also try yum search libxml to see the available packages.

Nah, there's nothing specific. I stumbled upon your website many years ago and just for kicks I learned your method and found it really easy to follow. Fast forward a...

For future reference: cron.yaml is only created in the leader instance in you aws workers. So if you have 10 instances, only ONE will run the crons. Technically one instance...

You can definitely do this. Here's an example GPT4 provided for circle2rect collision. Circle2circle should be easier. In this example `collideRectCircle()` is the exact same version as provided by the...

Here's circle2circle as provided by GPT4: ```js function setup() { createCanvas(400, 400); } function draw() { background(240); let circle1 = { x: mouseX, y: mouseY, r: 40 }; let circle2...

👍 This feature would be great!

Great, thanks! I tried using other options but ended up over-complicating things. Your solution seems to be the cleanest and easiest I've found so far.

I would love to have this too. Discriminating between optional and required is a must when writing documentation.

In my Laravel app using Vite, I had to replace, in my `.env`, all the `VITE_ALGOLIA_APPLICATION_ID="${ALGOLIA_APPLICATION_ID}"` with the actual values. That fixed the issue.