<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>Posts on Almaz Altynbek uulu</title>
    <link>https://almazhecker.github.io/almazich/posts/</link>
    <description>Recent content in Posts on Almaz Altynbek uulu</description>
    <image>
      <title>Almaz Altynbek uulu</title>
      <url>https://almazhecker.github.io/almazich/%3Clink%20or%20path%20of%20image%20for%20opengraph,%20twitter-cards%3E</url>
      <link>https://almazhecker.github.io/almazich/%3Clink%20or%20path%20of%20image%20for%20opengraph,%20twitter-cards%3E</link>
    </image>
    <generator>Hugo -- 0.147.0</generator>
    <language>en</language>
    <lastBuildDate>Sat, 22 Nov 2025 04:39:33 +0000</lastBuildDate>
    <atom:link href="https://almazhecker.github.io/almazich/posts/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Flashing Xiaomi via Fastboot ROM</title>
      <link>https://almazhecker.github.io/almazich/posts/flashing-android/</link>
      <pubDate>Sat, 22 Nov 2025 04:39:33 +0000</pubDate>
      <guid>https://almazhecker.github.io/almazich/posts/flashing-android/</guid>
      <description>&lt;p&gt;&lt;strong&gt;Prerequisites&lt;/strong&gt;&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Download the Fastboot ROM for your device.&lt;/li&gt;
&lt;li&gt;Install Android SDK platform-tools (&lt;code&gt;fastboot.exe&lt;/code&gt; must be in system PATH).&lt;/li&gt;
&lt;li&gt;Boot the device into Fastboot Mode (&lt;strong&gt;Volume Down + Power&lt;/strong&gt; or &lt;code&gt;adb reboot fastboot&lt;/code&gt;).&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;strong&gt;Terminology&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;Anti-Rollback&lt;/strong&gt; – Prevents flashing older firmware. Check with: &lt;code&gt;fastboot getvar anti&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;Fastboot ROM&lt;/strong&gt; – Complete OS image with separate partitions (boot, system, vendor, userdata, etc.).&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Flashing Instructions&lt;/strong&gt;&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Extract the Fastboot ROM to a folder on your PC.&lt;/p&gt;</description>
    </item>
    <item>
      <title>How to Root Android Device</title>
      <link>https://almazhecker.github.io/almazich/posts/root-android/</link>
      <pubDate>Sat, 23 Aug 2025 06:22:46 +0000</pubDate>
      <guid>https://almazhecker.github.io/almazich/posts/root-android/</guid>
      <description>&lt;p&gt;&lt;strong&gt;Prerequisites&lt;/strong&gt;&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Install Magisk from official releases: &lt;a href=&#34;https://github.com/topjohnwu/Magisk/releases&#34;&gt;Magisk GitHub&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Install Android SDK platform-tools (we specifically need &lt;code&gt;fastboot.exe&lt;/code&gt;)&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;strong&gt;Terminology&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;ROM&lt;/strong&gt; – Refers to firmware images, not true read-only memory.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Recovery ROM&lt;/strong&gt; – OS image flashed via recovery partition, usually packaged as a single archive (ZIP, payload.bin) for OTA updates or sideloads.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Fastboot ROM&lt;/strong&gt; – Complete OS image for flashing via fastboot, with all partitions separated (boot, system, vendor, userdata, etc.) for full or selective flashing.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Installation Instructions&lt;/strong&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Understanding Browser Rendering &amp; UI Optimization</title>
      <link>https://almazhecker.github.io/almazich/posts/optimized-css/</link>
      <pubDate>Fri, 02 May 2025 15:04:00 +0000</pubDate>
      <guid>https://almazhecker.github.io/almazich/posts/optimized-css/</guid>
      <description>&lt;p&gt;The performance of lightweight pages can sometimes lag, while heavier applications run smoothly. This discrepancy lies in browser rendering threads and the pixel pipeline.&lt;/p&gt;
&lt;h2 id=&#34;core-threads-in-browser-rendering&#34;&gt;Core Threads in Browser Rendering&lt;/h2&gt;
&lt;p&gt;Browsers typically utilize three primary threads:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;UI Thread&lt;/strong&gt;
Handles browser interface elements (tabs, address bar), separate from page rendering.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;Renderer Thread (Main Thread)&lt;/strong&gt;
Executes JavaScript, HTML, and CSS. It handles:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;DOM/CSSOM parsing&lt;/li&gt;
&lt;li&gt;Style calculation&lt;/li&gt;
&lt;li&gt;Layout (reflow)&lt;/li&gt;
&lt;li&gt;Painting&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;Compositor Thread&lt;/strong&gt;
Uses the GPU to render the final output to the screen. It operates independently from the main thread, optimized for:&lt;/p&gt;</description>
    </item>
  </channel>
</rss>
