Unlock scalability, flexibility, and long-term growth for your eCommerce business with custom Magento solutions. Continue reading on Medium »
Daily Archives: May 31, 2025
In the competitive world of eCommerce, helping customers make quick and confident purchase decisions is critical. Magento 2 Smart Compare… Continue reading on Medium »
I need to create a new filter that concerns the publication dates in my page called new products. This filter is based on an attribute (frist_publication_data) that concerns the first publication date of a product. This filter should have a range 0 – 3 months 3 – 6 months 6 […]
Noobie sysadmin here in over my head. I’ve deployed a new VM into our scale cluster. Can connect to it via the Scale intreface and thus gave it a static IP with the requisite subnet, gateway address, and DNS servers. It connects to the internet just fine and I can […]
I put together a setup a while back using Motherboard: ASRock TRX40D8-2N2T CPU: AMD 3970X Ryzen Threadripper Cooler:Dynatron A38 Memory:OWC 256GB (8x32GB) DDR4 3200MHz PC4-25600 CL22 2RX8 ECC UDIMM 1.2V Drives: 2TB NVME Samsung 970 Evo plus (OS RAID1, Storage RAID6) Case: In-Win IW-R200-02N-CR550 with 550W redundant PSUs I then […]
I have: OpenVPN server 10.14.0.1 First client 10.14.0.2, which runs: qemu VM with 10.29.0.15, Second client (me) with 10.14.0.14. All machines runs *nix OS. I want to SSH into VM. How to achieve that? What I’ve done: On the OpenVPN server: add these lines: client-to-client client-config-dir ccd route 10.14.0.0 255.255.255.0 […]
seq 100 | ... wc -l What can fill in for ... so that that wc -l prints 10, ten times? A clunky way I can think of is: seq 100 | xargs -L10 bash -c '(for i; do echo $i; done) | wc -l' bash Wondering if there’s a […]
I’m trying to stream my webcam over UDP using FFmpeg and connecting to it from an iOS device using VLC. This is what I currently have: #!/usr/bin/env bash ffmpeg -f v4l2 -input_format mjpeg -framerate 60 -video_size 1920x1080 -i /dev/video0 -f mjpeg udp://client-ip:1234 I’m successfully connecting to it on my phone, […]