This file contains 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
<?php | |
$text = "text text"; | |
$svg = new EasySVG(); | |
$svg->setFontSVG("om_telolet_om-webfont.svg"); | |
$svg->setFontSize(80); | |
$svg->setFontColor('#000000'); | |
$svg->setLineHeight(1.2); | |
$svg->setLetterSpacing(.1); | |
$svg->addAttribute("width", "600px"); |
This file contains 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
# Setting up the repo | |
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 7F0CEB10 | |
echo "deb http://repo.mongodb.org/apt/ubuntu "$(lsb_release -sc)"/mongodb-org/3.0 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb.list | |
# Updating and installing | |
sudo apt-get update | |
# WARNING: check out the -y here... | |
sudo apt-get install -y mongodb-org | |
# For a specific version, use this command |