We don't need this anymore, I know why it detected. Thanks @ngoxthjen
Check: https://t.me/deepinrain
Currently, VNeID detect:
- init.svc.adb_root
- service.adb.root
- /proc/self/maps
- Bootloader?
- app ksu, ksun, apatch...
| import androidx.compose.animation.core.AnimationSpec | |
| import androidx.compose.animation.core.animate | |
| import androidx.compose.animation.core.tween | |
| import androidx.compose.foundation.gestures.ScrollableState | |
| import androidx.compose.foundation.layout.Column | |
| import androidx.compose.foundation.layout.ColumnScope | |
| import androidx.compose.foundation.lazy.LazyListState | |
| import androidx.compose.runtime.Composable | |
| import androidx.compose.runtime.Stable | |
| import androidx.compose.runtime.saveable.Saver |
We don't need this anymore, I know why it detected. Thanks @ngoxthjen
Check: https://t.me/deepinrain
Currently, VNeID detect:
This guide is for homelab admins who understand IPv4s well but find setting up IPv6 hard or annoying because things work differently. In some ways, managing an IPv6 network can be simpler than IPv4, one just needs to learn some new concepts and discard some old ones.
Let’s begin.
First of all, there are some concepts that one must unlearn from ipv4:
Concept 1
There are multiple options how to install MS Office on Linux.
VM-based - Integrate Windows apps running in a Windows virtual machine as native-looking in Linux
mkdir -p ~/bin
curl --proto "=https" --tlsv1.2 "https://gist.github.com/msanders/57837aaf6f7da30dcc1eb0bdf6b0b733/raw/firefox_export_cookie_exceptions" > ~/bin/firefox_export_cookie_exceptions
curl --proto "=https" --tlsv1.2 "https://gist.github.com/msanders/57837aaf6f7da30dcc1eb0bdf6b0b733/raw/firefox_restore_cookie_exceptions" > ~/bin/firefox_restore_cookie_exceptions
chmod u+x ~/bin/firefox_export_cookie_exceptions ~/bin/firefox_restore_cookie_exceptions
mkdir -p ~/.local/share/fxcookies
# NOTE: Firefox must be closed in order for restore to unlock the database.This guide will detail how to manually install Windows 8 and up on a UEFI-compliant system. This has many benefits:
I will be using Windows 11 Pro 22H2 as an example for this.
| // Turn all HTML <a> elements into client side router links, no special framework-specific <Link> component necessary! | |
| // Example using the Next.js App Router. | |
| import { useRouter } from 'next/navigation'; | |
| import { useEffect } from 'react'; | |
| function useLinkHandler() { | |
| let router = useRouter(); | |
| useEffect(() => { | |
| let onClick = e => { |
| #!/bin/sh | |
| if [ "$(whoami)" != "root" ]; then | |
| echo "Please run this script as root." | |
| exit | |
| fi | |
| printf "This script will\n\n- Remove Snap\n- Install the deb version of Firefox\n- Install Flatpak\n- Optionally replace Ubuntu Desktop with GNOME\n\n" | |
| read -p "Continue? (Y/n) " start_prompt | |
| case $start_prompt in | |
| [nN] | [nN][oO] ) | |
| exit |