Skip to content

Instantly share code, notes, and snippets.

View IslandOfCode's full-sized avatar
🏠
Working from home, as always

Pier Riccardo Monzo IslandOfCode

🏠
Working from home, as always
View GitHub Profile
@IslandOfCode
IslandOfCode / .htaccess
Created July 2, 2020 13:04
Simple download counter in PHP
RewriteEngine On
RedirectMatch ^.*\.(zip|rar|pdf)$ /download.php?file=$0
@IslandOfCode
IslandOfCode / resetWLAN.bat
Created November 17, 2019 14:57
Common wlan command to reset wifi connection
@echo off
net session >nul 2>&1
if not %errorLevel% == 0 (
echo Admin right needed
pause
exit
)
echo 1. Reset WinSock catalog
@IslandOfCode
IslandOfCode / adminperm.bat
Created November 17, 2019 14:44
Check admin permission in batch script
@echo off
net session >nul 2>&1
if not %errorLevel% == 0 (
echo You dont have admin right
pause.
exit
)
echo Hello, admin!