- 0/44 Skill Badges Completed, 44 Skill Badges to go!
- 0/182 Labs Completed, 182 Labs to go! (19 Days)
- The Arcade Trivia September 2024 Labs are considered in the sorting.
- Skill Badges with the least amout of labs to complete are sorted first.
- Updated: 2024/9/5
- April 2024
- updated with latest NTLite (2024.4.9880) and Windows 11 23H2 (Update 1) ISO (Feb 2024)
- Negate default Admin user password expiration
- apply latest security updates
- So far, no luck removing the onedrive backup nag message without completely disabling Onedrive notifications
- Nov 2023
- updated with latest NTLite and Windows 11 23H2 ISO (Oct 2023)
This process requires that you are able to ssh OR log in locally using the root user account and that no services be running as users out of /home on the target machine.
The examples are from a default installation with no customization-you NEED to know what you're working with for volumes/partitions to not horribly break things.
By default, CentOS 7 uses XFS for the file system and Logical Volume Manager (LVM), creating 3 partitions: /,/home and swap.
NOTE: If you want to be sure that nothing is writing to /home you can either modify the host to boot into single-user mode OR try to use the
systemctl isolate runlevel1.target command to switch (not tested! should work).
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
| Windows Registry Editor Version 5.00 | |
| [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\TimeZoneInformation] | |
| "RealTimeIsUniversal"=dword:00000001 |
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
| FROM php:5.6 | |
| # install ioncube | |
| RUN mkdir /tmp/ioncube && \ | |
| cd /tmp/ioncube && \ | |
| wget http://downloads3.ioncube.com/loader_downloads/ioncube_loaders_lin_x86-64.tar.gz && \ | |
| tar xvf ioncube_loaders_lin_x86-64.tar.gz && \ | |
| cd `php -i | grep extension_dir | cut -d' ' -f 5` && \ | |
| cp /tmp/ioncube/ioncube/ioncube_loader_lin_5.6.so . && \ | |
| echo zend_extension=ioncube_loader_lin_5.6.so > /etc/php5/apache2/conf.d/00-ioncube.ini && \ | |
| rm -rf /tmp/ioncube/ |
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
| (In both Windows) | |
| 1. Go to C:\Users\{USER}\AppData\Roaming\AnyDesk | |
| 2. Copy & Paste 'thumbnails' | |
| 3. Open 'user.conf' | |
| 4. Replace the line 'ad.roster.items=' | |
| 5. Done. |
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
| <?php | |
| namespace App\Providers; | |
| use Illuminate\Support\ServiceProvider; | |
| class GoogleDriveServiceProvider extends ServiceProvider | |
| { | |
| /** | |
| * Bootstrap the application services. |
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
| // orginal script | |
| // let likes = 0; | |
| // setInterval(() => { | |
| // const heart = document.querySelector('svg[aria-label="Like"]').parentNode; | |
| // const arrow = document.querySelector('a.coreSpriteRightPaginationArrow'); | |
| // if (heart) { | |
| // heart.click() | |
| // likes++; | |
| // console.log(`You've liked ${likes} post(s)`); |