▲ 4 r/mazda

Oil Change and checkup

Soon I am reaching 50k kms and have to do full check up and oil change, last time I did at official Mazda Deutschland in Berlin and it was an absolute rip off 800€ !!

They billed me for absolutely horrendous services such as checking if indicators work and put about 5€ and things like that…

I was wondering what’s the alternative is?

Should i just book any other shop and change the oil only?

I have Mazda 3 2021 BP

reddit.com
u/Siamandthegreat — 3 days ago
▲ 0 r/HTML

100% HTML/CSS/JS no dependency

I've created a micro-kernel architecture which can load apps and each app shall be a custom-element with pure js and css.

and it works perfectly, maintainace is easy and easy to extend, I have a feeling that all these frameworks and fancy tools are kinda overrated, waht do you think?

PS:

- I used AI to spped up my development

u/Siamandthegreat — 5 days ago

[JavaScript] jsglobe: 100 browser based developer tools, no framework and no build step

Static site, plain custom elements, every tool is a lazily loaded ES module

with its own route. No npm install, no bundler, the source in the repo is

what runs.

A few things had to be written by hand because there was nothing to import

without a build step: QR with Reed-Solomon, ID3 tag reading and writing,

an ASN.1 parser for X.509, and Code 128.

MIT. https://github.com/samalstudios/jsglobe

Live: https://jsglobe.com

u/Siamandthegreat — 6 days ago
▲ 1 r/mazda3

I’ve got a scratch on my car that can not be polished away

I’ve got a scratch on my car’s side real close to the wheels while parking that can not be polished away, not too big but every paint shop says they have to paint the passenger door fully and the rear fender and it cost 1500 € and 2000€ with insurance 🤷‍♂️

Mazda dealership says 2000€

I just got my driver’s license about a year ago and don’t want to ruin my insurance score, what should I do?

reddit.com
u/Siamandthegreat — 2 months ago
▲ 1 r/mazda

Is it normal to have presurized tank?

everytime that I got o gas station and open the tank lid it makes a pfiss sound (hissing sound for less than 1 second) and seems like it's presurized or ... , Is that normal?

Mazda 3 2021 BP -- HatchBack (Europe)

reddit.com
u/Siamandthegreat — 2 months ago

A modern, privacy-focused Chrome extension that helps you instantly redact sensitive information before taking screenshots.

Capture screenshots and quickly redact sensitive information before sharing images, documents, or browser content online.

  • Capture browser screenshots instantly
  • Blur or hide sensitive details
  • Share safer screenshots online
  • Simple editing workflow

Link: Chrome Extension Store

u/Siamandthegreat — 2 months ago

GitHub - code-by-sia/swift-translator: Super fast offline translator Google chrome extension

A fast in-browser translation extension that helps you instantly translate selected text while browsing without interrupting your workflow.

  • Translate selected text instantly
  • Supports fast browsing workflows
  • Minimal and clean interface
  • Built for everyday productivity
  • Using local llm and sendin nothing to internet
chromewebstore.google.com
u/Siamandthegreat — 2 months ago
▲ 0 r/mazda

Is there any better aftermarket Dispaly for Mazda 3

I have a Mazda3 2021 BP but I do really hate the non-touch screen and Mazda's default OS.

is there any way to improve it ?

reddit.com
u/Siamandthegreat — 2 months ago

After years of Java and Spring Boot, I started building a language with DI and IoC built in

For years I used Java and Spring Boot for backend services.

I actually like Kotlin. The syntax is fine, the tooling is great, and I like building software around SOLID principles and clean architecture.

What kept bothering me was that a lot of the things I relied on came from frameworks rather than the language itself.

  • Need DI/IoC? Framework.
  • Need lifecycle management? Framework.
  • Need configuration binding? Framework.
  • Need a bunch of collection utilities? Library.
  • Need lazy sequences? Another library.

And before long a tiny service ends up pulling in a huge stack.

These days I deploy everything in Docker in my personal k8s cluster anyway, so I personally don't get much value from the JVM's "run anywhere" story. What I wanted was a small native binary with fast startup and a lower memory footprint.

I looked around but couldn't find a language that felt quite right for what I wanted, so eventually I started building one.

The result is Xi.

The idea is to move some things that are traditionally framework responsibilities into the language itself.

I'm curious what other backend developers think:

Which Spring Boot features do you think belong in frameworks, and which could reasonably be language features?

Project: https://code-by-sia.github.io/xi/

code-by-sia.github.io
u/Siamandthegreat — 2 months ago
▲ 1 r/PWA

Kelane: Recipe manager and cooking assistant

A cooking assistant and recipie manager that helps to keep the fridge update and reccommend recipies based on the stock and their expiration date + user's tasts and diet preferences,

https://chef.samalstudios.com/

u/Siamandthegreat — 2 months ago
▲ 1 r/PWA

Built an Accounting Software PWA -- looking for feedback

Hi everyone,

I've been working on an accounting software Progressive Web App that runs directly in the browser and can be installed on desktop and mobile devices.

Dashboard

Some features:

  • COA and Accounts
  • Double-Entry Bookkeeping
  • Financial reports
  • Offline support
  • Installable as a PWA
  • Responsive design for mobile and desktop

I built it primarily to explore how far a PWA can go as a business application.

I'd love feedback from the community on:

  • Performance
  • Offline experience
  • UI/UX
  • Features you'd expect from an accounting PWA

Demo: https://kost.samalstudios.com/

Thanks!

reddit.com
u/Siamandthegreat — 2 months ago
▲ 1 r/PWA

Any solution for CORS problem while fetching RSS data

I recently finished a project of mine https://github.com/code-by-sia/kelane however I have an issue with the RSS reader as none of the free CorsProxies work freely to fetch rss data

I tried Multiple providers

As I am hosting it on my server https://chef.samalstudios.com/ and I don't have any plan to make money out of it, I am looking for a secure way to solve the CORS issue; I thought also about running a small proxy on my server, but It needs to have lots of guards and security around it to preventing it to be missused by internet.

maybe I am going in a wrong direciton and I should change my approach for getting data entirley ...

Any recommention or feedback is highly appreciated <3

reddit.com
u/Siamandthegreat — 2 months ago
▲ 15 r/microservices+2 crossposts

After years of Java and Spring Boot, I started building a language with DI and IoC built in

For years I used Java and Spring Boot for backend services.

I actually like Kotlin. The syntax is fine, the tooling is great, and I like building software around SOLID principles and clean architecture.

What kept bothering me was that a lot of the things I relied on came from frameworks rather than the language itself.

  • Need DI/IoC? Framework.
  • Need lifecycle management? Framework.
  • Need configuration binding? Framework.
  • Need a bunch of collection utilities? Library.
  • Need lazy sequences? Another library.

And before long a tiny service ends up pulling in a huge stack.

These days I deploy everything in Docker in my personal k8s cluster anyway, so I personally don't get much value from the JVM's "run anywhere" story. What I wanted was a small native binary with fast startup and a lower memory footprint.

I looked around but couldn't find a language that felt quite right for what I wanted, so eventually I started building one.

The result is Xi.

The idea is to move some things that are traditionally framework responsibilities into the language itself.

I'm curious what other backend developers think:

Which Spring Boot features do you think belong in frameworks, and which could reasonably be language features?

Project: https://code-by-sia.github.io/xi/

reddit.com
u/Siamandthegreat — 2 months ago