brew info [email protected] brew install [email protected] brew services start [email protected]
option :
brew tap homebrew/services
brew services list brew link [email protected] --force
| <link href="data:image/x-icon;base64,AAABAAEAEBAAAAAAAABoBQAAFgAAACgAAAAQAAAAIAAAAAEACAAAAAAAAAEAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA |
brew info [email protected] brew install [email protected] brew services start [email protected]
option :
brew tap homebrew/services
brew services list brew link [email protected] --force
| const echoPostRequest = { | |
| url: 'https://<my url>.auth0.com/oauth/token', | |
| method: 'POST', | |
| header: 'Content-Type:application/json', | |
| body: { | |
| mode: 'application/json', | |
| raw: JSON.stringify( | |
| { | |
| client_id:'<your client ID>', | |
| client_secret:'<your client secret>', |
| L'application FODMAP permet : | |
| - de donner votre avis anonymement sur les produits et ingredients FODMAP | |
| - d'utilisr votre caméra pour scanner les produits | |
| et en récuperer les informations de la base de données OpenFoodFacts | |
| A part les numéros des codes barres scannés et vos avis anonyme, | |
| aucunes données ne sont envoyées à un ou des serveur(s) extérieurs. |
Graphic via State of Florida CFO Vendor Payment Search (flair.myfloridacfo.com)
This is a quick command I use to snapshot webpages that have a fun image I want to keep for my own collection of WTFViz. Why not just right-click and save the image? Oftentimes, the webpage in which the image is embedded contains necessary context, such as captions and links to important documentation just incase you forget what exactly that fun graphic was trying to explain.
| <?php | |
| /** | |
| * Get browser language, given an array of avalaible languages. | |
| * | |
| * @param [array] $availableLanguages Avalaible languages for the site | |
| * @param [string] $default Default language for the site | |
| * @return [string] Language code/prefix | |
| */ | |
| function get_browser_language( $available = [], $default = 'en' ) { | |
| if ( isset( $_SERVER[ 'HTTP_ACCEPT_LANGUAGE' ] ) ) { |
| Add files to staging: | |
| git add -A (visi faili) | |
| vai: | |
| git add filePath | |
| Commit to local rep: | |
| git commit -m 'METRO-82' | |
| Push to branch/trunk (our branch name is develop) | |
| git push origin develop |
| #!/bin/bash | |
| # www.fduran.com | |
| # script that will send an email to EMAIL when disk use in partition PART is bigger than %MAX | |
| # adapt these 3 parameters to your case | |
| MAX=95 | |
| [email protected] | |
| PART=sda1 | |
| USE=`df -h |grep $PART | awk '{ print $5 }' | cut -d'%' -f1` | |
| if [ $USE -gt $MAX ]; then |
| #!/bin/bash | |
| ## Install LEMP MariaDB, Exim4, PureFTP on Debian 8 x86_64 | |
| apt update | |
| apt install dialog | |
| dpkg-reconfigure locales | |
| dpkg-reconfigure tzdata |
| #!/bin/bash | |
| ## Install ISPConfig3 on Ubuntu 14.04 64Bits | |
| ## Author: Nilton OS www.linuxpro.com.br | |
| ## https://www.howtoforge.com/perfect-server-ubuntu-14.04-apache2-php-mysql-pureftpd-bind-dovecot-ispconfig-3 | |
| ## Version 0.5 | |
| ## Set lang en_US UTF8 | |
| ## echo 'LC_ALL="en_US.utf8"' >>/etc/environment |