Apple Delays The Launch Of iPhone 12 Again

Apple Delays The Launch Of iPhone 12 Again
illustration (Photo: Phonearena.com)

MyBacklink86 - Reports that say Apple will delay the launch of the latest iPhone re-emerged. This time, the information was revealed by Broadcam CEO, Hock Tan, through in his statement to Bloomberg.

Quoted from GSM Arena, Hock said there was a large cellphone company in North America that delayed its biggest product cycle.

Although it does not reveal its name, it is almost certain that the company called is Apple.

Broadcom itself is a major supplier of iPhone components. One component supplied is Bluetooth and Wi-Fi for the iPhone 11 model.

But not only that, analysts from Moor Insight also predict Broadcom will supply 5G and LTE components for iPhone products in the future.

Moreover, earlier this year, Broadcom reportedly received orders for components with a value of USD 15 billion from Apple.

The delay is known from the company's statement to investors. So, the company said that revenue that is usually earned in the 3rd quarter, is likely to retreat to the 4th quarter.

Despite the delays, it was also explained there were no changes in terms of design and products to be offered. For your information, Apple will usually launch a new iPhone launch in September each year, but for this time the schedule is said to be changing.

It is not separated from the Covid-19 pandemic that is not yet known when it will subside. This information was also reinforced by a report from the investment bank Cowen.

Quoting from the report, they predict that Apple will launch its new iPhone series in November 2020. Usually, the startup Steve Jobs released a new iPhone around September.

Besides being postponed to November 2020, some believe Apple might delay the launch of the iPhone 12 until 2021.
LEARN MORE

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