Jobs in het buitenland als junior software engineer

Ik ben juli 2025 afgestudeerd als software engineer en ben ondertussen ongeveer een jaar op zoek naar werk. Ik heb ondertussen al op heel wat vacatures gesolliciteerd en mijn CV ingestuurd.
Kort over mezelf: ik heb eerst een master Industrieel Ingenieur Mechatronica gedaan en daarna een switch gemaakt naar Industrieel Ingenieur Software. Ondertussen heb ik ook zelf wat projecten gebouwd. Ik heb momenteel één app in de iOS App Store (een soort personal tracker) en een tweede app (een party game) die binnenkort voor iOS en Android uitkomt. Die laatste zit momenteel nog in review/beta.
Bij veel sollicitaties kreeg ik als feedback dat ze uiteindelijk voor kandidaten met meer ervaring gingen. Van een groot deel heb ik zelfs helemaal niets meer gehoord.

Wat mij momenteel vooral begint te frustreren, is dat ik tijdens gesprekken merk dat mensen me vragen of ik dan net afgestuurd ben en dan nogal verschieten wanneer ik zeg dat ik al een jaar aan het zoeken ben, staat letterlijk in mijn CV mijn afstudeerdatum... Vanaf dat moment heb ik soms echt het gevoel dat de kans op de job al een stuk kleiner wordt. Ik begin stilletjes aan wat de moed te verliezen, want hoe langer ik niets vind, hoe moeilijker het wordt veronderstel ik.

Daarom ben ik nu ook beginnen kijken naar jobs in het buitenland. Alleen vind ik het moeilijk om te weten waar ik daarvoor moet zoeken. Zijn er hier mensen die als software engineer vanuit België naar het buitenland zijn gegaan? Welke landen/sites/platformen zouden jullie aanraden om vacatures te vinden? En hebben jullie nog tips voor iemand die pas afgestudeerd is maar ondertussen al een jaar zonder job zit?

reddit.com
u/TmDee_YT — 1 day ago

Digital Services Act Compliance

I built an app that is currently focused purely on Europe, with plans to add other continents later. The app is mostly free, but I’ve added a few premium features.

I’ve now realized that, to launch it properly in Europe, I may need to publicly list my full personal/business details, which feels a bit like doxxing myself. I had already considered renting a PO box and using that address instead.

My question is: can I initially submit the app as a non-trader, let it go through review first, and then start the process of switching from non-trader to trader once I have all the required records and address setup in place?

Where I live, I can rent a PO box for starter for 3 months, so I was thinking that by the time the app is reviewed and I get all the documents sorted, my 'trial' 3 months can maybe already be over.

Has anyone tried this before, or gone through the non-trader to trader switch after submitting an app? Any advice would be appreciated.

reddit.com
u/TmDee_YT — 2 months ago

var body: some View {
    if imagesData.isEmpty {
        // Fallback icon if no photos
        Image(systemName: fallbackIcon)
            .resizable()
            .scaledToFit()
            .frame(height: 120)
            .foregroundColor(fallbackColor)
            .padding(.top)
            .padding(.bottom, 20)
    } else if imagesData.count == 1 {
        // Single image
        if let uiImage = UIImage(data: imagesData[0]) {
            ZStack {
                Image(uiImage: uiImage)
                    .resizable()
                    .scaledToFit()
                    .frame(maxHeight: 250)
                    .clipShape(RoundedRectangle(cornerRadius: 12))
                    .shadow(radius: 5)
                    .padding(.horizontal)
                    .padding(.top)
            }
        }
    } else {
        // Multiple images - show carousel
        VStack(spacing: 8) {
            TabView(selection: $currentIndex) {
                ForEach(Array(imagesData.enumerated()), id: \.offset) { index, data in
                    if let uiImage = UIImage(data: data) {
                        Image(uiImage: uiImage)
                            .resizable()
                            .scaledToFit()
                            .frame(maxHeight: 250)
                            .clipShape(RoundedRectangle(cornerRadius: 12))
                            .shadow(radius: 5)
                            .padding(.horizontal)
                            .padding(.top)
                            .tag(index)
                    }
                }
            }
            .tabViewStyle(.page(indexDisplayMode: .never))
            .frame(height: 250)
            
            // Page indicator dots
            HStack(spacing: 8) {
                ForEach(0..<imagesData.count, id: \.self) { index in
                    Circle()
                        .fill(index == currentIndex ? fallbackColor : Color.gray.opacity(0.4))
                        .frame(width: 8, height: 8)
                }
            }
            .padding(.top, 4)
        }
        .padding(.top)
    }
}

The image doesnt round correctly, the difference is in the carrousel it rounds perfectly, even rounds portrait images like how I want it to. The moment I put those exact same pictures as a single image the rounding doesnt happen anymore. Feel free to correct me where I'm wrong. I scale the image to fit, with a dedicated maxHeight property. Not FillToFit since I also want to be able to put portrait and landscape pictures by each other in the carrousel. I clip the shape to a rounded rectangle with a radius of 12, add some shadow and padding and that's it. I do the exact same thing when a single image yet the rounding never happens, it's like it never clips to the shape of the picture.

u/TmDee_YT — 4 months ago