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
@font-face { | |
font-family: 'Irancell'; | |
src: url('data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAAJWMABIAAAABTNAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAACVcAAAABwAAAAcg2zcqkdERUYAAHy0AAAAewAAAJwe3R7xR1BPUwAAhugAAA6FAAAuuH/8t3dHU1VCAAB9MAAACbgAABewLF5xe09TLzIAAAIQAAAAVgAAAGB+19HUY21hcAAABpwAAAPLAAAFZElsoT9jdnQgAAAR+AAAAD0AAABeA3wYXWZwZ20AAApoAAAG8gAADhWeNhLMZ2FzcAAAfKwAAAAIAAAACAAAABBnbHlmAAAWxAAAWZ8AAMckicRoSGhlYWQAAAGUAAAANQAAADYYnPhUaGhlYQAAAcwAAAAhAAAAJA0OCQxobXR4AAACaAAABDMAAAlmtWNM/WxvY2EAABI4AAAEiQAABLYGyNZobWF4cAAAAfAAAAAgAAAAIAMwAUNuYW1lAABwZAAAAqEAAAWmtm21oXBvc3QAAHMIAAAJoQAAFCF/+B3/cHJlcAAAEVwAAACZAAAAsmtEBYh42mNgZGBgAOLQaol78fw2X5nmM78AijBcC75WAKKvl9w3/O/+t5vzDoszkMvBAAYAe2INwAAAAHjaY2BkYGB+8XcFAwMXy3/3/2ycdxiAIsiAKRIAlPwGLAAAAAABAAACWgCJABIAiAAIAAIAAAAYAI0AAAAoABcABgABeNpjYGaaxjiBgZWBgUmNSY2B4b8FhGY8xGDE8AsoysDKwgCiWBoYFBgZIIADRDg5enswODBw/f/D/OLvCgYG5hdMEUBhR5As4wRmJiBbgUEAAH9fDfEAAHjatZVNbFRVFMf/99w3bZ3Q8DEI2JaIQSAdBEplHItKhzRWykgd7UxAwoepTNpG27owiosaNbGIjVEMEpu48CPUhIUgmwpBrApq |
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 this gist we are create a new virtual host for a laravel project on xampp | |
<VirtualHost *:80> | |
DocumentRoot "path\to\your\laravel-folder\public" | |
ServerName yourdomain.local | |
ServerAlias www.yourdomain.local | |
</VirtualHost> | |
<VirtualHost *:443> | |
DocumentRoot "path\to\your\laravel-folder\public" |
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
$host = "http://example.com/download.txt"; | |
$output_filename = "download.txt"; | |
$ch = curl_init(); | |
curl_setopt($ch, CURLOPT_URL, $host); | |
curl_setopt($ch, CURLOPT_VERBOSE, 1); | |
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); | |
curl_setopt($ch, CURLOPT_AUTOREFERER, false); | |
curl_setopt($ch, CURLOPT_REFERER, "https://getmyfile.xyz"); |
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
#!/bin/bash | |
cd /opt/lampp | |
echo your_sudo_password | sudo -S ./manager-linux-x64.run |
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
For windows, this code is working... | |
Tested on Windows 10 - 1909 | |
``` | |
SetCapsLockState, AlwaysOff | |
+CapsLock::CapsLock | |
CapsLock::Send, {Alt down}{Shift down}{Shift up}{Alt up}{Alt up} | |
return | |
``` |