Skip to main content

Samsung M51 Review after 7 days usage, Pros & Cons.

 

Samsung M51


Pros.

  1. Normal use battery stays for more than 2 days (48 - 52 hrs.)  - I keep internet ON during day time and I use mostly call and Instagram.
  2. Phone feels not so much heavy even it has 7000mAh battery (6800mAh can be used as mentioned in the settings too)
  3. I really like the animation - switching apps, cursor, hovering on words
  4. Double tap to sleep and wake up screen
  5. Wi-Fi calling and network calls are really good. 
  6. Glassy look and feel (scratches appear)
  7. Works well - meeting with Google Meet or Zoom, screen sharing too
  8. Latest security patches
  9. Video stability (sometimes more saturated)
  10. Charging - 115 minutes for full charge
  11. Brightness is really low even if you don't use night time filter
  12. Dolby Atmos - Sound is Samsung.
  13. Speaker - clear and loud

Cons.

  1. Picture quality not so good, I shot few with 32MP settings, not so details 
  2. Battery feels like 5000mAh - 6000mAh
  3. Phone heating issue when I use Skype, Microsoft Teams, audio and screen sharing (Microsoft should fix it )
  4. Performance issue when I swap new/old pictures in Google Photos
  5. Rendering time is more when I use Google Snapseed 
  6. Kind of hot, when phone is charged more than 50%
  7. Switching apps sometimes causes slight loading issue
  8. Bluetooth transfer takes huge time


Comments

Popular posts from this blog

Indian HAL Tejas | Touch The Sky With Glory | ShotOnNikonD3500

Indian HAL Tejas | Touch The Sky With Glory | ShotOnNikonD3500

GraphQL vs REST

  GraphQL   GraphQL is an application layer server-side technology which is developed by Facebook for executing queries with existing data. GraphQL can optimize RESTful API calls. It gives a declarative way of fetching and updating your data. GraphQL helps you to load data from server to client. It enables programmers to choose the types of requests they want to make. REST REST is a software architectural style that defines a set of constraints for creating web services. It is designed specifically for working with media components, files, or hardware device. The full form of REST is Representational State Transfer. ========================================================= Here is the important difference between GraphQL and REST. GraphQL REST GraphQL is an application layer server-side technology which is developed by Facebook for executing queries with existing data. REST is a software architectural style that defines a set of constraints for creating Web services. It follow...

Git Commands

  Git commands sorted. Reference: https://git-scm.com/docs Git task Notes Git commands Tell Git who you are Configure the author name and email address to be used with your commits. Note that Git strips some characters (for example trailing periods) from user.name . git config --global user.name "Sam Smith" git config --global user.email sam@example.com Create a new local repository   git init Check out a repository Create a working copy of a local repository: git clone /path/to/repository For a remote server, use: git clone username@host:/path/to/repository Add files Add one or more files to staging (index): git add <filename> git add * Commit Commit changes to head (but not yet to the remote repository): git commit -m "Commit message" Commit any files you've added with git add , and also commit any files you've changed since then: git commit -a Push Send changes to the master branch of your remote repository: git push origin master Status List the...