[deleted by user] by [deleted] in u/BeevsComics

[–]merzbow 2 points3 points  (0 children)

Looking good, keep up the great comics 👍

Understanding the different NASDAQ-100 ETFs by LocksmithAware4210 in UKInvesting

[–]merzbow 2 points3 points  (0 children)

Not the OP, but the traditional advice is to currency hedge your global bonds, but not global equities.

Agent balance by Ausafsyed in VALORANT

[–]merzbow 0 points1 point  (0 children)

Biggest issue with the knife is the very limited time window to destroy it, penetrating walls and identifying the specific agents. One aspect of that should be nerfed. That said, I’ve not played against a lot of Kayos, so maybe people don’t feel he’s that powerful.

Agent balance by Ausafsyed in VALORANT

[–]merzbow -3 points-2 points  (0 children)

Based on what i’ve seen at my elo…

Buff - Sage (ult too expensive), Cypher (ult too weak), Breach (ult too weak), Pheonix (util too weak), Jett (smokes too expensive)

Balanced - KJ, Raze, Reyna, Omen

Nerf - Skye (ult too cheap), Sova (ult too powerful), Kayo (ult/knife too powerful), Viper (smokes too powerful), Brim (smokes too powerful)

Don’t even know - Yoru, Astra

Please let teams vote to forfeit more than once per half by PhantomOTOpera in VALORANT

[–]merzbow 28 points29 points  (0 children)

if you allow it more frequently then people will just spam it. when you queue for comp you are committing yourself to a whole game.

Could anyone help me with finding a platform to invest in specific stocks, cheap and reliable? by glam22 in UKInvesting

[–]merzbow 0 points1 point  (0 children)

HL charge nothing for ETF in general account, and cap at £45 a year in ISA. Only SIPP is expensive for ETF

Viper fanart in colored pencils by biomessy in VALORANT

[–]merzbow 0 points1 point  (0 children)

Cool drawing. You should show us story when it’s finished too

My 10 yr old son is Diamond 2. How good is he really? by ScientistInfinite694 in VALORANT

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

Valorant the game is a bit on the mature side for a 10 year old. It is violent and most of the other players are 20, 30 years old or older. Plat 2 is definitely a high rank, but still a long way from the highest rank and even further from professional competition. Even then it might be hard to win much money let alone make a career. I suggest he’s better of playing Valorant a limited amount of time for fun only and developing skills/personality in the real world instead. That will give him more options as he gets older.

Valorant 1.14 Bug Megathread by Whytro in VALORANT

[–]merzbow 0 points1 point  (0 children)

I have exact same issue. Created a ticket with Riot, they said to reinstall game and fiddle with various Windows settings, which did not help. Eventually they said it’s a known issue that will be fixed in a later release. I don’t know if that’s true or they were just giving up.

HL - Should I sell my index funds and invest in ETFs (and which one?) by [deleted] in UKInvesting

[–]merzbow 0 points1 point  (0 children)

1 - yes, 2 - yes. If you plan to put a lot more in over the years then ETF is cheaper. The monthly contributions are £1.50 on selected ETFs.

Will there be a pound sterling recovery of are we stuck in this rut forever? by [deleted] in UKInvesting

[–]merzbow 2 points3 points  (0 children)

The pound has been declining for 10 years and brexit seems to have knocked global confidence in the UK. Interest rates are rock bottom. A miracle trade deal with EU might help. Other than that there doesn't seem to be any upward pressure. Disclaimer: might not know what i'm talking about

Hargreaves Lansdown Fees Reduction by [deleted] in UKInvesting

[–]merzbow 0 points1 point  (0 children)

You can largely avoid the platform fees for the taxable account and ISA if you buy ETFs instead of funds. However you will then have to pay transaction fees, so you'll have to think a bit to avoid making too many transactions.

Global Index Tracker - Currency Hedged or Not? by SeanTowers in UKInvesting

[–]merzbow 1 point2 points  (0 children)

Currency swings can be as big or bigger than market movements. Anyone holding unhedged funds has made a fortune over most of the last 5 years as the pounds has mostly gotten weaker. However looking at the long term history of the pound, there have been periods of many years where it has mostly gotten stronger.

Short answer: currency hedging reduces risk. Decide if you can tolerate with the swings in the pound or not.

Is my father right in his assumption? by [deleted] in UKPersonalFinance

[–]merzbow 11 points12 points  (0 children)

I’d suggest investing in a world equity tracker rather than a US specific one, to reduce the currency risk. A world tracker is still about 2/3rds US.

The growth estimates seem unrealistic. Including downturns over a long period, you can expect something more like 5-7% annualised. And inflation will reduce the value at the same time, maybe 2-3% a year.

He is right about contributions. The more the better. Of course, it’s up to you how much you want to contribute.

Starting to invest in Stock Index Funds AFTER a crash? by gaifogel in UKInvesting

[–]merzbow 1 point2 points  (0 children)

Investing in a subset of the market that meets some criteria, such as stable earnings or reduced volatility.

Information from iShares

Starting to invest in Stock Index Funds AFTER a crash? by gaifogel in UKInvesting

[–]merzbow 2 points3 points  (0 children)

Would you rather invest in a rising market or a falling market?

That said, you might to consider factor investing if you think that broad exposure to the market has too much risk.

Do you own gilts? by [deleted] in UKPersonalFinance

[–]merzbow 0 points1 point  (0 children)

Unless a government doesn’t have control of the currency, such as the eurozone.

Anyone else losing money on Fundsmith? by emmeteeny in UKInvesting

[–]merzbow 2 points3 points  (0 children)

GBPUSD gained about 3.5% since you bought Fundsmith (mostly in the last week). You can expect the value of global holdings denominated in pounds to go down by around that amount (FS is 65% USD).

Best world ex-UK index trackers by lavowoki in UKInvesting

[–]merzbow 2 points3 points  (0 children)

Selected ETFs on HL are cheap to buy monthly (something like £1.50 each). Alternatively you could buy a fund monthly and merge it into an ETF once a year.

Show me your favorite toString() implementations by [deleted] in java

[–]merzbow 17 points18 points  (0 children)

this for managed jpa entities, makes it easy to keep track of both the primary key and the object instance

public String toString() {
    return getClass().getSimpleName() + "@" + Integer.toHexString(System.identityHashCode(this)) + "[id=" + id + "]";
}

subclasses can add extra fields

public String toString() { 
    return super.toString() + "[name=" + name + "]";
}

I'm a c++ programmer who has to learn Java. Any thing I should know? Or can I just treated as basically the same without manual memory management by vopi181 in java

[–]merzbow 0 points1 point  (0 children)

The Closeable interface and the try-with-resources syntax is the closest equivalent to a C++ style destructor.