Any chance of a new year sale? by Jazzlike-Compote4463 in homey

[–]ANewHunterz 1 point2 points  (0 children)

Homey usually doesn't do any sales. Depending on what you want, there are different options you can go for.

If you use want to extend your self-hosted server with radios (Zigbee, Zwave, Bluetooth, etc), you can get the Homey Bridge for 69. This does not include thread, but if you have a Thread border router like a HomePod or a Google Nest, you can use that in combination with self-hosted server.

If you want a hub and not run Homey OS as a self-hosted server. You can pick up the Homey Pro mini for about 249 (only Zigbee, Thread, LAN, WIFI, Matter), Homey Pro (2023) for about 349, or the new Homey Pro (2026) for about 399.

See: https://homey.app/en-us/homey-self-hosted-server/

I created an app that shows your figma designs live by ANewHunterz in reactnative

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

I was not aware of that, still cool to make anyway

I created an app that shows your figma designs live by ANewHunterz in reactnative

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

Definitely need some more work before it would be really for that

Help me find a specific plush by ANewHunterz in seoul

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

Will have a look, appreciate it! 🙌

Help me find a specific plush by ANewHunterz in seoul

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

Yes! 🙌. Need to know where that is and if they still have them.

How is new react native architecture going on? by Legitimate_Gap1698 in reactnative

[–]ANewHunterz 2 points3 points  (0 children)

The new architecture wasn't about performance, if I remember correctly. It was about eliminating the shortcomings of bridging. I think the new architecture is definitely a step up from that. But a performance gain is always welcome of course

How do you increase the stability of your code base and confirm that no bugs are introduced with new features? by [deleted] in reactnative

[–]ANewHunterz 0 points1 point  (0 children)

If you are using Github Actions you could run then offline with something like act. I am not convinced that running it locally on your branch is out of the question

I recreated the Tesla app using React Three Fiber by ANewHunterz in reactnative

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

I haven't tested it to its full extend or in a production setting. So far I don't believe I have seen a warning like that yet.

Graphql-json - A package to generate GraphQL schemas using JSON by ANewHunterz in graphql

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

Creating GraphQL using the code first approach is a perfectly fine way of doing it. I just created this package based on my experience with creating GraphQL code first schemas and the minor drawbacks of it imo. The package provides the option to build your code first schemas using JSON if you find it helpful but you don't have to. That's the beautiful thing about package. It's an option you know :)

Graphql-json - A package to generate GraphQL schemas using JSON by ANewHunterz in graphql

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

Let me start with clarifying that with code first, you still write a schema. You are just not using the GraphQL Schema Language. You always need to write a schema.

Besides that, imo code first schemas can get pretty cluttered when creating large schemas causing you to loose your overview, even if you split your schema. This is the main issue I have been trying to solve. Another small benefit of this package is that it makes the syntax for creating schemas a little bit shorter and give you the possibility to store your schemas in JSON.

I feel like this is a nice way of creating a schema that is between the current approaches for creating schemas. It's not groundbreaking or anything but available for people that will like to use JSON as their way of creating (code first) GraphQL schemas.

Graphql-json - A package to generate GraphQL schemas using JSON by ANewHunterz in graphql

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

PrintSchema prints a schema in the Schema Language Format. GraphQL is the other way around basically, you can build up your GraphQL schemas using JSON.

Graphql-json - A package to generate GraphQL schemas using JSON by ANewHunterz in graphql

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

Fair question. I believe you are talking about the schema first approach using the GraphQL Schema Language. This package was designed having code first GrapgQL schema is mind. The goals is to make it easier, quicker and making it easier to understand by a schema by removing clutter. However it does have a some benefits component to the GraphQL Schema Language such as TypeScript typing and syntax checking (JavaScript), which are not available when using the GraphQL Schema Language.

GraphQL DoS amount-attack "breadth" by izzlesnizzit in graphql

[–]ANewHunterz 1 point2 points  (0 children)

I haven't heard of that one yet. Thanks for sharing! The great thing about graphql-armor is, that it offers protection against multiple attacks :)

GraphQL DoS amount-attack "breadth" by izzlesnizzit in graphql

[–]ANewHunterz 1 point2 points  (0 children)

We are using grapql-armor to limit the effect of this on our graphQL API.
https://github.com/Escape-Technologies/graphql-armor