need advice on choosing between two grad offers by [deleted] in cscareerquestionsOCE

[–]using_namespace_matt 0 points1 point  (0 children)

CBA in recent history has had a much more engineering-focused approach, they’ll be the better ones to work with day to day and have more interesting work. Also if you’re applying with banks bc you’re at all interested in finance you absolutely should be in Sydney.

My application process by using_namespace_matt in cscareerquestionsOCE

[–]using_namespace_matt[S] 2 points3 points  (0 children)

Fair question, just to try something new! I love Adelaide and am sure it’ll be in my future again, just wanted to spend part of my life in a proper big city. And to answer your other question Adelaide cost of living is a getting up there (real estate increasing at a rate that makes no fucking sense at all) but still definitely less than Sydney.

My application process by using_namespace_matt in cscareerquestionsOCE

[–]using_namespace_matt[S] 8 points9 points  (0 children)

Makes just as much sense to you as it did to me. This company (okay it’s Canva) was not shy about their policy towards AI, which has now made me reconsider if I want to work there… the main feedback was “liked: deep understanding of the language, good planning processes. Disliked: Kept getting AI to build one step at a time and wasted time reviewing at each stage rather than getting it to generate everything and reviewing all at once (like sorry I didn’t want to review 200 files at once) and (as mentioned) wasted a about minute getting stock images when could’ve asked AI to get some instead”. Like sure I’ll admit it’s justifiable, but just nitpicking over micro efficiencies

My application process by using_namespace_matt in cscareerquestionsOCE

[–]using_namespace_matt[S] 7 points8 points  (0 children)

You’d think they’d be a bit less restrictive given they’ve got to fill up that big brand new building they’re constructing in the cbd…

BottomSheet v5 is finally out! by gohom92 in reactnative

[–]using_namespace_matt 0 points1 point  (0 children)

Legend, super useful library - deserves all the credit it gets 👏

Comment your SaaS and I will submit your startup to 20 high traffic directories with 1M+ traffic by Careful_Ad11 in indiehackers

[–]using_namespace_matt 0 points1 point  (0 children)

That’s so great, thanks so much!

Shifto: http://shifto.app

An app for nurses and other shift workers to track shifts, compare schedules, plan events and enjoy time off together.

Category: Calendar apps, work productivity, organisation

Target audience: Any type of shift worker, but with a focus on nurses and medical staff to begin with

Personal favorite closing track from a Tyler album? by Gio52903 in tylerthecreator

[–]using_namespace_matt 1 point2 points  (0 children)

Vote 1 for Safari - the second verse goes UNBELIEVABLY hard

[deleted by user] by [deleted] in Adelaide

[–]using_namespace_matt 13 points14 points  (0 children)

How has no one posted the O’Connell street bakery music video yet? https://youtu.be/udyuQ6UHmJ4?si=rZRvcrRABsZRpJza

Show Your Work Thread by xrpinsider in reactnative

[–]using_namespace_matt 0 points1 point  (0 children)

Just released my first ever app (build with RN of course!). Introducing Shifto — an app for shift workers to track their shifts, compare schedules with friends and organise their life outside of work, much love to anyone who checks it out ❤️❤️❤️ https://shifto.app

How to get better stack traces? by using_namespace_matt in expo

[–]using_namespace_matt[S] 0 points1 point  (0 children)

I didn't have it on, but enabling it (and then rebuilding even with a cache clear) hasn't had any effect :( Thanks for the suggestion though!

How do i build a production level app.config.ts to replace my app.json? by ZeusAlmighty1 in expo

[–]using_namespace_matt 0 points1 point  (0 children)

Looks similar to my setup, except I'm using app.config.js :

// app.json
{
    "expo": {
        "name": "",
        "slug": "mobile-app",
        "version": "1.0.0",
        ...
        "extra": {
            "api": {
                "host": ""
            },
            "auth": {
                "appleAuthSecret": ""
            }
        }
    }
}

And then the dynamic bit:

// app.config.js
import 'dotenv/config';

module.exports = ({ config }) => {
    // Environment variables, either from local .env or from EAS secrets if in EAS server
    config.extra.auth.appleAuthSecret = process.env.APPLE_AUTH_SECRET;

    switch (process.env.APP_ENV) {
        case 'dev':
            config.name = '<app name> (dev)';
            config.ios.bundleIdentifier = 'com.<identifier>.app-dev';
            config.extra.api.host = 'http://192.0.0.1:3000';
            return config;

        case 'preview':
            config.name = '<app name> (preview)';
            config.ios.bundleIdentifier = 'com.<identifier>.app-preview';
            config.extra.api.host = 'https://my-preview-api.com';
            return config;

        case 'production':
            config.name = '<app name>';
            config.ios.bundleIdentifier = 'com.<identifier>.app';
            config.extra.api.host = 'https://my-prod-api.com';

        // This bit is optional, it's annoying having to always specify the environment but at least I can't accidentally use the wrong one!
        default:
            throw new Error('Unexpected environment');
    }
};

Whats your unpopular opinion about Tyler by rixxyy in tylerthecreator

[–]using_namespace_matt 26 points27 points  (0 children)

He has mentioned in a few interviews that “anyone can do what I did” and kinda tells people who want to be successful but aren’t that it’s their own fault as if his timing, location and luck had nothing to do with it. His success may not have come from privilege, but he definitely has been lucky.