5/25/2023

How to Use Rufus to Bypass TPM and Secure Boot Requirements in Windows 11 2023

 How to Use Rufus to Bypass TPM and Secure Boot Requirements in Windows 11

Here are the steps to bypass TPM and Secure Boot requirements in Windows 11 using Rufus:

  1. Download and install Rufus from https://rufus.ie

  2. Download the Windows 11 ISO file from Microsoft's website.

  3. Open Rufus and insert a USB drive with at least 8GB of storage.

  4. Select the "SELECT" button and navigate to the Windows 11 ISO file you downloaded.Chuwi gemibook

  5. Under "BOOT SELECTION," choose "UEFI + Legacy boot modes." This will bypass the UEFI/Secure Boot requirement.

  6. Under "PARTITION SCHEME," select "MBR partition scheme for BIOS or UEFI."

  7. Check the box next to "Create a BTU (bios-temulated-UEFI) partition." This allows installation on non-UEFI systems.

  8. Click "START" to begin formatting your USB drive and creating the Windows 11 installation media.

  9. Once complete, restart your PC and enter the BIOS.

  10. In the BIOS, go to the "Boot" menu and move your USB drive to the top of the boot order list.

  11. Save changes and exit, booting from the USB drive you just created.Chuwi ubook x

  12. Windows 11 setup will launch. When prompted, select "Install Now."

  13. Windows will bypass TPM and Secure Boot checks and proceed with installation.

  14. After installing, Windows 11 will function normally even though your system does not meet official hardware requirements. Some features may be limited.

By using Rufus to create custom installation media, you can trick Windows 11 into installing on PCs that do not have TPM 2.0 or support Secure Boot - allowing you to run the latest OS even with older hardware.

How to Create Custom Notification Component in React Using SweetAlert 2023

 How to Create Custom Notification Component in React Using SweetAlert

Here are the steps to create a custom notification component in React using SweetAlert:Chuwi ubook x

  1. Install SweetAlert:

npm install sweetalert

  1. Import SweetAlert in the component:

import Swal from 'sweetalert'

  1. Create the Notification component:Chuwi hipad max

jsx
const Notification = (type, message) => {
  Swal({
    toast: true,
    position: 'top-end',
    showConfirmButton: false,
    timer: 3000,  
    timerProgressBar: true,
    text: message,  
    background: type === 'success' ? '#90EE90' : '#FF0000'      
  })
}
  1. Call the component to show notifications:
jsx
Notification('success', 'Task completed successfully!')

Notification('error', 'Oops, something went wrong!')
  1. Pass the message and type props:
  • success - Shows a green notification
  • error - Shows a red notification
  1. Import and use the Notification component:
jsx
import { Notification } from './Notification'

// Call from a function
function handleClick() {
  Notification('success', 'Task added!')
}
  1. SweetAlert will show a notification at the top of the page with:
  • A dismissable timer
  • Custom background color based on type
  • No confirmation button

This gives you a simple way to show custom notification alerts in any React component using SweetAlert. Let me know if you have any other questions!

13 Best Netflix Games to Play on Your Smartphone

 13 Best Netflix Games to Play on Your Smartphone

Here are 13 of the best Netflix games you can play on your smartphone:

  1. Stranger Things: 1984 - A retro-style action RPG based on the Stranger Things series.Chuwi gemibook

  2. Shooting Hoops - A fun basketball mini-game where you swipe to shoot.

  3. Asphalt Xtreme - An arcade-style racing game with over 100 licensed cars.

  4. Card Blast - A solitaire-like game where you match and remove cards.

  5. Knittens - A relaxing puzzle game where you guide colorful kittens through mazes.

  6. Wonderputt Forever - A mini-golf game with hilariously designed courses.

  7. Teeter Up - A challenging balancing game where you navigate a cube through obstacles.

  8. Bowling Ballers - A physics-based bowling game with power-ups and boosts.

  9. Hexafold - A "shape-shifting puzzler" where you rotate and slide panels to solve puzzles.

  10. DLC: Danger. Locals. Chaos. - A quirky party game where you smash buses, elephants and villains.

  11. Into the Dead 2: Unleashed - A zombie shooting game featuring vicious zombie hordes.

  12. Lane Splitter - A stunt bike racer where you dodge cars and jump over obstacles.

  13. Fruit Ninja - The classic fruit slicing action game developed by Halfbrick.

These are just some examples of the Netflix mobile games you can access through the Netflix app. There are dozens more across a variety of genres. You can find them all by selecting the "Games" tab within the Netflix mobile app.

Hope this helps! Let me know if you have any other questions about playing Netflix games on your smartphone.