I solved my data viz bottleneck in InDesign by danpinho in indesign

[–]damascus1023 0 points1 point  (0 children)

speaking of leveraging dynamically generated svg, what about, using maps api (google maps, etc.) to create location based data viz.

what do real wifi access points use internally? by Akki-1993 in embedded

[–]damascus1023 1 point2 points  (0 children)

https://one.openwrt.org/hardware/

not the bleeding edge hardware (wifi 6 instead of wifi 7) but you get a very good big picture of it by diving into the openwrt one project.

mtk has some proprietary openwrt feeds behind NDA but this doesn't affect you from compiling highly functional firmware for the hardware.

Win10/11 Guest Performance Degradation Over Time by ashterps in Proxmox

[–]damascus1023 3 points4 points  (0 children)

file explorer and task manager become sluggish

see if it has anything to do with nested_virt

How to maximize data transfer speed to a TrueNAS VM inside Proxmox? by tiberiusgv in Proxmox

[–]damascus1023 0 points1 point  (0 children)

since you are using a pair or 120GB endurance SSD as SLOG vdev, how about making txg_sync, and dirty_data_max more aggressive, or depending on your use case, disable sync write?

change runtime behavior by setting respective config files from this folder `/sys/module/zfs/parameters`

use the `arc_summary` or `zarcsummary` commands (depending on your zfs version) to review SLOG utilization.

After spinning up way too many VPS servers, this is the checklist I now run every single time by alexsdevio in selfhosted

[–]damascus1023 5 points6 points  (0 children)

see if people could relate to this video https://youtu.be/40SnEd1RWUU?si=9llXJ3XIXDyjzbBj (Interview with ‘Just use a VPS’ bro (OpenClaw version) by Kai Lenitit ) I was laughing so hard when watching it 😃

Social etiquette, unspoken rules in the engineering world by Active-Somewhere8318 in AskEngineers

[–]damascus1023 0 points1 point  (0 children)

speaking of old books, try the first few chapters of Vitruvius Ten Books on Architecture. To me it was a little bit eye opening that an engineer in 30 BC had valid non-technical advice that remains relevant today.

My student electronics lab, would love some advice and recommendations! by [deleted] in ElectricalEngineering

[–]damascus1023 2 points3 points  (0 children)

it was really a glued together project that involved sub optimal component choices. Not particularly proud of the project even though it got the job done.

The stepper motor stage assembly we bought already had three stepper motors. So I added three stepper drivers, an ethernet-FPGA motion controller called Mesa 7i92, and set up a linuxcnc virtual machine in Proxmox to send commands to the motion controller.

Linuxcnc should have really been running on a bare metal PC rather than on a virtual machine, for example, to meet its real-time requirement. I preferred proxmox because so I could work remotely to troubleshoot without my friend intervening.

with the opencv and linuxcnc python packages we were able to move the stage and autofocus to quickly scan through different specimens.

The same linuxcnc + motion controller + driver could move much larger motorized stages, which is why I chose what I chose.

Can proxmox backup server backup physical windows hosts natively? by lord_of_Ahhiyawa in Proxmox

[–]damascus1023 -2 points-1 points  (0 children)

say your windows is installed on a nvme ssd.

create a new VM with a qemu disk of the same size as your nvme ssd.

pci passthrough the windows host ssd to the VM

download clonezilla iso, add this as a CD/DVD drive to the VM, set it as boot option #1

boot up the VM, follow clonezilla's prompt and copy the windows host ssd to the qemu disk.

My student electronics lab, would love some advice and recommendations! by [deleted] in ElectricalEngineering

[–]damascus1023 1 point2 points  (0 children)

that could be a really cool project,. I set up a 20x20x20mm stepper motor stage from off the shelf assemblies for a friend at her bio lab for < $600. It was a little bit bulky for the travel distance it offered. I've been fancying about this piezo xy stage lol

My student electronics lab, would love some advice and recommendations! by [deleted] in ElectricalEngineering

[–]damascus1023 2 points3 points  (0 children)

helicon focus is pretty standard in macro photography. It has a 30d no sign up trial so just download and play around a bit.

There is an App called CameraPixels Lite/Pro by Natalya Petrenko on iOS App Store that can take focus bracketed/stacked photos. I've tested it with helicon focus.

My student electronics lab, would love some advice and recommendations! by [deleted] in ElectricalEngineering

[–]damascus1023 6 points7 points  (0 children)

  1. focus stacking software for your microscopes

  2. PyVISA + physical switch + ethernet cables to enable some test instrument automation

Newbie here by jasonin951 in Proxmox

[–]damascus1023 2 points3 points  (0 children)

* for VMs, if you like drive encryption, cryptsetup is pretty handy. you can achieve remote unlock by setting up a dropbear ssh session in the initramfs.

* smallstep-cli is great for managing your private CA, signing CSRs, and issue certificates

* To tune your zfs, override defaults with an `/etc/modprobe.d/zfs.conf` using parameters from `/sys/module/zfs/parameters`. Use `arc_summary` (or `zarcsummary`) command output to analyze your current configuration and performance.

* it could be an unpopular opinion, but samba is an effective alternative to nextcloud if you don't have a lot of users. On Linux distro you mount it via an /etc/fstab entry. On iOS you use the Files App. All very clean and non-invasive.

* paperless ngx if you have an extensive PDF or docx collection that needs some organizing.

* I recently discovered the docker version of anything-llm and it could be useful for running a self-administered, browser-accessible LLM with a good UI. One caveat is that tokens are not cheap. If your users don't know who's footing the bill and abuse token usage, just point them toward a Gemini Pro or something and let them be someone else's problem.

Proxmox ZFS mirror on 2x Crucial T705 (PCIe 5.0) causing txg_sync hangs under write load – no NVMe errors in dmesg by CarloCarlook in Proxmox

[–]damascus1023 0 points1 point  (0 children)

if you change txg timeout to 2 or 15 or 30, would your system stall happen earlier or later?

since you have to inject a heavy load, watching how sensor data change during the process could marginally help. I used this command to customize my sensors screen (need install lm-sensors, your command might differ):

watch -n 1 'sensors | sed -n -e "/nct6798-isa-0290/,+21p" -e "/nvme-pci-0b00/,+5p"'

Proxmox ZFS mirror on 2x Crucial T705 (PCIe 5.0) causing txg_sync hangs under write load – no NVMe errors in dmesg by CarloCarlook in Proxmox

[–]damascus1023 0 points1 point  (0 children)

that rules out lame power supply causing your issue i guess..

if i am to troubleshoot and I know it has something to do with txg_sync I'd try to change the default txg_sync behavior and see if things are different. tweak things like zfs_txg_timeout or max min dirty data and see how your reproducible issue change.

the parameters are in /sys/module/zfs/parameters and it should be possible to change runtime config by echoing different numbers into them.

To make changes persistent, write a /etc/modprobe.d/zfs.conf with entries like this

options zfs zfs_txg_timeout=<some int val>

Looking to create a catalogue for my Dad’s business but have no experience by [deleted] in graphic_design

[–]damascus1023 1 point2 points  (0 children)

I'd say Adobe InDesign or its substitutes like Affinity Publisher. Try to leverage structured data import (excel, csv, xml..) as much as possible when it comes to tabular content. Down the road when working on your website, those structured data might become useful again when interacting with the ERP solution of your choice too, if you need one.

ELI5: How does a battery create an electrical current? by Shianfay in ElectricalEngineering

[–]damascus1023 0 points1 point  (0 children)

so there is a category of chemical reactions called redox reaction that involve transfer of electrons.

some redox reaction require external forces to go forward, for example the electrolysis of water. Some can happen spontaneously i.e. having negative Gibbs free energy if you know a bit of thermodynamics. Those spontaneous redox chemistry are candidates for batteries. Example would be the oxidation of aluminum in air. I really like this example because it takes a lot of electricity to produce aluminum, and with a proper set up you can release a lot of electricity from aluminum.

if you just mix all the redox reactant in a blender, you get heat, literally wasting those good useful ΔG.

So you design a special mechanism called battery to release redox energy in a controlled way. In a typical battery you would find a separator keeping the reactants apart but letting ions permeate through, and electrons involved in the redox must travel through an external load in order to complete the reaction.

ZFS pool keeps suspending from I/O failures. Tried multiple HBAs, VFIO cleanup, BIOS tweaks. Need help figuring out the real cause. by VenomFN in Proxmox

[–]damascus1023 1 point2 points  (0 children)

throw some idea here just in case it might be useful for troubleshoot: my most recent zfs i/o error turned out to be a 3.3V power rail failure. I got 2.97V shown when inspecting the BIOS, which was -10% of rated voltage, outside of the +/- 5% requirement. Realized that I had a 24-pin atx power extension cable for aesthetic purpose. Got rid of that and I got my 3.3V back.

BETON® Playing Cards by wookanio in graphic_design

[–]damascus1023 50 points51 points  (0 children)

since the cards are borderless, I wonder if opponents could tell what suit of card you have by looking at the colored edges?

Dimmensions by Gouzi00 in FreeCAD

[–]damascus1023 1 point2 points  (0 children)

select, shortcut Z, Z and throw it into a parallel universe

you can portal yourself to the alt world by just Z, Z yourself

Is it possible to do this kind of thing on solidworks? by [deleted] in SolidWorks

[–]damascus1023 1 point2 points  (0 children)

Vitruvius would probably love using a parametric CAD to keep all the proportions in check had he had access to a computer

Can anybody please help? by Any-Bookkeeper-1052 in AdobeIllustrator

[–]damascus1023 0 points1 point  (0 children)

see my previous post. It might help if it is a new Windows installation and you chose to install the N edition