sudo apt-get update
sudo apt-get install fish
sudo apt-add-repository ppa:fish-shell/release-2
sudo apt-get update
sudo apt-get install fish``
| sudo apt-get install bsd-mailx | |
| sudo apt-get install ssmtp | |
| sudo vim /etc/ssmtp/ssmtp.conf | |
| I have added these lines in config file: | |
| # Config file for sSMTP sendmail | |
| TSL_CA_FILE=/etc/ssl/certs/ca-certificates.crt |
| sudo apt-get install bsd-mailx | |
| sudo apt-get install ssmtp | |
| sudo vim /etc/ssmtp/ssmtp.conf | |
| I have added these lines in config file: | |
| # Config file for sSMTP sendmail | |
| TSL_CA_FILE=/etc/ssl/certs/ca-certificates.crt |
| #!/bin/bash | |
| # | |
| # This script configures WordPress file permissions based on recommendations | |
| # from http://codex.wordpress.org/Hardening_WordPress#File_permissions | |
| # | |
| # Author: Michael Conigliaro <mike [at] conigliaro [dot] org> | |
| # | |
| WP_OWNER=www-data # <-- wordpress owner | |
| WP_GROUP=www-data # <-- wordpress group | |
| WP_ROOT=$1 # <-- wordpress root directory |
| require 'tweakphoeus' | |
| require 'nokogiri' | |
| class Ebooks | |
| URL = "https://it-ebooks.info" | |
| BOOK_URL = "#{URL}/book" | |
| N_BOOKS = 6972 | |
| def initialize |
| chrome.webRequest.onHeadersReceived.addListener( | |
| function (details) { | |
| return { | |
| responseHeaders: details.responseHeaders.filter(function(header) { | |
| return (header.name.toLowerCase() !== 'x-frame-options'); | |
| }) | |
| }; | |
| }, { | |
| urls: ["<all_urls>"] | |
| }, ["blocking", "responseHeaders"]); |