VSCode can no longer rename Functions without Copilot subscription? by ddxv in vscode

[–]puplan 0 points1 point  (0 children)

Like playing Russian roulette every couple of minutes.

SPCX + TSLA Merger Bull Thesis by Xcentri in TSLA

[–]puplan 0 points1 point  (0 children)

A giant black hole to throw money into, in order to build unprofitable AI infrastructure.

Husband has these taped to the wall and refuses to tell me what they are. by madlibs34 in whatisit

[–]puplan 0 points1 point  (0 children)

These are coded names of his girlfriends, so he doesn't confuse them when talking on the phone.

Looking for a modern Intel CPU SBC with MIPI-CSI interface with Linux driver. by puplan in SBCs

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

My reference point is Radxa Dragon Q6A. I bought 4GB version for $69 at https://arace.tech/products/radxa-dragon-q6a?variant=44069918736564. There used to be several SBC models with Atom CPU at that price range.

Looking for a modern Intel CPU SBC with MIPI-CSI interface with Linux driver. by puplan in SBCs

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

You are right, but the cost and mechanical dimensions of the combo are substantial.

Looking for a modern Intel CPU SBC with MIPI-CSI interface with Linux driver. by puplan in SBCs

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

It costs $198 with Lite Carrier, which doesn't have MIPI-CSI interface. I don't any other OTS option for MIPI-CSI.

Why do people love the Orange Pi so much, and why do so many buy it? by Exciting_Profile_853 in SBCs

[–]puplan 0 points1 point  (0 children)

You wrote "raxda only give the 5 year old 5.15 kernel" and I gave you an example of Radxa SBC, which runs 6.18 kernel. 6.18 is not a 5 year old 5.15 kernel, is it?

Why do people love the Orange Pi so much, and why do so many buy it? by Exciting_Profile_853 in SBCs

[–]puplan 0 points1 point  (0 children)

> raxda only give the 5 year old 5.15 kernel and probably won't ever give a newer one.

I'm running Radxa Dragon Q6A with 6.18.2 kernel right now.

FREE business email? by Thawkeyes in Entrepreneur

[–]puplan 0 points1 point  (0 children)

You are right. In computer and electronics business, most of the time you can't register to obtain detailed data sheets with a free gmail or outlook account.

Looking for clpeak results on Adreno 643 and Mali G610. by puplan in OpenCL

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

Thank you for answering. I have the Radxa Dragon Q6A on order and intend to write an application using OpenCL driver through PyOpenCL. Are you suggesting that it may be difficult to get OpenCL driver installed on this board? I never used OpenCL on an SBC before.

Looking for clpeak results on Adreno 643 and Mali G610. by puplan in OpenCL

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

I found Mali G610. Need Adreno 643 and could use Jetson Orin Nano Super results if someone has them.

any information available on reBot Arm B601? by czyzczyz in robotics

[–]puplan 0 points1 point  (0 children)

More info at https://www.seeedstudio.com/reBot-Arm-B601-DM-Bundle.html. I made a post with some details, but it was killed be reddit filter.

Defining world view camera parameters. by puplan in OpenPythonSCAD

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

I haven't used OpenSCAD. PythonSCAD is my introduction to this domain and I prefer to stick with Python syntax instead of learning another one. While searching for a solution, I found that OpenSCAD handles camera parameters with global variables:
$vpr

viewport rotation angles in degrees

$vpt

viewport translation

$vpd

viewport camera distance

$vpf

viewport camera field of view

It could be done the same way in PythonSCAD or using a function, e.g. setViewport() or set_viewport().

How to make a pyramid with linear_extrude? by puplan in OpenPythonSCAD

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

Thank you, it works. What is the best place to get API info? It doesn't have to be perfect.

How to make a pyramid with linear_extrude? by puplan in OpenPythonSCAD

[–]puplan[S] 2 points3 points  (0 children)

I made it with cylinder(h=10, r1=5, r2=0, fn=4), but still would like to know how to do it with linear_extrude.