This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/dts-v1/; | |
/ { | |
compatible = "brcm,bcm2837", "brcm,bcm2836"; | |
serial-number = "00000000aa057067"; | |
model = "Raspberry Pi 3 Model B Rev 1.2"; | |
memreserve = <0x37000000 0x8000000>; | |
interrupt-parent = <0x1>; | |
#address-cells = <0x1>; | |
#size-cells = <0x1>; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Copyright (c) <2011> <Jay Baird and Bob Ippolito> | |
Permission is hereby granted, free of charge, to any person | |
obtaining a copy of this software and associated documentation | |
files (the "Software"), to deal in the Software without | |
restriction, including without limitation the rights to use, | |
copy, modify, merge, publish, distribute, sublicense, and/or sell | |
copies of the Software, and to permit persons to whom the | |
Software is furnished to do so, subject to the following | |
conditions: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for disk in gitlab-data postgresql-data redis-data redis-disk sentry-data gke-core-b414f88f-dyna-pvc-444be9f4-5d32-11e7-97ab-42010a8a012e gke-core-b414f88f-dyna-pvc-8e70f528-4bc2-11e7-97ab-42010a8a012e; do | |
gcloud compute disks snapshot "$disk" --snapshot-names "$disk" --zone=us-west1-a | |
done | |
for disk in gitlab-data postgresql-data redis-data redis-disk sentry-data gke-core-b414f88f-dyna-pvc-444be9f4-5d32-11e7-97ab-42010a8a012e gke-core-b414f88f-dyna-pvc-8e70f528-4bc2-11e7-97ab-42010a8a012e; do | |
gcloud compute disks create $(echo $disk | sed "s/^.../old/") --source-snapshot=$disk --zone=us-west1-a | |
done | |
for disk in gitlab-data postgresql-data redis-data redis-disk sentry-data gke-core-b414f88f-dyna-pvc-444be9f4-5d32-11e7-97ab-42010a8a012e gke-core-b414f88f-dyna-pvc-8e70f528-4bc2-11e7-97ab-42010a8a012e; do | |
gcloud compute disks delete "$disk" --zone=us-west1-a |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "http://json-schema.org/draft-04/hyper-schema#", | |
"name": "HAR format", | |
"description": "JSON Schema structuring of HAR, based on https://github.com/jarib/har/blob/master/schema.json", | |
"type": "object", | |
"properties": { "$ref": "#logType" }, | |
"logType": { | |
"id": "logType", | |
"description": "HTTP Archive structure.", | |
"type": "object", |

This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gistup |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gistup |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# --------------------------------------------------------------------------- | |
# | |
# Description: This file holds all my BASH configurations and aliases | |
# | |
# Sections: | |
# 1. Environment Configuration | |
# 2. Make Terminal Better (remapping defaults and adding functionality) | |
# 3. File and Folder Management | |
# 4. Searching |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); | |
/** | |
* CodeIgniter | |
* | |
* An open source application development framework for PHP 4.3.2 or newer | |
* | |
* @package CodeIgniter | |
* @author ExpressionEngine Dev Team | |
* @copyright Copyright (c) 2008 - 2010, EllisLab, Inc. | |
* @license http://codeigniter.com/user_guide/license.html |