Skip to content

Instantly share code, notes, and snippets.

View Rajakumardev's full-sized avatar
🐱
Focusing

Rajakumar Rajakumardev

🐱
Focusing
View GitHub Profile
export const chaosTestStrings = (): void => {
const textNodes = getAllTextNodes(document.body);
for (const node of textNodes) {
const textNodeLength = node.textContent ? node.textContent.length : 0;
if (node.textContent === null) {
return;
}
if (node.parentElement instanceof Element) {
if (node.parentElement.dataset.originalText === undefined) {
@vsnthdev
vsnthdev / clean.sh
Created October 17, 2020 06:09
MIUI Bloatware Removal Script
#!/usr/bin bash
# DEFINE THE BLOATWARE APPLICATIONS WHICH
# ARE SAFE TO BE REMOVED
declare -a bloatware=(
# Google Bloatware
"com.google.android.apps.docs" # Google Docs
"com.google.android.apps.maps" # Google Maps
"com.google.android.apps.photos" # Google Photos
"com.google.android.apps.tachyon" # Google Duo
@dypsilon
dypsilon / frontendDevlopmentBookmarks.md
Last active November 16, 2025 11:36
A badass list of frontend development resources I collected over time.