Skip to content

Instantly share code, notes, and snippets.

@MaxenceCauderlier
MaxenceCauderlier / nightly-fr
Last active October 1, 2022 20:44
Installer Firefox Nightly sur Linux 64 bits, en français.
#!/bin/sh
START_CMD="firefox-nightly"
INSTALLATION_DIR="/opt/${START_CMD}"
# Download the tarball, unpack and install
URL="https://download.mozilla.org/?product=firefox-nightly-latest-l10n-ssl&os=linux64&lang=fr"
echo "Download from '$URL'"
echo ""
curl -L -o ${HOME}/${START_CMD}.tar.bz2 $URL
@MaxenceCauderlier
MaxenceCauderlier / Tpl.php
Created February 12, 2017 15:12
Simple PHP Template Engine
<?php
class Tpl
{
/** @var string Chemin du template */
protected $filepath;
/** @var string Contenu du template */
protected $filecontent;