Or: “Everybody likes being given a glass of water.”
By Merlin Mann.
It's only advice for you because it had to be advice for me.
| #!/system/bin/sh | |
| # Copyright (C) MIT License 2024 Nicholas Bissell (TheFreeman193) | |
| NL=" | |
| " | |
| SYSNMLN=65 | |
| showHeader() { | |
| echo " |
A curated list of AWS resources to prepare for the AWS Certifications
A curated list of awesome AWS resources you need to prepare for the all 5 AWS Certifications. This gist will include: open source repos, blogs & blogposts, ebooks, PDF, whitepapers, video courses, free lecture, slides, sample test and many other resources.
| (function () { | |
| var perfBar = function(budget) { | |
| window.onload = function() { | |
| window.performance = window.performance || window.mozPerformance || window.msPerformance || window.webkitPerformance || {}; | |
| var timing = window.performance.timing, | |
| now = new Date().getTime(), | |
| output, loadTime; |
| <?php | |
| /** | |
| * Instructions: | |
| * | |
| * 1. Put this into the document root of your Kirby site | |
| * 2. Make sure to setup the base url for your site correctly | |
| * 3. Run this script with `php statify.php` or open it in your browser | |
| * 4. Upload all files and folders from static to your server | |
| * 5. Test your site |
| #!/bin/sh | |
| # | |
| # Startup script for btsync | |
| # Copy to /usr/local/etc/rc.d/S99btsync.sh and chown to root:root | |
| # | |
| # Stop myself if running | |
| btsyncdir="/var/services/homes/yotam/btsync/" | |
| btsync="${btsyncdir}/btsync" | |
| pidfile="${btsyncdir}/.sync/sync.pid" | |
| # |
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| # Vagrantfile API/syntax version. Don't touch unless you know what you're doing! | |
| VAGRANTFILE_API_VERSION = "2" | |
| Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | |
| # All Vagrant configuration is done here. The most common configuration | |
| # options are documented and commented below. For a complete reference, | |
| # please see the online documentation at vagrantup.com. |
| function onOpen() { | |
| var ss = SpreadsheetApp.getActiveSpreadsheet(); | |
| var menuEntries = [ {name: "Run Query", functionName: "runQuery"} ]; | |
| ss.addMenu("HTTP Archive + BigQuery", menuEntries); | |
| } | |
| function runQuery() { | |
| var projectNumber = 'httparchive'; | |
| var sheet = SpreadsheetApp.getActiveSheet(); |
| Original file: | |
| Lena.png 512 x 512 Pixel 24 bit Color 386.301 Byte | |
| The standard for image compression tests. | |
| Might be highly optimized in some encoders. | |
| Goal: Get the most quality out of around 56KB. | |
| Look at http://benediktkastl.de/summary_lena.htm for the images. | |
| Metrics explained: |
| #!/usr/bin/python | |
| import subprocess | |
| import re | |
| import os | |
| import sys | |
| import optparse | |
| import time | |
| def call_checked(*args): | |
| r = subprocess.call(args) |