This file contains 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
@import url("https://fonts.googleapis.com/css?family=Montserrat&display=swap"); | |
* { | |
box-sizing: border-box; | |
color: white; | |
} | |
html, | |
body { | |
font-family: monospace; |
This file contains 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
<!DOCTYPE html> | |
<html lang="en" dir="ltr"> | |
<head> | |
<meta charset="utf-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1" /> | |
<title>Design</title> | |
<link | |
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap" | |
rel="stylesheet" | |
/> |
This file contains 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
!?add-tf-rds-eks ~/Documents/codemancers/dockup-pro> kubectl describe pod dockup-ui-deployment-6f468f9f57-cm8hk -n dockup-deployments | |
Name: dockup-ui-deployment-6f468f9f57-cm8hk | |
Namespace: dockup-deployments | |
Priority: 0 | |
PriorityClassName: <none> | |
Node: ip-10-0-3-147.us-west-2.compute.internal/10.0.3.147 | |
Start Time: Fri, 25 Oct 2019 13:26:28 +0530 | |
Labels: app=dockup-ui | |
pod-template-hash=6f468f9f57 | |
Annotations: kubernetes.io/psp: eks.privileged |
This file contains 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
?add-cloudbuild-tf-scripts ~/Documents/codemancers/dockup-pro/tf> ./tf-apply.sh | |
An execution plan has been generated and is shown below. | |
Resource actions are indicated with the following symbols: | |
+ create | |
Terraform will perform the following actions: | |
# aws_cloudwatch_log_group.dockup-ui will be created | |
+ resource "aws_cloudwatch_log_group" "dockup-ui" { |
This file contains 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
<!DOCTYPE html> | |
<html lang="en" dir="ltr"> | |
<head> | |
<meta charset="utf-8" /> | |
<title></title> | |
<style media="screen"> | |
img { | |
display: block; | |
} | |
</style> |
This file contains 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
<script type="text/javascript"> | |
document.addEventListener("DOMContentLoaded", function() { | |
let lazyImages = [].slice.call(document.querySelectorAll("img.lazy")); | |
let active = false; | |
const lazyLoad = function() { | |
if (active === false) { | |
active = true; | |
setTimeout(function() { |
This file contains 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
<script type="text/javascript"> | |
document.addEventListener("DOMContentLoaded", function() { | |
var lazyImages = [].slice.call(document.querySelectorAll("img.lazy")); | |
if ("IntersectionObserver" in window) { | |
let lazyImageObserver = new IntersectionObserver(function(entries, observer) { | |
entries.forEach(function(entry) { | |
if (entry.isIntersecting) { | |
let lazyImage = entry.target; | |
lazyImage.src = lazyImage.dataset.src; |
This file contains 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
<!DOCTYPE html> | |
<html lang="en" dir="ltr"> | |
<head> | |
<meta charset="utf-8" /> | |
<title></title> | |
<style media="screen"> | |
img { | |
display: block; | |
} | |
</style> |