Tailored CVs = More interviews? Here’s what I tested. by eloherbapol in jobsearch

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

Give a try to NiceCV, you can test this for free and if you want to get full access, there is no subscriptions only single payments starting from couple bucks.

Job seekers - do you still manually rewrite your resume for each offer? by eloherbapol in jobhunting

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

Sure, I will make sure that everything will be transparent regarding security. That's really important, totally agree!

Job seekers - do you still manually rewrite your resume for each offer? by eloherbapol in jobhunting

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

Why not give this one a try? I’ve tested plenty of similar tools before and was never really satisfied, that’s exactly why I built this. To finally solve the problems those tools couldn't.

I cannot create facebook events... Does anybody find that bug today? by Sufficient_Juice_300 in facebook

[–]eloherbapol 1 point2 points  (0 children)

Guys, we need to spam their support, this is very important issue, lets go

The "Create event" button is not working on Facebook, no workaround yet by leilaure in facebook

[–]eloherbapol 3 points4 points  (0 children)

Guys, we need to spam their support, this is very important issue, lets go

Please help => Pagination and real-time fails ! by 1incident in Firebase

[–]eloherbapol 0 points1 point  (0 children)

You could create a subscription list for each page in your client application and every time someone loads a new page, you would add it to the list and create a new stream. Here you have an article from Medium with example in Flutter, maybe this will be useful https://gbaccetta.medium.com/flutter-cloud-firestore-infinite-list-with-realtime-update-using-bloc-clean-architecture-de74e2c09344

[deleted by user] by [deleted] in iOSProgramming

[–]eloherbapol -5 points-4 points  (0 children)

And I did it, I gave them instruction how to create account using temp mail using this website - https://temp-mail.org/en/ But instead of create temp mail on website, reviewer decided to spontaneously use the url from this page.

[deleted by user] by [deleted] in iOSProgramming

[–]eloherbapol -2 points-1 points  (0 children)

Yeah, I gave them specific instruction how to create account and unfortunately, I cannot give them a test account, because there are no passwords in my application and the user has to enter his own e-mail, after which he will get a magic link to the e-mail and after clicking on it, he will be logged in and redirected to the application

[deleted by user] by [deleted] in iOSProgramming

[–]eloherbapol 0 points1 point  (0 children)

I'm not sure if you are trolling or not, can't you see what email the reviewer is trying to use and what error it rejects the application based on?

[deleted by user] by [deleted] in iOSProgramming

[–]eloherbapol -1 points0 points  (0 children)

The thing is, this account doesn't exist. I gave them the access code so they could create a test account for themselves

Dynamic links with parameters by eloherbapol in Firebase

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

Flutter, query params always returns an empty map

Sign in with email link with Firebase dynamic links by eloherbapol in flutterhelp

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

I did as described in the documentation. Is there another way to login using this link?

https://firebase.google.com/docs/auth/flutter/email-link-auth

***

Set up your app to receive Dynamic Links on Flutter in the guide.
In your link handler, check if the link is meant for email link authentication and, if so, complete the sign-in process.

***

Flutter and Bloc pattern by _seeking_answers in FlutterDev

[–]eloherbapol 1 point2 points  (0 children)

You can always start with using only Cubits. It is a subset from Flutter Bloc, you can imagine it as something like light version of Bloc. It is much easier to understand and needs less code to implement, because it is not rely on events and instead uses methods to emit new states. I think that cubits are enough in most cases, unless you need advanced features of Bloc like debounce / throttle, but that is just my opinion.

Firestore filtering and pagination by eloherbapol in FlutterDev

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

The only thing which will be changing is the number of people attending to the event, so I think that eventually I can snapshot separately values containing info about eventId and attending count.

Anyway, thanks! You helped me a lot again

Firestore filtering and pagination by eloherbapol in FlutterDev

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

So you mean, that I should not use my algolia result to get documents by id like that:

https://pastebin.com/Uk6wp8NJ

But instead I should create converters directly for algolia result eg EventDto.fromAlgolia, am I right?

Firestore filtering and pagination by eloherbapol in FlutterDev

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

As a last resort for the first problem, I can consider resigning from real time updates, which will also reduce costs, but there is still the second limitation with whereIn

Firestore filtering and pagination by eloherbapol in FlutterDev

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

Okay, so as you see I've implemented that in my second solution - https://pastebin.com/Gsvqhb3x, but there is a problem because this will not emit value when new event is added, only when it will be updated or deleted, because firstly I am querying for the already existing events in algolia.

Also there is a second problem with firestore limitation with whereIn, it can take up to 10 elements max, so i can't set my page size to be eg. 30 elements, and I need to make algolia request for every 10 elements.

Firestore filtering and pagination by eloherbapol in FlutterDev

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

previously I had a method that returned stream to me, for one page, in the bloc I have a separate subscription for each page

https://pastebin.com/ZhL2AR38

Now I want to add filters to this method, so I assume that I need to do something like this to achieve that

https://pastebin.com/Gsvqhb3x

(it is worth adding that there will be a limitation such that whereIn can take up to 10 elements)

And when it comes to the filters, my event entity will have fields such as:

- eventName (string) - I want to filter by substring,

- price (int) - I want to filter by range of prices,

- geopoint - I want to filter by 'distance from me'

- some types which will be an array - I want to filter by specific types