-
Use the Download button on www.cursor.com web site. It will download the
NAME.AppImage
file. -
Copy the .AppImage file to your Applications directory
cd ~/Downloads
mkdir -p ~/Applications
mv NAME.AppImage ~/Applications/cursor.AppImage
Use the Download button on www.cursor.com web site. It will download the NAME.AppImage
file.
Copy the .AppImage file to your Applications directory
cd ~/Downloads
mkdir -p ~/Applications
mv NAME.AppImage ~/Applications/cursor.AppImage
<?php | |
function encrypt_url($string) { | |
$key = "IW_979805"; //key to encrypt and decrypts. | |
$result = ''; | |
$test = ""; | |
for($i=0; $i<strlen($string); $i++) { | |
$char = substr($string, $i, 1); | |
$keychar = substr($key, ($i % strlen($key))-1, 1); | |
$char = chr(ord($char)+ord($keychar)); |