Skip to main content

New Samsung Galaxy S10 - Technoob Technology

Samsung’s Most Exciting Phone in years

samsung,Galaxy S10,
    Credit :  Ice universe @UniverseIce

The Samsung Galaxy S10 has the potential to be the most exciting phone of 2019, but only if the company makes some changes.
We don’t know much about the Galaxy S10 yet, but we are starting to hear a few rumors, all of which you’ll find below.
And below that you’ll find a wish list of the main things we want - nay, need - from the phone, including an in-screen fingerprint scanner and a fresh design. 
Samsung Galaxy S10 release date and price
Reliable tipster Ice Universe believes that Samsung will announce the elusive foldable Galaxy X at CES in January, leaving MWC – where Samsung usually announces the latest Galaxy S series smartphones – free for the Galaxy S10 in February.

In terms of pricing, expect the Galaxy S10 and S10 Plus to be at the loftier end of the market. The Galaxy S9 officially starts at £739, while the S9 Plus can’t be yours for less than £839, so don’t rule out a base RRP of up to £799 for the S10 and £899 for the S10 Plus.

Galaxy S10 Specs

Prior to the recent report out of South Korea, the bulk of S10 speculation has arrived courtesy of Weibo and Twitter tipster Ice Universe, with the crystal ball gazer offering up the following by way of early insight.
  • High Performance SoC (Custom CPU,GPU,NPU)
  • 5G Baseband
  • UFS 3.0
  • LPDDR5
  • 93 +% Screen
  • M9 Series OLED Screen
  • 3D + AI

This suggests that the Galaxy S10 will be headlined by an all-new Infinity Display that touts an impressive screen-to-body ratio of 93% – up from the 83.6% found on the Galaxy S8 and S9.

It also hints – and this can almost be considered a given, in light of Samsung’s launch history – that the S10 will pack a new-gen Samsung Exynos chipset in the EMEA region, whilst coming with a Snapdragon 855 SoC in North America.

Elsewhere, the S10 is tipped to offer support out of the box for UFS 3.0 – a standard of Univeral Flash Storage (UFS) that’s twice as fast as UFS 2.0 – and 5G mobile connectivity.

There’s also a chance the Plus-sized model will come with a dual-camera on the front, with the intention of delivering greater depth of field (or bokeh) effects for selfies. The additional sensor could also be used to improve the handset’s face-recognition feature.

Multiple separate sources who spoke to The Bell have said as much, adding that Samsung will also look to ditch the iris scanning tech in the Galaxy S10 in favor of an improved 3D face scanner - much like the one found on the iPhone X.
An earlier rumor also talks about an in-screen scanner, stating that while an in-screen scanner wouldn’t be ready in time for the Samsung Galaxy Note 9, it would be ready by sometime next year, making the Samsung Galaxy S10 a candidate for one.
Advertisement
But Samsung might go even further and also put the speakers in the screen, as just such a display has been shown off by Samsung Display, according to OLED Info.
And the earpiece could go in the screen too, as Samsung is said to be planning a 'sound-emitting display' for use in a phone early next year, having already shown off the tech at an industry expo.
All that combined could mean a truly bezel-free look, like the one shown in the image above, though the front-facing camera will still need to be put somewhere.
And speaking of the camera, the rear one of those could change too, as an analyst reckons Samsung is considering a triple-lens one for the Samsung Galaxy S10, along with a 3D sensor for augmented reality content. 
Analyst chatter isn’t always that reliable, but it would make sense if Samsung wants to compete with the Huawei P20 Pro and the rumored triple-lens iPhone.
Galaxy S10,samsung


The Galaxy S10’s design and pricing are the biggest remaining question marks though, and we likely still have a while to wait before those key questions are answered.

TRENDING


Comments

Popular posts from this blog

How to make a first person character controller - Unity

A first-person character controller script is the starting point of any fps shooter game. Even new Unity game developers tend to write their own fps controller script before learning anything else as it is challenging and very exciting. In this article, we gonna create two simple fps controllers from scratch and will guide you step by step on how it works. First, let's understand the basic concept of an fps controller. You should have a rotating camera that rotates in the x-axis to look up and down and the character should rotate on the y-axis to look around. There are two ways to create an fps controller in the Unity Engine.  Using Character controller component Using the RigidBody component Both have different advantages and disadvantages when using them. It depends on your game to select the best fps controller according to your needs.  Character controller based fps controller Pros: Is grounded check is built-in Has its own methods to move the chara

Unity Get Post web requests - Technoob Technology

Web requests in unity are super easy to use. We gonna use the UnityWebRequest class as the WWW class is deprecated now. UnityWebRequest class can be used for both Get and Post methods. The 'UnityEngine.Networking' namespace is required to work with UnityWebRequests.  This tutorial is made with some simple UI elements. First Let's see how the GET method works. 01. UnityWebRequest.GET We use this method to receive data from the server as normal get requests. Using coroutines in web requests is mandatory as we have to wait until the download is complete before showing the results, and the coroutines make this much easier. A simple button calls the method and a text element will show the result. The script contains a reference to the text element and the string URL of your PHP file.  When the button is pressed the button executes the ButtonGetData method and that method simply starts the GetData coroutine. We use the using keyword as this data

How to make an Advanced Audio Manager for Unity - Technoob Technology

Unity engine gives us a good control on audio clips we use, But the problem is when we add several audio sources for several audio clips it's gonna get hard to control them all. And if you want to make some changes to only one audio source you have to find it first.  This will become a mess if you gonna work with more than 10 audio clips. In this case, we can Create an AudioManager and include all the audio clips in it and make some static methods to play, pause the audio from other scripts. This Audio Manager is written in C# and if you use unity-script you have to convert this into unity script first. In this tutorial, we gonna create an audio manager which contains 7 methods. 1.Play 2.Pause 3.Unpause 4.Stop 5.FadeIn 6.FadeOut 7.lower volume for a duration First, we need a Custom class which contains some strings, floats, bools and an audio clip. This class is not derived from unity mono behavior so we should add [System.Serializable] to mak