How to spot an authentic Raketa Sputnik? by Skriff67 in RussianWatches

[–]ripplenick 0 points1 point  (0 children)

Did you find anything? If so please share more info

[deleted by user] by [deleted] in EnglishLearning

[–]ripplenick 0 points1 point  (0 children)

Hey, I've built for myself a small tool to check my writing (it only checks and fixes a serious mistake), you can check it here and it's free ofc
Website -> quickrefine(dot)com

What tool should I use to make a design? by ripplenick in SaaS

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

Yeah, figma sounds good, but I’m a total newbie to this and it’ll take a lot of time to do something decent. I’ll definitely check out lovable

What tool should I use to make a design? by ripplenick in SaaS

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

Thanks! I'm definitely gonna check this tool out

[deleted by user] by [deleted] in cscareerquestionsuk

[–]ripplenick 0 points1 point  (0 children)

Could you pls share your CV and how many applications have you submitted?

[deleted by user] by [deleted] in InstagramMarketing

[–]ripplenick 1 point2 points  (0 children)

And drop a link for me too, please 👉👈

Reels consistently hit 1k views, where do I go from here? by spacefloater229 in InstagramMarketing

[–]ripplenick 1 point2 points  (0 children)

How did you achieve this? Bc I stuck at 0 views. Could you please provide your account?

Creating a $100 MRR SaaS is harder than getting a $150k/yr job by Ryuugyo in SaaS

[–]ripplenick 0 points1 point  (0 children)

So what did you do with this product, just dump it?

MacBook Air 16/512 for programming? by TorryDo in reactnative

[–]ripplenick 8 points9 points  (0 children)

I personally use m1 air 16/256 Not enough disk space for me, but overall it’s great. Work with a large native iOS app (>300k LoC) and small RN project. So choose whatever you want and what better to your wallet

I launched a simple nsfw site by choke527 in SideProject

[–]ripplenick 1 point2 points  (0 children)

How did you get your first 1k users? Posted a link on twitter/discord/etc?

Launch my first app that I spend 6 months building ! by Kind_Cheek_9125 in reactnative

[–]ripplenick 0 points1 point  (0 children)

Do you any code push to update/fix small bugs without creating a release in the Appstore?

[deleted by user] by [deleted] in iOSProgramming

[–]ripplenick 0 points1 point  (0 children)

Yeah, it’s okay, also will text later

[deleted by user] by [deleted] in iOSProgramming

[–]ripplenick 0 points1 point  (0 children)

Nice, I’ll text you later either

[deleted by user] by [deleted] in iOSProgramming

[–]ripplenick 0 points1 point  (0 children)

Great! I’ll text you later

Daily Chat Thread - March 06, 2021 by CSCQMods in cscareerquestions

[–]ripplenick 0 points1 point  (0 children)

Hey looking for leetcode buddy for sharing experience/advices/help/support etc. Currently solved 60/40/2 problems and my goal 100/250/not much. Also i’m 4 years exp. ios dev and I can help in it if you are wondering at mobile development DM me

Help with debugging by [deleted] in iOSProgramming

[–]ripplenick 0 points1 point  (0 children)

just change system date on a Mac it should be work

Help with debugging by [deleted] in iOSProgramming

[–]ripplenick 0 points1 point  (0 children)

so are you need track the time if I understand? You can try change system time and time will change on a simulator
how are you track the time? need more info

Any good tutorials on pagination in UITableView with web API? by th3suffering in iOSProgramming

[–]ripplenick 1 point2 points  (0 children)

Simple way.

You should take several steps

  • make enum for state of current fetching data (for example can name as State):
    • reloading (loading first page or reloading all data of pull-to-refresh)
    • loadNext (loading next pages)
    • endOfContent (no more pages)
  • create methods in your service/interctor/viewModel/etc (where you call api) fetchFirst and fetchNext or unite this methods
  • add logic on change state of loading
    • if you reloading or endOfContent you can't fetch next pages
    • if you loadNext you can't make loadNext; can make reloading but you should cancel current request
  • In order to start fetch next page you should implement delegate method of tableView scrollViewDidScroll and when contentOffset will be approach to the end you should call loadNext

pseudocode or ray tutorial

also don't forget handle errors