80avin

joined 1 year ago
[–] 80avin@programming.dev 1 points 8 months ago (1 children)

They do have different comments though.

[–] 80avin@programming.dev 9 points 8 months ago (1 children)

People who own a 3D printer but never print.

Signature look of superiority

[–] 80avin@programming.dev 3 points 9 months ago (2 children)

Thanks to everyone involved for another big release. There are many great features, but I'm particularly curious about User data export/import.

If someone can import a backup and get access to his data back, does this also mean that some hacker/impersonator can manually craft a backup file and import it to take control of our account ? Interested to know how this works.

[–] 80avin@programming.dev 3 points 9 months ago

I was going to type the same. Since OP started learning about 11 months ago, I wonder if he has explored on the realthunder version of freecad or not ?

[–] 80avin@programming.dev 2 points 9 months ago

Curious to know which version of freecad did you try ? Few days ago I installed the latest edge version from snap (0.22 in progress) and didn't notice this issue. I know about this issue & realthunder, also watched some of his interviews and found that the guy is a master of his field.

Anyways, now I'm on beta channel of freecad-realthunder.

 

This is an instance created as staging environment for voyager, as mentioned here

But looks like it is blocked in programming.dev, because of which I can't access it while being logged in to programming.dev instance.

[–] 80avin@programming.dev 6 points 10 months ago

I want my devices to run on an OS/framework which allows everything to be scriptable. Data should be visualised using simple/consistent interface.

There will be events, Actions, variables, data-streams, etc and the operating system should provide easy interface to quickly create new programs which can

  1. Visualize data streams (filterable) using simple interfaces(configurable)
  2. Create scripts which can create custom events or custom actions which are just built upon existing events/actions.

In such a system, the focus of apps should not be to add fancy interfaces for simple things, but to register new events, actions, data streams, visualizers into the OS and maybe provide new templates to use these additions.

[–] 80avin@programming.dev 8 points 11 months ago

Don't have an objective definition of "Best" but here are few over the top of my head.

  1. Profiled backend's startup and reduced startup time by ~20-30 times. Issue was we were traversing node_modules folder to scan for API documentation.
  2. Profiled python using cProfiler & snakeviz and optimized dozens of regex calls by simple pre-filtering. Improved performance by ~20 times.
  3. Profiled python using pprofile & qcalgrind (IIRC) to pinpoint a single heavy regex compilation and optimized it by pre-filtering. Improved performance 8-10 times.
  4. Use nodejs streams to do load data from s3, parse as CSV, transform into different structure and save into s3 in a continuous stream. Didn't measure the performance gains but should be several times atleast. 5... many more, some coming from embedded world and even more drastic & unexpected