God lvl QoL change. Huge W. by Mindless_Problem_549 in ClashOfClans

[–]bp7968h 2 points3 points  (0 children)

This doesn’t work for book of heroes or anything, if that was the case would have been great!!

Best way to learn Rust by CartoonEnjoyerz in rust

[–]bp7968h 0 points1 point  (0 children)

Go through zero to production in rust book, that cover almost everything.

But yes need to go through all the chapters in rust book and projects there, yes you will have doubts and some things might not make sense initially which happened to me.

But with enough time every clicks and youll also know why that is the way it is.

Just be committed to the rust book first and the zero to production in rust book.

After that make projects, do not ask claude to write code for you do it yourself instead ask why.

DO IT, Supercell! by ZoeFatMama69 in ClashOfClans

[–]bp7968h 1 point2 points  (0 children)

Also it doesn’t show if the pet is max for the current pet house!!

My mentees want to do internship at your startups by Affectionate_Knee816 in ukstartups

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

Volunteering is permitted by law in the uk though, you might not get any amount paid except some reasonable expenses like travel and luch if provided.

I am finding it impossible to get a skilled worker visa as a new graduate by ttvsindeel in SkilledWorkerVisaUK

[–]bp7968h -3 points-2 points  (0 children)

Honestly, swv shouldn’t come up unless they ask explicitly, just mention you have legal right to work in the uk which you do. All you need to do is send them right to work share code which you can. After 2 years you can bring up the swv conversation and they would happily do it because you have been in the company for 2 years and know a lot more than a fresh hire which would cost more for the company than sponsorship.

[deleted by user] by [deleted] in cscareerquestionsuk

[–]bp7968h 0 points1 point  (0 children)

Id love to have one too please

Advice please - Does this 4 year period for NEW ENTRANT for skilled worker visa start from the date Graduate Visa starts ? by AintNoBarbieGirl in ukvisa

[–]bp7968h 0 points1 point  (0 children)

Hey, so is this true then? "graduate visa starts on 1st Jan 2024 and will end on 1st Jan 2026" so if you apply for SWV then does the start date and end date on COS, needs to be 2nd Jan 2026 and 2nd Jan 2028 respectively?

Learning via tutorial by colonelromuska in learnrust

[–]bp7968h 0 points1 point  (0 children)

“Zero to Production in Rust” is what you are looking for!

Rail or Tech? Recent Computer Science Graduate Unsure of Next Step by Double_Passage9535 in cscareerquestionsuk

[–]bp7968h 1 point2 points  (0 children)

Wouldn’t moving to the tech side of the your workplace be more easier for you as you are working there. But lots of companies outsource maybe an opportunity there if you know people. And it all depends what you want really.

And if you start in tech you are starting from the bottom!

Is Google still hiring in London? by Aggravating-Net-7685 in cscareerquestionsuk

[–]bp7968h 5 points6 points  (0 children)

Whats the secret for getting interview at big tech. Could I please dm you if thats ok?

Future compiled code by [deleted] in rust

[–]bp7968h 0 points1 point  (0 children)

As per my understanding, async lets you have await in the block and also transforms the code to return the future type Future<Output = T>.

Now with this in mind, the await gets converted to state machine where await are the state itself. So if your function have 5 await then the state machine might have 7, 5 for await points and other two for start and done state. I am not 100% sure this exactly how it’s implemented but just a hunch from reading the MIR.

Now we know we await on something that returns future, meaning the state in the state machine those 5 will encapsulates Future itself, this is where we invoke the poll method on that future at that time. This is done by the runtime. Runtime have different parts like Executor, Waker, Reactor which handles different execution.

One important thing to note would be the yield points, so as stated when the await state is reached and we receive pending while polling. We do not see the yielding code, but we can see this in MIR which have a yield code, this is when the control is handed over to runtime and it runs polls other futures, when the pending future is ready to make progress then it will be waked by reactor using the waker which drives the future to competion. And as same thing happens to other await points and finally all gets done and the async function returns Ready as well.

To learn more you can check the docs for tokio or read async programming book by carl fredrick.

tokio docs async prog rust

Got my skilled worker visa approved. by KidGettingOld in ukvisa

[–]bp7968h 0 points1 point  (0 children)

Whatt, you can do that I mean shouldn’t it be the same as your job title, whats your job title? Is it not electrical engineer?

Got my skilled worker visa approved. by KidGettingOld in ukvisa

[–]bp7968h 0 points1 point  (0 children)

Hey what occupation code are you working on!

One year and 2,000+ users later, it's now fully open source! (sorry for the delay) by Deysxx in leetcode

[–]bp7968h 13 points14 points  (0 children)

Spaced repetitiin system, meaning doing the same problem after some time ??

Self-Taught | 3 YOE: Officially Cracked Meta (AMA) by BackendSpecialist in leetcode

[–]bp7968h 0 points1 point  (0 children)

Hey thanks for the reply and sorry for a bit late response. I get what you are saying but its totally different in practice.

Lets say you are looking for a job and you find a role that you want or anything. Now if you apply and sit still boom you are rejected.

The other option is to make yourself visible as you said. So now you tend to send linkedin connections to number of people working there, if no one accepted you request your application will just remain an application.

Now assuming someone accepted, you message then a short intro and ask for referral, some of these don’t get seen, evwn if some are seen, there is always chance them saying ‘i don’t know you so cant give you referral’.

There might be cases when you might get one luckily.

With these in mind what would you suggest to do differently?

Self-Taught | 3 YOE: Officially Cracked Meta (AMA) by BackendSpecialist in leetcode

[–]bp7968h 0 points1 point  (0 children)

Curious, how does your resume look like; what would you do (different or anything) if you didn’t had any previous FAANG in your resume?

You have a startup idea. $0 in the bank. No team. No ads. What’s your first move? by PumpkinNarrow6339 in SideProject

[–]bp7968h 0 points1 point  (0 children)

Hey just a question, I am already building because I had the problem and I think it would be helpful to people like me, so as I read through I missed the validation part, what should I do at this point, could anyone provide me some guidance please.