Samsung Galaxy Note 20 Will Come With 5 Color Options

Samsung Galaxy Note 20 Will Come With 5 Color Options
Render of Samsung Galaxy Note 20 (Photo: phonearena.com)

MyBacklink86 - Samsung has not officially announced when it will announce the presence of the Galaxy Note 20 series. But from the news circulating, the South Korean company will reveal the presence of the successor to the Galaxy Note 10 series in August 2020.

Various leaks of information about the Galaxy Note 20 are also widely circulating in cyberspace, one of the latest is the smartphone color variant.

Quoted from Galaxy Club via Tom's Guide, the Galaxy Note 20 will come with five color choices.

The Galaxy Note 20 will come in gray, copper and green. Meanwhile, the Note 20 Plus series is available in a choice of black and copper.

Galaxy Note 20 Specifications

Since the Galaxy Note 20 is expected to be announced in August 2020, this color choice information may be the last leak for the next few months.

From the model numbers that appear in the China certification database, we can be sure that Samsung will also launch two Galaxy Note 20 models.

The standard version of the Galaxy Note 20 will have a 6.42-inch screen and a 120Hz refresh rate.

Meanwhile, for the Plus model will stretch the 6.9-inch AMOLED screen with a refresh rate of 120Hz and use LTPO technology so that the battery is more efficient.

Galaxy Note 20 Camera

Furthermore, both smartphones are expected to come with the new Exynos 992 processor.

The Galaxy Note 20 will have a 4,000mAh battery, while the Plus variant will include a battery equivalent to the Galaxy S20 Plus (4,500mAh) or Galaxy S20 Ultra (5,000mAh).

The Galaxy Note 20 is believed to have three rear cameras that are similar to the Note 10 and Galaxy S20.

The difference, Note 20 Plus is likely to have a 108MP camera like the Galaxy S20 Ultra, but with an improved sensor.
LEARN MORE

Xiaomi Prepare 144Hz Screen Smartphone and New MediaTek Processor

Xiaomi Prepare 144Hz Screen Smartphone and New MediaTek Processor
Xiaomi Mi 10 Pro (Photo: Xiaomi via Android Police)

MyBacklink86 - Xiaomi is reportedly preparing a new smartphone that will carry an LCD screen with a refresh rate up to 144Hz. This information was revealed by DigitalChatStation, a renowned leaker on the media platform from China, Weibo.

Quoted from the Weibo DigitalChatStation account via Gizchina, this phone will also use a MediaTek Dimensity 1000+ processor.

Previously, it was rumored that Xiaomi would release a smartphone with MediaTek's new processor.

At the launch of the Dimensity 1000 series earlier this month, Lu Weibing, president of Xiaomi Group China and general manager Redmi made a surprise by going onstage.

As a result, a lot of speculation circulating about the new Xiaomi smartphone.

MediaTek Dimensity 1000+ capabilities

According to MediaTek, Dimensity 1000+ uses the most advanced 5G technology in the world. The company's new processor also supports dual 5G standby, and network capabilities are more stable and faster.

In addition, MediaTek Dimensity 1000+ also supports refresh rates up to 144Hz.

This processor has also been integrated with MiraVision technology, a new feature that is able to optimize the quality of photos.
LEARN MORE

How to Make a Widget Only Shown on Homepage Blog

Blogger Widget

How to Make a Widget Only Shown on Homepage Blog - Homepage is the main page of the website / blog, on this occasion we will discuss how to make the widget appear only on the homepage. To be dynamic and blogs seem neat, preferably some widgets that are considered essential and are only displayed on the main home page or homepage.
You want to make widgets appear only on the main page / homepage, follow the following steps:

1. Login to blogger.
2. Choose Template => Edit HTML => Expand Widget Templates checkbox.
3. Do not forget to backup templates so you can easily restore if something goes wrong.
4.'s Widgets use F3 or Ctrl + F. Example widget: Latest Articles.

<b:widget id='HTML5' locked='false' title='Latest Articles' type='HTML'>
<b:includable id='main'>
<!-- only display title if it's non-empty --&gt
; <b:if cond='data:title != &quot;&quot;'>
<h2 class='title'><data:title/></h2>
</b:if>
<div class='widget-content'>
<data:content/>
</div>
<b:include name='quickedit'/>
</b:includable>
</b:widget>

5. Put the code <b:if cond='data:blog.url == data:blog.homepageUrl'> under <b:includable id='main'> and </b:if> above code </b:includable> as follows:

<b:widget id='HTML5' locked='false' title='Latest Articles' type='HTML'>
<b:includable id='main'>
<b:if cond='data:blog.url == data:blog.homepageUrl'>
<!-- only display title if it's non-empty -->
<b:if cond='data:title != &quot;&quot;'>
<h2 class='title'><data:title/></h2>
</b:if>
<div class='widget-content'>
<data:content/>
</div>
<b:include name='quickedit'/>
</b:if>
</b:includable>
</b:widget>

6. Then save the template
LEARN MORE