Skip to content

Instantly share code, notes, and snippets.

View Klemart3D's full-sized avatar

Klemart3D Klemart3D

View GitHub Profile
@Klemart3D
Klemart3D / ps_php_compatibility.md
Created July 4, 2025 08:40
Compatibilité entre versions de PrestaShop et PHP
Version PS \ PHP : ≤5.1 5.2 5.3 5.4 5.6 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2 8.3 8.4 8.5
PrestaShop 1.2 -> 1.5 - OK OK OK OK! - - - - - - - - - - -
PrestaShop 1.6.0 - OK OK OK OK OK! - - - - - - - - - -
PrestaShop 1.6.1 - OK OK OK OK OK OK! - - - - - - - - -
PrestaShop 1.7.0 -> 1.7.3 - - - OK OK OK OK! - - - - - - - - -
PrestaShop 1.7.4 - - - - OK OK OK! - - - - - - - - -
PrestaShop 1.7.5 -> 1.7.6 - - - - OK OK OK OK! - - - - - - - -
Presta
@Klemart3D
Klemart3D / index.php
Created February 28, 2019 16:46
Renamable separator bookmark for Firefox
<!doctype html>
<?php
$isHorz = (@$_GET['t'] == 'horz');
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Firefox Renamable Bookmarks Separator</title>
<link rel="icon" href="<?php echo $isHorz ? 'horz' : 'vert'; ?>-favicon.ico" type="image/x-icon">
@Klemart3D
Klemart3D / FromGithubToBitbucket.txt
Last active July 13, 2017 03:16
Transfer repo from Github to Bitbucket
# Invert ref from : https://gist.github.com/mandiwise/5954bbb2e95c011885ff
cd $HOME/code/repo-directory
git remote rename origin github
git remote add origin https://[email protected]/Klemart3D/awesome-new-repo.git
git push -u origin master
...
git remote rm github