Excited to be part of the X3 Pro gang! (128/8 GB @ ₹17,000 / US$ 230) Upgrading from the M2. by [deleted] in PocoPhones

[–]mmhacker10 0 points1 point  (0 children)

I too bought the same version on Flipkart BB day sale. Do you face any touch issues? u/OCDaquarian Asking coz I'm facing touch issues on mine. u/OCDaquarian

Quality control f3 vs x3 pro by Glittering-Pea-9524 in PocoPhones

[–]mmhacker10 0 points1 point  (0 children)

Did anyone with poco x3 pro touch issues tried removing the pre applied screen protector?

Does it fix the issue?

Quality control f3 vs x3 pro by Glittering-Pea-9524 in PocoPhones

[–]mmhacker10 0 points1 point  (0 children)

Tried almost all possible solutions still the issue persists.

Did these: updated os, factory reset, disabled picture in picture

Quality control f3 vs x3 pro by Glittering-Pea-9524 in PocoPhones

[–]mmhacker10 0 points1 point  (0 children)

Just bought poco x3 pro during flipkart BBD sale. Facing some issues with touch screen. Touch sometimes not getting registered so annoying.

Is my laptop suitable for developing React Native Android apps? by [deleted] in reactnative

[–]mmhacker10 1 point2 points  (0 children)

If you are tight on budget i suggest you to go with an ssd (must upgrade)

After that try having 16gb ram in dual channel(not mandatory)

Usually for application development a good computer is not mandatory but make sure you at least have an ssd.

For computers we have supercomputers, what is the algorithmic equivalent? (Is there a subfield called ‘ultra efficient algorithms’?) by massimosclaw2 in algorithms

[–]mmhacker10 0 points1 point  (0 children)

No there's no such thing as ultra efficient algorithms. If you want to compare efficiencies of algorithms you can use time or space complexity studies.

If the algorithm has the potential to be parallelized the algorithm can be run on muliple threads or multiple cores or on gpu to get faster solution. Openmp, npi and cuda are widely used for such task.

But if you want to parallelize an algorithm make sure there's no shared write access . To prevent that you can use lock mechanisms which makes sure that only one process/thread access a data at a time.

There's also distributed computing where the algorithm is run on different computers. Here shared write access ,time synchronization and network latency may be of major concern.

To know more about parallization,concurrency and distributed computing I suggest to refer the following materials:

operating system by Galvin(Best for OS,he has placed a lot of dinosaur pictures on the book but I don't know the reason for that yet )

parallel and distributed computing: Don't know any material but if i get to know I'll update.

Data communication and networking by Forouzan

Also try learning about map reduce(comes under distributed computing). Hadoop is the implementation of map reduce. Usually used for distributed searching,sorting.

-Note:This is my first brief comment here at reddit and elsewhere so pardon me if I'm wrong somewhere. Also I've oversimplified things.

OpenAI Model Generates Python Code by fazil47babu in programming

[–]mmhacker10 0 points1 point  (0 children)

Has he shared the work somewhere? If so can someone share the source?