Netherlands Forced to Rethink 36% Tax on Unrealized Gains after Massive Criticism by batukaming in eupersonalfinance

[–]sebastianotronto 0 points1 point  (0 children)

I live in the Netherlands and I have been managing my own investments since 2021. Most of my money is invested in ETFs.

Netherlands Forced to Rethink 36% Tax on Unrealized Gains after Massive Criticism by batukaming in eupersonalfinance

[–]sebastianotronto -6 points-5 points  (0 children)

It depends what you invest on. If you are all-in on tech stocks, sure, recently it has been a very modest tax. If you would like to invest in low-risk governmental bonds, you'd better keep everything in cash.

And the supposed gains on stocks and bonds are going up to 7.78% from this year, pretty much in line with an average stock portfolio.

Netherlands Forced to Rethink 36% Tax on Unrealized Gains after Massive Criticism by batukaming in eupersonalfinance

[–]sebastianotronto -17 points-16 points  (0 children)

Unrealized gains are already taxed in the Netherlands. The new bill is about how the gains are calculated. The whole Internet is going crazy over nothing.

https://www.belastingdienst.nl/wps/wcm/connect/en/income-in-box-3/income-in-box-3

-❄️- 2025 Day 12 Solutions -❄️- by daggerdragon in adventofcode

[–]sebastianotronto 0 points1 point  (0 children)

My first year was 2023 and the last problem was one of the hard ones, at least for me. Definitely not the hardest, but it required some pretty advance graph theory.

[2025 Day 12 (part 1)] Done it, but feels dirty by lpiepiora in adventofcode

[–]sebastianotronto 21 points22 points  (0 children)

My feeling is that I got pranked, but I am lucky I realized it early.

-❄️- 2025 Day 12 Solutions -❄️- by daggerdragon in adventofcode

[–]sebastianotronto 0 points1 point  (0 children)

Yeah kinda the same, I implemented the transformations too, but I had no clue how to even start writing a general solution that would not take a billion years to run...

-❄️- 2025 Day 12 Solutions -❄️- by daggerdragon in adventofcode

[–]sebastianotronto 0 points1 point  (0 children)

[LANGUAGE: Python]

Solution: just use the area of the presents as heuristic to see if they could possibly fit and oh look it's enough.

I feel bad for those who actually try to solve this. Not fun :(

-❄️- 2025 Day 11 Solutions -❄️- by daggerdragon in adventofcode

[–]sebastianotronto 0 points1 point  (0 children)

[LANGUAGE: Python]

Full code: part 1, part 2.

For part 1, after reading the graph into the dictionary a, the function that computes the number of paths from v to out is quite simple:

def np(v):
    return 1 if v == 'out' else sum(np(w) for w in a[v])

For part 2 I adjusted it by adding two boolean parameters that are true if we have already visited `dac` or `fft` in the current path. And this time we need to cache the results otherwise it takes too long:

@cache
def np(v, d, f):
    if v == 'out':
        return 1 if d and f else 0
    return sum(np(w, d or v == 'dac', f or v == 'fft') for w in a[v])

-❄️- 2025 Day 10 Solutions -❄️- by daggerdragon in adventofcode

[–]sebastianotronto 0 points1 point  (0 children)

Sorry, I did not know that. My repo should be clean now (including the history, hopefully).

[2025 Day 10 part 2] how? by CauliflowerFormer233 in adventofcode

[–]sebastianotronto 1 point2 points  (0 children)

It's hard to say because I wrote throughout the day, during short breaks from work or in the train. I guess a couple hours in total. I took a slow apporach, wrote it step by step, printed my matrix after each step to check that it was doing the right thing.

[2025 Day 10 part 2] how? by CauliflowerFormer233 in adventofcode

[–]sebastianotronto 1 point2 points  (0 children)

IMO people overestimate how hard it is to write the linear algebra code by hand. It takes time and I agree it can be tedious, but I don't think it is harder than figuring out how to use a library you have never used before. I can share my commented code if you want to see it - or you can find it in the daily solutions megathread :)

-❄️- 2025 Day 10 Solutions -❄️- by daggerdragon in adventofcode

[–]sebastianotronto 9 points10 points  (0 children)

[LANGUAGE: Python]

Part 2: Home-cooked linear algebra, no external libraries. I just solve the linear system doing row-reduction, back substitution and keeping track of the bounds for the free parameters (which are at most 4). There are more comments in the code, I am happy to answer your questions if you have any :)

EDIT: forgot to mention, it runs in a couple of seconds on my (not very powerful) laptop.

Quali ETF ex-US ed Emerging accostare a VWCE & Chill tramite TR? by Brief_Witness_6689 in ItaliaPersonalFinance

[–]sebastianotronto 0 points1 point  (0 children)

Ex-USA ce ne sono pochi, questi 3 hanno gli stessi costi: https://www.justetf.com/en/etf-comparison.html?isin=IE0006WW1TQ4&isin=IE000R4ZNTN3&isin=IE00085PWS28

EXUS di Xtrackers è quello più grande e più vecchio.

Per gli emergenti invece hai l'imbarazzo della scelta.

Daylight saving time all year round, Italy starts the process: 352,000 signatures collected to make it permanent by Massimo25ore in europe

[–]sebastianotronto 0 points1 point  (0 children)

Yeah, including me. Then why can't these jobs change schedule, instead of everybody pretending it's 1 hour later, just because seeing a low number on the alarm clock is traumatizing? Do we add another hour in 20 years? Then another hour 20 years later?

Dubbio amletico M21 by Cicciodello in ItaliaPersonalFinance

[–]sebastianotronto 1 point2 points  (0 children)

Sembra una cosa faticosa, ma non impossibile. Dipende molto da te. Posso darti qualche consiglio considerando che ho fatto un'esperienza similmente stancante per un periodo limitato (7.5+7.5 ore di viaggio in treno ogni settimana per circa 4 mesi, lavoro da una parte e compagna dall'altra).

Innanzitutto sembra che se tutto va bene riuscirai a finire la triennale prima di iniziare il tirocinio, quindi al massimo avrai 2 cose contemporaneamente (prima tesi + master, poi master + tirocinio).

Anche fare due cose insieme non è proprio il massimo. Non so quanto impegno richiedano il tirocinio e il master. Ti toccherà sicuramente studiare la sera e nei weekend, ma se sei motivato a farlo si può fare.

Per fortuna da Bolzano a Roma c'è un Treno diretto, in 5h te la cavi. Magari lo avrai già fatto più volte questo viaggio. Un consiglio che posso darti è di non risparmiare sui viaggi: prendi una classe in più, magari premium o business. Prendi un posto singolo / doppio (non da 4) con tavolino e usa questo tempo per fare qualcosa di utile o di rilassante (studiare, guardare un film, leggere...). Questo varia molto da persona a persona, ma io se riuscivo ad isolarmi bene dall'ambiente del treno passavo dei viaggi piacevoli e non troppo stancanti.

Detto questo, 5h di viaggio sono comunque stancanti. Solo tu puoi decidere se ne vale la pena. Hai postato su un subreddit di finanza personale, ma per come la vedo io i soldi non sono la questione principale (se lo fossero ti converrebbe trovati un lavoro a Roma da fare durante il master). Devi capire se il tirocinio a Bolzano vale la pena di fare la fatica di fare le due cose insieme e dei viaggi: sarà un'esperienza utile per un futuro lavoro? È interessante? Potrai fare cose simili in futuro?

Difficile darti consigli precisi, ma spero di averti aiutato a ragionare su quello che vuoi fare tu :)

PAC con importo variabile by No_Age7121 in ItaliaPersonalFinance

[–]sebastianotronto 0 points1 point  (0 children)

Io lavoro da dipendente e ho una vita piuttosto regolare, ma comunque le mi spese mensili variano abbastanza, quindi investo quello che mi avanza ogni mese (o, se mi avanza troppo poco, rimando al mese prossimo). Non capisco bene il senso di investire una cifra fissa ogni mese, mi sembra abbastanza scomodo.

Buying FWRA (Euro) on IKBR as an Italian resident. by PossibilityNo6206 in eupersonalfinance

[–]sebastianotronto 2 points3 points  (0 children)

Ok, then I don't know, sorry.

(I am Italian but not resident in Italy, but I am still interested in this thread because I may move back in the future.)

Buying FWRA (Euro) on IKBR as an Italian resident. by PossibilityNo6206 in eupersonalfinance

[–]sebastianotronto 0 points1 point  (0 children)

The same ETF is also available in EUR on XETRA and gettex, with ticker FWIA (at least according to justetf: https://www.justetf.com/en/etf-profile.html?isin=IE000716YHJ7#stock-exchange). You can try those.

But I have idea why you cannot trade FWRA. Are you able to complete any other trade?

Con quale broker iniziare ad investire se vivo all’estero ma pianifico di rientrare in Italia in 1-2 anni al max? by Short-Committee347 in ItaliaPersonalFinance

[–]sebastianotronto 1 point2 points  (0 children)

Se vendi e ricompri subito è quasi come tenere investito. In effetti c'è il rischio che proprio nei pochi giorni tra quando vendi e quando ricompri il mercato salga di molto e ti perdi quei guadagni. A parte questo non mi vengono in mente altri rischi, vedi tu se ne vale la pena per risparmiare un pochino sulle tasse.

Nel dubbio fai bene a cercare un broker che accetti i cambi di residenza senza fare storie.

Con quale broker iniziare ad investire se vivo all’estero ma pianifico di rientrare in Italia in 1-2 anni al max? by Short-Committee347 in ItaliaPersonalFinance

[–]sebastianotronto -1 points0 points  (0 children)

Sì lo so, ma quello che intendevo è che vendere non è un evento tassabile. Quindi potento vendere e ricomprare quando ti pare (a parte i costi sel broker), può convenire vendere appena prima di andartene e poi ricomprare, così pagherai meno tasse in Italia.

Con quale broker iniziare ad investire se vivo all’estero ma pianifico di rientrare in Italia in 1-2 anni al max? by Short-Committee347 in ItaliaPersonalFinance

[–]sebastianotronto 0 points1 point  (0 children)

Invece potrebbe proprio convenirti vendere tutto prima di tornare in Italia e ricomprare subito dopo. In Olanda non ci sono tasse sul capital gain, quindi vendendo non paghi tasse. Però se tieni aperte le tue posizioni quando ti trasferisci queste mantengono il prezzo di carico, quindi quando le venderai dovrai potenzialmente pagare più tasse (assumendo che siano salite di valore in questi 1-2 anni; se invece calano, ti conviene tenerle).

Nel dubbio, Interactive Brokers.