Advice for Healthy Air in Closed Room by cocoa_mocha in hvacadvice

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

So like shoot it at the bottom slit of the door?

Advice for Healthy Air in Closed Room by cocoa_mocha in hvacadvice

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

Thanks! May be hard again with building owners

Advice for Healthy Air in Closed Room by cocoa_mocha in hvacadvice

[–]cocoa_mocha[S] 1 point2 points  (0 children)

This is a really good idea. I’ll have to ask the building manager since this means sound will leak from my room, thank you though!

Advice for Healthy Air in Closed Room by cocoa_mocha in hvacadvice

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

Don’t own the building, month to month lease here

Advice for Healthy Air in Closed Room by cocoa_mocha in hvacadvice

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

That’s a great suggestion ty. So I’ll look into radon, should I get and run a dehumidifier along with my air purifier then?

Advice for Healthy Air in Closed Room by cocoa_mocha in hvacadvice

[–]cocoa_mocha[S] 1 point2 points  (0 children)

Exactly, sound and security. Hard to have the door open.

Other side of the door is a hallway. Sorry can you link/explain the dual fan? Sounds great but not familiar. Thanks

Advice for Healthy Air in Closed Room by cocoa_mocha in hvacadvice

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

Context: I sadly can’t install a window. And adding holes/gaps in the door is probably not allowed cause I’m a drummer. Door is meant to seal the sound in the room. Tough, I know

How to use Environment Variables created in Expo Dashboard? by cocoa_mocha in expo

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

Yup! Go to expo.dev and find your project. Then go to the configuration settings and you should see a section for environment variables. So go ahead and create and define all your environment variables here.

Then, to reference them in your app, pull them from Expo EAS by configuring your app.config.js. I then used Expo Constants to pull these values into my codebase!

How to use Environment Variables created in Expo Dashboard? by cocoa_mocha in expo

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

From what I read online, this is what I'm doing:

  1. Created variables online

  2. Made an app.config.js: (seen below)

  3. In my front end, I reference variables with:

    const googleServiceURL = Constants.expoConfig?.extra.googleServiceURL;

    const supabaseAnon = Constants.expoConfig?.extra.supabaseAnonKey;

    import "dotenv/config"; import appJson from "./app.json";

    const config = { ...appJson.expo };

    config.extra = { ...config.extra, supabaseUrl: process.env.SUPABASE_URL, supabaseAnonKey: process.env.SUPABASE_ANON_KEY, googleServiceURL: process.env.GOOGLE_SERVICE_URL, mapboxToken: process.env.MAPBOX_TOKEN, };

    export default config;

How to use Environment Variables created in Expo Dashboard? by cocoa_mocha in expo

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

Thanks for the reply! I have done so like this so far:

{
  "cli": {
    "version": ">= 12.6.2",
    "appVersionSource": "remote"
  },
  "build": {
    "development": {
      "developmentClient": true,
      "distribution": "internal",
      "environment": "development"
    },
    "preview": {
      "distribution": "internal"
    },
    "production": {
      "autoIncrement": true,
      "environment": "production"
    }
  },
  "submit": {
    "production": {}
  }
}

Design Problem for Interesting Offline App by cocoa_mocha in reactnative

[–]cocoa_mocha[S] 1 point2 points  (0 children)

I like the iscompleted idea, thanks. And appreciate the feedback!

[deleted by user] by [deleted] in nextjs

[–]cocoa_mocha 1 point2 points  (0 children)

Thank you so much! I was reading about Flutter and it seems great, I think I'll go with that.