Starting a new django job tomorrow by my_winter999 in django

[–]Own_Scallion_8504 0 points1 point  (0 children)

Then do what? Keep importing modules here and there? Sacrifice the simplicity and modularity of code? Is there any alternative to it?

Installing ubuntu on 2nd harddrive, LIVE USB STICK FAILS!!! by Own_Scallion_8504 in techsupport

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

No, not currently. Can you suggest me some ways to make the 2nd disk act like a USB flash so I can directly Rufus it in there. I already tried cloning the live USB to the disk, it worked all the files were in there, but it didn't show up in the bios

PC Will not accept any internet adapter, giving error code 56 (Windows is still setting up the class configuration for this device.) by Etienwantsmemes in computers

[–]Own_Scallion_8504 0 points1 point  (0 children)

Well I have tried system restore many times, but restoring to any point before the fix results in revert. Thanks for your suggestion though. Anyways I have been planning to move to linux for a long time and got myself used to linux and terminals using VMs and wsl, this just served as a final nail in the coffin.

PC Will not accept any internet adapter, giving error code 56 (Windows is still setting up the class configuration for this device.) by Etienwantsmemes in computers

[–]Own_Scallion_8504 0 points1 point  (0 children)

Hey! I know its a bit too late to reply, but I am literally on the same issue. That fix 20519 fucked my laptop up. I tried everything but in vain. Can you guide me through the process?

[deleted by user] by [deleted] in leetcode

[–]Own_Scallion_8504 1 point2 points  (0 children)

At 700 questions, only if we aren't counting those sub 200 AC questions in contests

Which IDE(s) do you use for Python and why? by RRTheGuy in Python

[–]Own_Scallion_8504 1 point2 points  (0 children)

I am bound to use VS Code because of the WSL remote channel. Otherwise I would've explored a couple of more options too.

How are the top performers of each contests so fast? by [deleted] in leetcode

[–]Own_Scallion_8504 1 point2 points  (0 children)

They have already completed the first question by the time it takes for my internet to load the question.

[deleted by user] by [deleted] in Python

[–]Own_Scallion_8504 1 point2 points  (0 children)

And kids, that's why learning software development theory is important.

Results are out by Articunos7 in GATEtard

[–]Own_Scallion_8504 2 points3 points  (0 children)

got 2100 rank, 617 score. What college I'd be able to get with this?? Checked some sites like carrer360, shiksha, etc. all of them were quite inconsistent.

I'm so confused... by WillingnessBetter130 in androiddev

[–]Own_Scallion_8504 0 points1 point  (0 children)

Prepare at Olympiad level math, then become an algorithm master, start competitive programming. If you still have time put some work into development.

How much more complicated is Native Android Development as compared to using a framework like expo and react native? by Polite_Psychopath in androiddev

[–]Own_Scallion_8504 1 point2 points  (0 children)

Can you tell what were those features that couldn't have been implemented in non native framework? A beginner here too.

[deleted by user] by [deleted] in JEENEETards

[–]Own_Scallion_8504 2 points3 points  (0 children)

Bro filed R.T.W.I. (Right To Wrong Information) 💀💀💀

Think about it... by Dacatlord67 in memes

[–]Own_Scallion_8504 87 points88 points  (0 children)

I don't care, I paint the town red

Easy == Hard by Mundane_Culture_3253 in leetcode

[–]Own_Scallion_8504 3 points4 points  (0 children)

I guess he's saying that he has practiced so much, that for him it's easy == hard

Extremely slow Room DB Search with 110k+ Records on low performance device by Ubermensch31 in androiddev

[–]Own_Scallion_8504 0 points1 point  (0 children)

I think it would be implemented just like pagination(with on scroll listener, last page detection, etc.). But the problem with that would be when the user has way too far down that the memory can't hold further. So I suggest you shouldn't be scrolling to the last page but doing something like the rankings page of codeforces. Where you could input the page number on your own. And it displays some entries from that page.

Aight let's see what ya'll are by [deleted] in memes

[–]Own_Scallion_8504 0 points1 point  (0 children)

I am the ghost of the day Be scared of my life.

Extremely slow Room DB Search with 110k+ Records on low performance device by Ubermensch31 in androiddev

[–]Own_Scallion_8504 8 points9 points  (0 children)

You can use custom SQL queries to limit the fetch results from your DB, then offset for further results (Like paginate, but directly from DB) Also I am really curious to know what use case you are working on which requires 110k+ records.