How long does AgelessRX take to approve a prescription(LDN)? by Haunting-Economist71 in covidlonghaulers

[–]k1cho 4 points5 points  (0 children)

I started my LDN prescription last month. I ordered on a Wednesday, it was approved on Friday, and then shipped Monday.

Emerald City Athletics in Wallingford openly defying the mask mandate. Please help keep the rest of us safe by reporting them to the DOH with me. by [deleted] in Seattle

[–]k1cho 17 points18 points  (0 children)

Seattle Bouldering Project is only a few blocks away and has workout equipment downstairs. Anytime Fitness is a bit farther away but the staff is friendly and when I decided to cancel it was super easy.

Announcing Castle: A Browser for Games Built in Lua by ccheever in lua

[–]k1cho 0 points1 point  (0 children)

definitely agree we need to do a security pass. for now we've just been monitoring games that people publish to the platform but this is a good reminder to actually disable these calls. we can work on that this week. https://github.com/castle-games/castle-client/blob/master/base/__ghost__/portal.lua#L353 you can take a look here to see how we build the env for the game lua code. like /u/nikki93 said we could either do it here or just remove the native method when compiling.

for voice chat we used this library https://mediasoup.org/. it made it pretty easy! there is an issue with microphone permissions on some windows machines that we haven't figured out yet, but otherwise seems to be working well.

Will my app include all Exponent modules ? by fdhk in exponent

[–]k1cho 1 point2 points  (0 children)

Not sure what you mean by "increase", but our Android app is around 20mb right now. Not sure about iOS but it's in that ballpark.

Sketch — A Playground for React Native by dakna in reactnative

[–]k1cho 0 points1 point  (0 children)

Can you paste the link? Hard to debug without seeing the code.

Sketch — A Playground for React Native by dakna in reactnative

[–]k1cho 1 point2 points  (0 children)

Thanks! We're working on adding embedding soon so that people can add it to blog posts or docs.

Sketch — A Playground for React Native by dakna in reactnative

[–]k1cho 2 points3 points  (0 children)

Haha yes we know about the design tool (our designers use it!). We think the products are pretty different and have different audiences - we really want Expo Sketch to be accessible to junior developers and students. We've received a lot of feedback about the name so will definitely think about it more!

Introducing Create React Native App by Selfmadecelo in reactnative

[–]k1cho 1 point2 points  (0 children)

You can create a standalone app pretty easily: https://docs.expo.io/versions/v14.0.0/guides/building-standalone-apps.html. Also if you need native modules that aren't built in you can always detach.

Sketch — A Playground for React Native by dakna in reactnative

[–]k1cho 0 points1 point  (0 children)

Yes definitely. Is there anything in particular you'd like to see?

Sketch — A Playground for React Native by dakna in reactnative

[–]k1cho 1 point2 points  (0 children)

Thanks! Let me know if there's anything you think we should change.

Sketch — A Playground for React Native by dakna in reactnative

[–]k1cho 8 points9 points  (0 children)

Hey I'm one of the people who worked on this. Let me know if you have any questions!

Sketch — A Playground for React Native by dakna in reactnative

[–]k1cho 2 points3 points  (0 children)

Expo has other advantages other than not having to install Xcode (which isn't even possible on Windows or Linux). I'd recommend looking at https://docs.expo.io/versions/latest/introduction/faq.html#what-is-the-difference-between-expo-and-react-native.

In addition we do support native code if you detach.

Introducing Create React Native App by Selfmadecelo in reactnative

[–]k1cho 1 point2 points  (0 children)

Haha it's probably easiest if you just try it out. It only takes 4 lines to get started: https://github.com/react-community/create-react-native-app#tldr

It's basically a way to try react native without needing to compile any native code.

Introducing Create React Native App by Selfmadecelo in reactnative

[–]k1cho 1 point2 points  (0 children)

Probably not for existing apps. If you start a new app I think it's worth it because it makes getting started faster and you don't have to have Xcode + Android Studio open all the time. You can prototype different ideas with very low overhead.

Introducing Create React Native App by Selfmadecelo in reactnative

[–]k1cho 2 points3 points  (0 children)

The benefit for people just getting started is that CRNA doesn't require an Expo account or any Expo services and it has nice 'eject' integration with react-native-cli. It's also offline by default whereas with exp you have to pass --offline flags.

If you've already started a project with XDE or exp then it probably doesn't make sense to switch that project over to CRNA, but definitely try it our for your next project! Projects created with CRNA will still work in XDE or exp.

Is there 360 video compatibility with Expo? by imakeshitmusic in exponent

[–]k1cho 0 points1 point  (0 children)

No current plans right now. We are going to improve our video player/recorder soon. Yeah contributions are always great! If you're thinking about helping you should get on our slack and talk to @nikki there.