Skip to content

Piero Bosio Social Web Site Personale Logo Fediverso

Social Forum federato con il resto del mondo. Non contano le istanze, contano le persone

It's that time of year again!

Uncategorized
40 1 37

Gli ultimi otto messaggi ricevuti dalla Federazione
Post suggeriti
  • Dear Mastodon,

    Uncategorized career cad plm pdm windows unix advice
    1
    0 Votes
    1 Posts
    2 Views
    Dear Mastodon,I am a mechanical engineer who is about to make a major #career change. I have received a job offer from an international company for an Application Engineer position. The role involves supporting #CAD (computer-aided design), #PLM (product lifecycle management), and #PDM (product data management) systems and their underlying infrastructure.As far as I know, most of the applications are #Windows-based, but there are likely some #Unix-like systems involved as well. I do not have formal system administration experience, so I am looking for guidance on which technologies I should focus on to make this transition as smooth as possible. Could you recommend useful books, technologies, or keywords to explore?For context, I have homelab-level experience with Linux, networking, SSL, reverse proxying, ZFS, Solaris zones, bhyve, and FreeBSD, and I have been using OpenBSD as my desktop operating system for years.Thank you in advance for any #advice or recommendations.TASKS AND RESPONSIBILITIES:- Implementation, configuration, and maintenance of software and systems related to the supported area in line with corporate requirements.- Installation, configuration, and maintenance of critical software systems, as well as providing expert-level support to end users.- Management of application-related changes, handling major upgrades, and the introduction and testing of new systems and developments.- Publishing and testing new releases.- System administration and monitoring to ensure the performance and proper operation of supported software and systems.- Troubleshooting and problem resolution, including the management of system updates and fixes.- Analysis of business requirements and implementation of related processes.- Support for project management, including the preparation of documentation and reports.- Communication with clients and business units to maintain synergy between business requirements and system solutions.
  • 0 Votes
    1 Posts
    4 Views
    @mwl@io.mwl.io’s post made me revisit RCS in a very small role: a safety net for individual files.Paired with nvi, a tiny wrapper lets me snapshot configs before risky edits. Simple, local, no magic.Example wrapper I’m using:#!/bin/sh## safeedit — RCS-backed safe editing with nvi#set -eif [ $# -ne 1 ]; then echo "usage: safeedit <file>" >&2 exit 1fiFILE="$1"if [ ! -f "$FILE" ]; then echo "safeedit: file not found: $FILE" >&2 exit 1fiDIR=$(dirname "$FILE")BASE=$(basename "$FILE")RCS_DIR="$DIR/RCS"RCS_FILE="$RCS_DIR/$BASE,v"mkdir -p "$RCS_DIR"chmod 700 "$RCS_DIR"if [ ! -f "$RCS_FILE" ]; then ci -l "$FILE"else ci -u "$FILE" || true co -l "$FILE"fiexec nvi "$FILE"nvi protects the session; RCS protects the decision.Original post by @mwl@snac.bsd.cafe: https://io.mwl.io/@mwl/115814245521209100#nvi #RCS #Unix #SysAdmin #ConfigManagement
  • Hello!

    Uncategorized introduction linux tokipona archlinux programming coding
    1
    0 Votes
    1 Posts
    3 Views
    Hello! Never been particularly good at introductions, but I'll try my best. I use Arch Linux (by the way), code, and am learning the language toki pona. I also run the project & Mastodon account @vsb_copilot@socialbc.ca.https://henryvaniersel.ca is my personal website. #introduction #linux #tokipona #archlinux #programming #coding
  • 0 Votes
    1 Posts
    2 Views
    Commitin programming crimes }:->Few weeks ago I seriously looked to the mine OpenHAB installation and asked a question for myself: "Am I really need it?" Look, I have a few ZigBee devices, which are connected to the my server with the help of ZigBee2MQTT. Thusly, all necessary values and knobs are accessible through the MQTT topics.And I'm using the OpenHAB (big Java application which eats ton's of RAM and constantly swapping) just to:1) Read values from MQTT topic2) Read weather forecast from Open-Meteo through simple REST API endpoints3) Store all the data to the PostgreSQL DB.4) Display these data in the nice Web page which works only in browsers with JS engine.So, basically, I trade tons of RAM and processing power just for a nice web-page with few indicators. While retrieving data from my ZigBee devices processed by the another service.After that thought, I started to think about replacing this monster with small hand-written program, which will not eat 700 MB of RAM. Just Nginx, small FastCGI script on C, which will read values from DB and display them on the simple HTML page. And another small daemon (also written in C) which will take data from MQTT topic (and from REST API of Open-Meteo) and will write them to the DB. And possibly some PGSQL procedures to analyze these data.At least I'll have fun #programming #C #smarthome #selfhosting