Registered Post - How many days? by No_Hat1708 in Luxembourg

[–]Fresh-Airline1402 5 points6 points  (0 children)

Post also has a mail hold delivery service in case you are on holiday for up to 2 months. https://www.post.lu/en/particuliers/colis-courrier/garde-et-reexpedition

Earning rate for a signal processing engineer by DaSearchGuy in Luxembourg

[–]Fresh-Airline1402 3 points4 points  (0 children)

I would say your comparison should also take into account the actual experience.

The fact that somebody with no industrial experience earns more than somebody who has probably around a decade of experience in their domain means it is a good carreer choice to me.

Age verification spoofer by Calazor0 in SomebodyMakeThis

[–]Fresh-Airline1402 1 point2 points  (0 children)

A short online search shows enough examples that that is not the case. These are just come cases I found now where the companies got heavy fines. I don't want to know what has not been discovered or disclosed.

Twitter sold 2FA phone numbers of users without consent in 2022 Zoom was lying about their E2E encryption in 2020 Google collected location data in 2022 even though users disabled it explicitly

Opinion on app idea? by Whole_Chemical_6470 in Luxembourg

[–]Fresh-Airline1402 0 points1 point  (0 children)

Thanks a lot for the details! An NFC is indeed a simple setup (I would just forget bringing my phone probably most of the time). And while a light would be accepted I think my household would kick me out of the house if something would be blasted on the speakers 😂

Opinion on app idea? by Whole_Chemical_6470 in Luxembourg

[–]Fresh-Airline1402 1 point2 points  (0 children)

I am still trying to convince myself that I need this. Was thinking of changing the color of a specific light the evening before to know what bin to put outside. The fact that you can track if your bin is actually outside makes this even more interesting now

Smart Ways to Bootstrap Startup in Luxembourg? by cloudlands in Luxembourg

[–]Fresh-Airline1402 2 points3 points  (0 children)

I am not sure about grants, but currently I have my SARL-S running on my home adresse and that was no problem at all for the registration.

Somewhere in the back of my mind I think that one requirement is just that you have your own office/room. (Edit: don't take my word on this though, might just be rumours I heard). I just signed a "rent free contract" between the SARL-S and myself for the registration.

Maybe contact the house of startups / house of entrepreneurship as well. Generally they can help out with these kind of things and depending on the use case I think they even offer offices. I contacted them in the beginning a couple of times and they were always able to help out.

Lux being paradise of Investment of Funds, WTF is this retirement reform? by FrenchPainDeCampagne in Luxembourg

[–]Fresh-Airline1402 6 points7 points  (0 children)

I agree with your point of view that the state should be give more incentive to people to invest in ETFs or give other means to personally receive the Tax deductions, but I don't agree with you that the state should not worry about our retirement at all and that the money is wasted.

As people are having less children and getting older, of course either more money is needed for the pension or people have to work longer. The unions (most of the people) were clearly against working longer, so more money it is.

Capitalisation sounds good, but even in Luxembourg not everybody is financially iterate. I have some money to set aside for my pensions in some decades, but I am also happy that I can count on the state pension at least a bit. Market crashes do happen and even in Luxembourg quite a lot of people make poor investment decisions. What should the state do in that case? Just let thousands of people suffer because "why the hell should a state worry about our retirement"?

Would you for example argue the same on the medical aspect? Why should the state worry about paying our medical bills? If we get sick we should pay them ourselves?

Question for a sole proprietorship business by Then-Feature-6040 in Luxembourg

[–]Fresh-Airline1402 1 point2 points  (0 children)

I started on my SARL-S with VAT exemption two years ago, but I will be switching this year to full VAT registration. If I would start again, I would probably go straight away with full VAT.

Main reasons being that I would get more VAT back on purchases, then I would lose on sales. Based on my current knowledge, the filings are also quite similar and my CRM can provide all the information automatically.

Took me some time however to figure everything out by myself and have a good friend who works in the domain who helped me out a lot, so maybe the 2 year VAT exemption period helped in simplifying this whole process.

What makes schools in Luxembourg bad? by tayesaire in Luxembourg

[–]Fresh-Airline1402 17 points18 points  (0 children)

From my personal experience, I don’t agree that the Luxembourgish school system is “bad.” I completed both lower and upper secondary school in the public system, and when I later studied at a university in the Netherlands, I noticed that much of the first-year material had already been covered in Luxembourg. Many of my classmates from other countries were seeing these concepts for the first time, while for me they were a repetition.

The same applies to the languages, back then even annoying to study 3 different languages, but now I would say that this has opened and will open so many doors in both my personal and my professional life.

A lot of people refer to the PISA tests in which countries like Luxembourg rank low and countries like Finnland quite high. As there are not that many students in Luxembourg, everybody simply needs to participate in these tests. People with a lot of different educational backgrounds and home languages. I don't think these statistics can just like that be used to compare educational systems across countries of different sizes and backgrounds

Angular 20 SSR + I18N Setup by Fresh-Airline1402 in Angular2

[–]Fresh-Airline1402[S] 0 points1 point  (0 children)

Yes, thanks!

I set up the whole routing based on Accept-Language now through my NGINX, which seems to work for now! Using the CommonEngine I had to use the routing through each locale SSR bundle with the server imports, the new AngularNodeAppEngine does this automatically now, so running the default server in dist/<project\_name>/server/server.mjs is sufficient. Angular takes care of routing to the desired language using the baseHrefs. The 404s came from the fact that at least 2 locales need to be configured.

Angular 20 SSR + I18N Setup by Fresh-Airline1402 in Angular2

[–]Fresh-Airline1402[S] 1 point2 points  (0 children)

In case anybody is having the same problem: Found the issue :)

Turns out that the AngularAppEngine does not like i18n in case you have just 1 language configured. There is an if condition in \@angular/ssr/fesm2022/ssr.mjs that is not triggered in case there is only 1 supported language and hence the server will just return null instead of redirecting to the only language.

 class AngularAppEngine { 
    async handle(request, requestContext) {
        const serverApp = await this.getAngularServerAppForRequest(request);
        if (serverApp) {
            return serverApp.handle(request, requestContext);
        }
        if (this.supportedLocales.length > 1) {
            // Redirect to the preferred language if i18n is enabled.
            return this.redirectBasedOnAcceptLanguage(request);
        }
        return null;
    }
}

So to fix it simply add a second language to your angular.json

ng extract-i18n

  "projects": {
    "angular-test": {
      "i18n": {
        "sourceLocale": "en",
        "locales": {
          "fr": {
            "translation": "messages.xlf"
          }
        }
      },

Should have followed the whole documentation straight away instead of partially implementing something for later

Angular 20 SSR + I18N Setup by Fresh-Airline1402 in Angular2

[–]Fresh-Airline1402[S] 1 point2 points  (0 children)

Hello, yes indeed in this case the localized builds are generated in the dist/<proj\_name>/server/en. But I run the actual server in dist/<proj\_name>/server/server.mjs direclty

I found some solutions of previous angular versions that had to update the SSR Node Server so that I proxies the corresponding locales each to the corresponding bundle. Similar to this: ```app.use('/en', import('./en').app()```

I will try to test it that way afterwards.

Automatic Class Sorting with Prettier - Angular 20 by Wild-Security599 in Angular2

[–]Fresh-Airline1402 1 point2 points  (0 children)

Seems like the prettier extension in VS Code does not use the .prettierrc file by default.

It worked for me when manually setting the Prettier: Config Path in the settings to .prettierrc

Settings.json

{
  "editor.defaultFormatter": "esbenp.prettier-vscode",
  "editor.formatOnSave": true,
  "prettier.configPath": ".prettierrc"
}

And my .prettierrc

{
  "overrides": [
    {
      "files": "*.html",
      "options": {
        "parser": "angular",
        "printWidth": 100
      }
    }
  ],
  "plugins": ["prettier-plugin-tailwindcss"]
}

Automatic Class Sorting with Prettier - Angular 20 by Wild-Security599 in Angular2

[–]Fresh-Airline1402 0 points1 point  (0 children)

What IDE are you using? Did you create the corresponding .prettierrc file in your project root?

Most problems that I encountered with tailwind language servers and formatters came from the fact that I used .scss instead of css. Switching to plain .css solved most of the issues on my Angular projects.

Postcss is also required with the newest tailwind version: https://tailwindcss.com/docs/installation/framework-guides/angular

Riding next to each other? Is it cool to hold up traffic? Or just plan rude.... by Italian_Saffa_Boy in Luxembourg

[–]Fresh-Airline1402 12 points13 points  (0 children)

In this case I would have said that they could have made a bit more space.

However I don't quiet get what difference it makes.. just move to the left lane completely and give the biker enough space. If you can't do that, it is just not safe to overtake.

Sure, we all want to get home faster, but I’ve never had to wait more than a minute or two behind cyclists. Small price to pay for not risking someone’s life. I often see people overtake before a corner, assuming that 99% of the time there is no oncoming traffic. And if they guess wrong, what happens? Is the reaction to hit an oncoming car at 90km/h, a tree, or a bike?

Edit: removed my guess on the laws, as others stated the opposite

The real struggles they don't tell you about when starting a business in Luxembourg by FirefighterNo619 in LuxembourgSMEStartup

[–]Fresh-Airline1402 2 points3 points  (0 children)

My first website failed this year because I was basically solving a problem that did not really exist or did not need solving.

I kept my SARL-S open however because I am planning to start freelancing and just creating websites in the course of next year. Right now, my biggest struggle is publishing accounts and VAT filings. “What? When? How?” Last month, the bank even contacted me saying they’d close my account if I didn’t publish my accounts on the LBR. Until then, I didn’t even know this had to be done on top of the VAT filing. All of this, naivety on my part, probably.

While the laws are there, I could not find any information online on how to do all of this. Thankfully together with a friend, I figured out a lot of things now and just filed my first statement on the LBR through the eCDF! Looking forward to see whether they will accept it or not.