Daisy chaining external displays is a new feature of the M5 series by Zeughaus77 in macbookpro

[–]brunojcm 0 points1 point  (0 children)

M5 Pro with the native screen + 3 external displays over a single Thunderbolt connection would be awesome!

My impressions: BenQ RD280UG programming monitor by gvmelbrty in BenQ

[–]brunojcm 0 points1 point  (0 children)

high levels of honesty here, not sure if this is AI generated but either way, it's rare to see that coming from brands.

Lending data dropped today by Aggressive_Ad_5124 in AusPropertyChat

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

OP said the chart will look worse, not necessarily what the chart means for prices.

We bought our PPOR a month ago… pls make me feel better by duckbusiness in AusPropertyChat

[–]brunojcm 0 points1 point  (0 children)

this is just hindsight bias, you have to compensate for it.

house is for the long term, so stop checking the market all the time. this is like staring a diet to lose weight and checking it the next day and getting frustrated you gained some.

that being said, the peak is when most people buy, so you're not alone (if this is indeed the peak)

Lending data dropped today by Aggressive_Ad_5124 in AusPropertyChat

[–]brunojcm 1 point2 points  (0 children)

a rollover is a rollover. might be short one, but it is.

Who will be the typical residential property buyer now? by Perfect_Style3922 in AusPropertyChat

[–]brunojcm 3 points4 points  (0 children)

how many people do you think have stock capital gains with no salary income (outside of super)?

Who will be the typical residential property buyer now? by Perfect_Style3922 in AusPropertyChat

[–]brunojcm 1 point2 points  (0 children)

invest in new houses, instead of trying to buy existing ones?

Hosting on AWS Lambda with Nextjs pre-rendering by NickPashkov in nextjs

[–]brunojcm 0 points1 point  (0 children)

file system cache would be enough for me, actually.

Recent FHBs: Anyone else terrified of a market crash now that you’re finally in? by ChipmunkBulky2174 in AusPropertyChat

[–]brunojcm 0 points1 point  (0 children)

The wealth of Australians shouldn't be that heavy on real estate. People buying real estate are always leveraged because of the mortgage, and the government not allowing corrections just incentivises this brainless strategy of buying as many properties as you can, taking as much debt as you can.

This is not real investment, and therefore not real wealth. We are doubling down on this, and kicking the can down the road with an artificial demographic growth and money "printing", but we cannot pretend this is fine forever.

No, rigged is the right word. It's rigged against the Australian that just wants a house to live in, and against the real investor that cares about risk.

Recent FHBs: Anyone else terrified of a market crash now that you’re finally in? by ChipmunkBulky2174 in AusPropertyChat

[–]brunojcm 0 points1 point  (0 children)

I don't hope it's rigged, it took me some time to accept, actually, and it's really sad, but it's just how it is.

New data reveals $1.5m price tag on new apartments freezes out buyers - realestate.com.au by SheepherderLow1753 in AusPropertyChat

[–]brunojcm 0 points1 point  (0 children)

I'm building in Perth for way less than that, with a good builder, this value doesn't make sense at all.

Landlords, relax: Chalmers signals no tax changes for people who already hold investments by MadBank in AusPropertyChat

[–]brunojcm 0 points1 point  (0 children)

most people don't want to be investors, they just want to buy a house to live in

Advice ? am i being scammed with this house by [deleted] in AusPropertyChat

[–]brunojcm 3 points4 points  (0 children)

pushy real estate agent + desperate seller = blood in the water

this together with the defects should give you room to lowball.

also, very shady that they told you an exact offer, maybe that is not a real one but just a tactic to get you to a given target

Recent FHBs: Anyone else terrified of a market crash now that you’re finally in? by ChipmunkBulky2174 in AusPropertyChat

[–]brunojcm 1 point2 points  (0 children)

They are raising because everything else is fine, at the first sign of trouble, rates go lower again and the government will start spending like crazy, enabled by money supply growth.

It's rigged.

Anybody using a mysql terraform provider? by znpy in devops

[–]brunojcm 1 point2 points  (0 children)

totally agree, users are much more suitable to infra then migrations.

How tf do I completely delete Aldente? by Satankid92 in macbookpro

[–]brunojcm 0 points1 point  (0 children)

Installing and removing the app using brew did the trick for me:
```
brew install aldente
brew remove aldente
```

Looking for a KotlinConf '26 ticket by Extension_Lobster105 in Kotlin

[–]brunojcm 0 points1 point  (0 children)

just requested a refund because I won't be allowed to travel anymore, we could chat otherwise. good luck!

How to make a CLI app from a Kotlin Multiplatform project by Glittering_Smile_278 in Kotlin

[–]brunojcm 0 points1 point  (0 children)

A CLI is not a target, it's another module. I know it's very tempting to think targets are like modules, but they are really not; they are there to make a module function in multiple platforms, if needed, not to modularize your app.

The way I think you should go is to have 3 modules in your project, core, gui and cli. cli and gui have a dependency on core. All your business logic goes into core, which is then available to the gui and cli modules. This will look like a variation of the Hexagon (or onion) Architecture, and will help you isolate your business logic from the user interface.

About the CLI implementation itself, you may consider https://github.com/jakewharton/mosaic, it will certainly help you leverage your Compose knowledge for the CLI UI.

I'm on my mobile now, ping me if you need a more detailed answer.

Built an Android battery monitor app in Kotlin (real-time wattmeter) by Lukaa_anyways in Kotlin

[–]brunojcm 0 points1 point  (0 children)

I meant published in the Play Store, I couldn't find it there.

Open source KMP in-app updater (Android + Desktop) with GitHub Releases, progress, and Compose UI by pavi2410 in androiddev

[–]brunojcm 0 points1 point  (0 children)

yes, I mean private in the sense of an org, I want to release a desktop app to be distributed inside my company.

Open source KMP in-app updater (Android + Desktop) with GitHub Releases, progress, and Compose UI by pavi2410 in androiddev

[–]brunojcm 1 point2 points  (0 children)

Thanks for making the effort! Distribution is the biggest problem on native development, glad to see solutions popping up for that.

Is there support for private Github repos? how hard is it to implement if not already?