This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Instagram Comment Auto-Deletion Script (Enhanced Version) | |
| * | |
| * ⚠️ IMPORTANT WARNINGS: | |
| * - This script likely violates Instagram's Terms of Service | |
| * - Your account could be temporarily or permanently banned for using automation | |
| * - Instagram may update their UI at any time, breaking this script | |
| * - Use at your own risk - test with small batches first | |
| * | |
| * REQUIREMENTS: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // This file was initially generated by Windows Terminal 1.4.3243.0 | |
| // It should still be usable in newer versions, but newer versions might have additional | |
| // settings, help text, or changes that you will not see unless you clear this file | |
| // and let us generate a new one for you. | |
| // To view the default settings, hold "alt" while clicking on the "Settings" button. | |
| // For documentation on these settings, see: https://aka.ms/terminal-documentation | |
| { | |
| "$schema": "https://aka.ms/terminal-profiles-schema", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Import-Module posh-git | |
| Import-Module oh-my-posh | |
| Set-Theme Paradox | |
| # Chocolatey profile | |
| $ChocolateyProfile = "$env:ChocolateyInstall\helpers\chocolateyProfile.psm1" | |
| if (Test-Path($ChocolateyProfile)) { | |
| Import-Module "$ChocolateyProfile" | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script> | |
| window.onscroll = function () { | |
| const nav = document.querySelector(".navbar"); | |
| if (!nav) { | |
| return false; | |
| } | |
| if (window.pageYOffset > 40) { | |
| nav.classList.add("nav-on-scroll"); | |
| } else { | |
| nav.classList.remove("nav-on-scroll"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "facebook": "facebook.com/syaaauqi/", | |
| "linkedin": "linkedin.com/in/syaufy/", | |
| "steam": "steamcommunity.com/id/syaufy", | |
| "dribbble": "dribbble.com/syaufy", | |
| "behance": "behance.net/syaufy", | |
| "instagram": "www.instagram.com/syaufy/", | |
| "medium": "medium.com/@syaufy", | |
| "github": "github.com/syauqi", | |
| "dev.to": "dev.to/syaufy", |