opensource

Back Open Paginator
27.04.2026 13:52
techwire (@techwire@social.gamefan.net)

The AI-designed car is taking shape

The auto design world is full of advanced 3D visualization tools and VR sculpting platforms, but your average new car still enters the world as a sketch. Those sketches traditionally see endless iteration and refinement…

theverge.com/transportation/91

#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #TheVerge [The Verge]




Show Original Post


27.04.2026 13:49
juergen (@juergen@mastodon.bruckner.email)

@buersten
Also ich kann Euch nur zu diesem Schritt gratulieren!

Ich bin hier schon lange einen "Schritt weiter" gegangen, und hoste seit mittlerweile 25 Jahren meinen Mailserver für privat und Unternehmen/Beruf selbst, und habe damit absolut keine Probleme.
Seit dieser Zeit arbeite ich sowohl privat als auch im Unternehmen ebenfalls fast ausschliesslich auf #Linux und anderen #OpenSource Produkten.
Angefangen hat es bei mir mit dem Ersatz von MS Office; ich bin um die Jahrtausendwende auf #StarOffice umgestiegen (welches ich davor schon unter #DOS genutzt hatte).




Show Original Post


27.04.2026 13:37
techwire (@techwire@social.gamefan.net)

This touchscreen mouse is my over-engineering nightmare

Who’s asking for this? | Image: Turtle Beach Turtle Beach's latest collection of PC peripherals are so focused around touchscreen displays that the company even slapped one on a gaming mouse. The $160 wireless Command S…

theverge.com/gadgets/918919/tu

#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #TheVerge [The Verge]




Show Original Post


27.04.2026 13:32
xwiki (@xwiki@social.xwiki.com)

Atlassian Data Center is reaching its end in 2029.

For some teams, cloud is fine.
For others, especially with hosting or compliance constraints, it’s not.

So the question is: What’s the alternative?

What replaces what?
What changes in practice?
What are the trade-offs?

A useful white paper from Open Source Experts (with XWiki & Tuleap) breaks this down:

👉 xwiki.com/en/Resources/open-so

#OpenSource #XWiki #Atlassian #Alternative #comparison #tech





Show Original Post


27.04.2026 13:30
2026 (@2026@bdking71.wordpress.com)

Pro-Grade Ham Radio Displays: Integrating OpenHamClock into PiSignage

758 words, 4 minutes read time.

A Helping Hand Needed for a Fellow Programmer

I’m reaching out to see if you can lend a hand to a talented software developer who’s currently on the job hunt. With over 30 years of experience in C#, .NET (Core/6–8), REST APIs, SQL Server, Angular/Razor, Kubernetes, and cloud CI/CD, he’s a seasoned pro with a proven track record of leading modernization projects and delivering production systems.

Some of his notable accomplishments include DB2 to SQL migrations, building real-time SignalR apps, and developing full-stack API and frontend projects. Based in Southeast Michigan, he’s looking for senior engineering, architecture, or technical lead roles that will challenge him and utilize his skills.

If you’re in a position to help, you can check out his resume and portfolio at http://charles.friasteam.com.

Let’s all look out for each other – if you know of any opportunities that might be a good fit, could you please consider passing this along to your network?

If you are a ham radio operator, you know that a HamClock is the ultimate shack companion. But what if you want to move beyond a dedicated small screen and integrate that data-rich display into a professional digital signage environment?

By using PiSignage, you can rotate your HamClock with other station metrics, weather, or club announcements. However, getting a clean, secure, and “pop-up free” experience requires a few tricks.

In this post, I’ll show you how to deploy OpenHamClock using Docker and how to strip away the UI clutter for a seamless kiosk experience.

The Setup

To follow along, you will need a PiSignage server instance. I personally run mine as a Docker container, which keeps the server stack isolated and easy to back up.

1. The Docker Compose Configuration

PiSignage and modern browsers often require secure contexts (HTTPS) for certain features. Since the standard HamClock output is HTTP, we’ll use a two-service setup: the clock itself and a lightweight SSL-wrap sidecar using socat and openssl.

docker-componse.yml

 services:    openhamclock:      image: ghcr.io/accius/openhamclock:latest      container_name: openhamclock      expose:        - "3000"      environment:        - CALLSIGN=<CALL SIGN>        - LOCATOR=<Grid Square Locator>        - THEME=dark        - UNITS=imperial      restart: unless-stopped     ssl-wrap:      image: alpine      container_name: hamclock-ssl      ports:        - "3000:3000"      command: >        sh -c "apk add --no-cache socat openssl &&                openssl req -x509 -newkey rsa:2048 -keyout /tmp/key.pem -out /tmp/cert.pem -days 365 -nodes -subj '/CN=localhost' &&               cat /tmp/cert.pem /tmp/key.pem > /tmp/combined.pem &&               socat OPENSSL-LISTEN:3000,cert=/tmp/combined.pem,verify=0,fork,reuseaddr TCP:openhamclock:3000"      restart: unless-stopped 

2. Silencing the “What’s New” Pop-ups

When using HamClock as a signage element, you want it to be “set and forget.” The “What’s New” slide-ins are helpful for desktop users but ruin a clean kiosk display.

While there is a formal change request pending for a toggle, you can currently “force” these elements to stay hidden by injecting a bit of CSS directly into the distribution files. Run this command within your app environment:

find /app/dist -name "*.css" -exec sh -c 'echo "div[style*=\"whatsNewSlideIn\"], div[style*=\"backdrop-filter\"] { display: none !important; }" >> {}' \;

3. Setting Up the Slide in PiSignage

Once your containers are humming along, you need to tell PiSignage how to display the clock.

Create the Weblink Asset

  1. Log in to your PiSignage Admin Panel.
  2. Navigate to Assets > Add > Weblink.
  3. Fill in the details:
    • Name: OpenHamClock
    • Link Address: https://<YOUR-HOSTNAME>:3000/?kiosk=true
  4. Click Save.

Pro Tip: The ?kiosk=true suffix is critical. It tells HamClock to hide its own internal menus and headers, giving you a dedicated, high-contrast dashboard perfect for a wall-mounted display.

Deploy to Your Player

  1. Go to Playlists and add your new “OpenHamClock” asset.
  2. Set the Duration: Set this to 0 for a permanent display, or a high number (like 300 for 5 minutes) if it’s part of a rotation.
  3. Go to Groups, select your player, and deploy the playlist.

Your screen should refresh and show a beautiful, clean HamClock interface within seconds!

Running PiSignage in Docker?

For those of you looking to keep your entire server stack contained, running the PiSignage central server in Docker is the way to go. It keeps your host OS clean and makes management a breeze.

If you’d like me to discuss how to set up a dockerized PiSignage server, please comment below!

— 73 —

Call to Action

Getting this stack to play nice wasn’t a “one-and-done” install. It was a hard-fought process that took multiple attempts to finally crack the code on bypassing those “What’s New” screens and forcing a clean kiosk display. But the victory is in the uptime.

Don’t just lurk. If you’ve got the guts to show how you’re rebuilding your station on the wreckage of the old ways, drop a comment below. How are you occupying the victory today?

SUPPORTSUBSCRIBECONTACT ME

D. Bryan King

Sources

Disclaimer:

I love sharing what I’m learning, but please keep in mind that everything I write here—including this post—is just my personal take. These are my own opinions based on my research and my understanding of things at the time I’m writing them. Since life moves way too fast and things change quickly, please use your own best judgment and consult the experts for your specific situations!

#AlpineLinux #AmateurRadioDashboard #amateurRadioTechnology #Automation #containerization #CSSInjection #CustomCSS #DetroitHamRadio #devops #DigitalDashboard #DigitalSignage #DisplaySolutions #Docker #DockerCompose #DXCluster #EN82le #GHCR #gridSquare #hamRadio #HamRadioKiosk #hamRadioSoftware #hamRadioTools #HamClock #HomeLab #HTTPSWrapper #KioskMode #KioskSetup #KioskTrue #Linux #MaidenheadLocator #networkSecurity #OpenSource #OpenHamClock #OpenSSL #piSignage #PiSignageDocker #PiSignageTips #RadioStationDisplay #RaspberryPi #RaspberryPiProjects #realTimeData #RemoteMonitoring #ScreenRotation #SelfHosted #ServerManagement #ShackClock #SignalTracking #SmartShack #Socat #SoftwareWorkaround #SolarData #SSLWrap #StationIntegration #TechGuide #TechnicalTutorial #UITweaks #W8DBK #WebDevelopment #WebLinkAsset



Show Original Post


27.04.2026 13:27
DarkL0rd (@DarkL0rd@mastodon.online)

#RISC_OS folks, new test release for ShareFSServer available to all the alpha testers. Link with all the changelogs below. To download the new build the link is the same as always. Please let me know if you find any problems.

riscosopen.org/forum/forums/11

#riscos #FileSharing #OpenSource




Show Original Post


27.04.2026 13:25
Rakosn1cek (@Rakosn1cek@mastodon.social)

The Shared Library Trap
You launch a program and get error while loading shared libraries: libxml2.so.16 or similar. I have seen many of those lately on Reddit.
You know something is missing, but you have no idea which package owns that specific file.
Simply run Mend. It will find it and offers to install it immediately. Don't reboot into a black screen; fix the dependency while the terminal is still open.
github.com/Rakosn1cek/mend




Show Original Post


27.04.2026 13:23
linuxteck (@linuxteck@mastodon.social)

Why your bash config behaves differently

If your aliases or variables work sometimes and fail sometimes, it’s usually not random.

It’s the shell type and which file got loaded.

This breaks it down simply.

linuxteck.com/shell-scripting-




Show Original Post


27.04.2026 13:22
techwire (@techwire@social.gamefan.net)

One of the most iconic emulators of all time is back with a sequel

Expect a suite of custom graphical enhancements along with classic features like fast-forward, rewind, and more.

androidauthority.com/super-zsn

#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #AndroidAuthority [Android Authority]




Show Original Post


27.04.2026 13:22
kiltedtux (@kiltedtux@mastodon.social)

OMG Ubuntu: Firefox’s free VPN is getting the one feature it was missing
omgubuntu.co.uk/2026/04/firefo




Show Original Post


27.04.2026 13:21
events (@events@events.hs3.pl)

[DI.Day] Dzień Cyfrowej Niezależności

1 czerwca 2026 16:00:00 UTC - GMT - Hackerspace Trójmiasto, 80-268, Poland

events.hs3.pl/events/512da333-





Show Original Post


27.04.2026 13:19
nluug (@nluug@nluug.social)

Het is 2026 en voor het bouwen van een data pipeline zijn Azure en AWS opeens uit de gratie omdat we onze data uit handen van een autocraat willen houden. Maar wat zijn de alternatieven?

Op de NLUUG voorjaarsconferentie van 7 mei 2026 gaat Marcel-Jan Krijgsman ( @MarcelJan ) bespreken hoe je een datalakehouse kunt bouwen in de Europese cloud. En meer: PySpark, notebooks en datavisualisatie. Is dat allemaal mogelijk?

Kijk voor het hele programma op nluug.nl/evenementen/nluug/voo
Schrijf je in voor deze dag en we zien je op de voorjaarsconferentie!

#NLUUG is dé vereniging voor (professionele) gebruikers van UNIX/Linux, #OpenSource, #OpenSystemen en #OpenStandaarden in NL.




Show Original Post


1 ...968 969 970 971 972 973 974 975 976 977 978 ...6704
UP