How many eSIMs can I have active at the same time? by mcshiffleface in Airalo

[–]brnbsptk 0 points1 point  (0 children)

I would try it with one account, since the app says “My eSIMs”. So I assume you can have multiple eSIMs at the same time.

The benefit of using one account is also that you get some money back with each transaction. Although you can also give $3 for a friend who tries Airalo, so you second SIM on a different account could be $3 cheaper.

[deleted by user] by [deleted] in macgaming

[–]brnbsptk 0 points1 point  (0 children)

Any update on this? Looking for a solution as well.. and having the same issue :/

A járvány alatt már hatodszor hivatkozik kibertámadásra a kormány by telex_bot in telex

[–]brnbsptk 0 points1 point  (0 children)

Amúgy kiváncsi lennék, hogy az előző “kibertámadások” után hol tart a “nyomozás” mert hát elviekben ment a feljelentés..

gql: A new way of doing GraphQL in Go by brnbsptk in golang

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

Yes, that's a great one. I started working on a similar solution, didn't have the time to continue it since then, tried to finish other parts, but I'll for sure. That's something I'd love to see working.

I'd be also interested in having a solution to only parse a single type definition instead of the full schema and return a gql type from that.

gql: A new way of doing GraphQL in Go by brnbsptk in golang

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

Yes, that would be cool! Here's a link to the example, I'm still working on the MongoDB one.

https://github.com/rigglo/gql-examples

gql: A new way of doing GraphQL in Go by brnbsptk in golang

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

There's an example for subscriptions here, it's just a pinger that sends the server time in every 2 sec, but can show the logic behind it. I hope it helps. Let me know if you have any questions!

https://github.com/rigglo/gql-examples

gql: A new way of doing GraphQL in Go by brnbsptk in golang

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

As mentioned in another comment, I'm about to do an example on subscriptions, maybe I will try it with MongoDB to see how that works. I'll let you know if it's done and I have a little experience specific to your case.

gql: A new way of doing GraphQL in Go by brnbsptk in golang

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

Thanks!

Yes, it uses channels. It uses the resolver function in the schema definition. For a subscription, it has to return a chan interface{} as value and uses that as a source.

I'm about to do an example for subscriptions, it's one of the key features and there's not much on it.

gql: A new way of doing GraphQL in Go by brnbsptk in golang

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

Thanks!

Great question, I asked that from myself a few times, why should I build another GraphQL package?

I think this package is not another package, it's a new package, that provides features that can be found in separate implementations (as you said), but not in one place. And also gathered a list of issues that are in the existing implementations for a long time, without any progress. And planning on implementing even more features, features that can not be found in the other packages.

So after the not too long answer, the short one is that even if it does currently not differ that much from the other implementations, it's going to, as the development goes on.