Minikube
Installation
$ curl -Lo minikube https://storage.googleapis.com/minikube/releases/v0.24.0/minikube-darwin-amd64 && chmod +x minikube && sudo mv minikube /usr/local/bin/
package main | |
import ( | |
"crypto/x509" | |
"encoding/pem" | |
"io/ioutil" | |
"log" | |
"os" | |
) |
SELECT table, | |
formatReadableSize(sum(bytes)) as size, | |
min(min_date) as min_date, | |
max(max_date) as max_date | |
FROM system.parts | |
WHERE active | |
GROUP BY table |
$ curl -Lo minikube https://storage.googleapis.com/minikube/releases/v0.24.0/minikube-darwin-amd64 && chmod +x minikube && sudo mv minikube /usr/local/bin/
#!/bin/bash | |
# Cloud-config for CoreOS IPXE deployment on Vultr | |
################################################## | |
# This cloud-config bootstraps CoreOS on /dev/vda and provisions: | |
# - private ip-address on eth1 | |
# - etcd on private network | |
# - fleet on private network | |
# - basic firewall (docker compatible) | |
# - SSHd security hardening | |
################################################## |
import Plugin from '@ckeditor/ckeditor5-core/src/plugin'; | |
import ButtonView from '@ckeditor/ckeditor5-ui/src/button/buttonview'; | |
import { | |
createDropdown, | |
addToolbarToDropdown | |
} from '@ckeditor/ckeditor5-ui/src/dropdown/utils'; | |
export default class MergeFields extends Plugin { | |
static get pluginName() { | |
return 'mergeFields'; | |
} |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<title>Location</title> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script> | |
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> |
<script src="{{asset('/vendor/notifyjs/notify.min.js')}}"></script> | |
<script> | |
$(document).ajaxComplete(function(event, xhr, settings){ | |
$( ".log" ).text( "Triggered ajaxComplete handler." ); | |
console.log(xhr.responseText); | |
response = $.parseJSON(xhr.responseText); | |
// Check for Notifications and Display Them | |
if(response.hasOwnProperty('notifications')){ | |
for(var i=0; i< response.notifications.length; i++){ |
Many users of Git are curious about the lack of delta compression at the object (blob) level when commits are first written. This efficiency is saved until the pack file is written. Loose objects are written in compressed, but non-delta format at the time of each commit.
A simple run though of a commit sequence with only the smallest change to the image (in uncompressed TIFF format to amplify the observable behavior) aids the understanding of this deferred and different approach efficiency.
Create the repo:
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
In this case, the SD card is /dev/disk4
. DO NOT get this wrong or you may destroy all the data on the wrong disk/card/drive.
diskutil list
/dev/disk0
#: TYPE NAME SIZE IDENTIFIER
0: GUID_partition_scheme *160.0 GB disk0
1: EFI 209.7 MB disk0s1