When making this website, i wanted a simple, reasonable way to make it look good on most displays. Not counting any minimization techniques, the following 58 bytes worked well for me:
main {
max-width: 38rem;
padding: 2rem;
margin: auto;
}
js_include conf.d/oauth2.js; | |
server { | |
listen 80; | |
server_name localhost; | |
root /usr/share/nginx/html; | |
location / { | |
auth_request /_auth_init; | |
} |
# Working with Altera Quartus II (Q2) and do proper versioning is not that easy | |
# but if you follow some rules it can be accomplished. :) | |
# This file should be placed into the main directory where the .qpf file is | |
# found. Generally Q2 throws all entities and so on in the main directory, but | |
# you can place all stuff also in separate folders. This approach is followed | |
# here. So when you create a new design create one or more folders where your | |
# entities will be located and put a .gitignore in there that overrides the | |
# ignores of this file, e.g. one single rule stating "!*" which allows now all | |
# type of files. When you add a MegaFunction or another entity to your design, | |
# simply add it to one of your private folders and Q2 will be happy and manage |
#!/bin/bash | |
SENDGRID_API_KEY="" | |
EMAIL_TO="" | |
FROM_EMAIL="" | |
FROM_NAME="" | |
SUBJECT="" | |
bodyHTML="<p>Email body goes here</p>" |
#!/usr/bin/ruby | |
# THIS FILE IS MANAGED BY PUPPET | |
require 'zbxapi' | |
require 'pp' | |
zbx = ZabbixAPI.new('http://localhost/zabbix/api_jsonrpc.php', verify_ssl: false, http_timeout: 300) | |
zbx.login('<%= @admin_user %>', '<%= @admin_password %>') |
Find the Discord channel in which you would like to send commits and other updates
In the settings for that channel, find the Webhooks option and create a new webhook. Note: Do NOT give this URL out to the public. Anyone or service can post messages to this channel, without even needing to be in the server. Keep it safe!
cd ~/Downloads
wget http://repo.zabbix.com/zabbix/3.2/ubuntu/pool/main/z/zabbix-release/zabbix-release_3.2-1+xenial_all.deb
dpkg -i zabbix-release_3.2-1+xenial_all.deb
apt-get update
should add /etc/apt/sources.list.d/zabbix.list
Jon Warbrick, July 2014, V3.2 (for Ansible 1.7)
First one found from of