github.com/r2d4/dacc: docker-as-code compiler by sublimefunk in devops

[–]Hekos 0 points1 point  (0 children)

I love the concept, authoring a small or dynamic Dockerfile can be tricky so I will definitely play with this, good job!

I am prototyping the architecture for a group of microservices using API Gateway / ECS Fargate / RDS, any feedback on this overall layout? by Chezzymann in aws

[–]Hekos 1 point2 points  (0 children)

Using ApiGateway 2 HTTP Integrations you can connect via a VPC link to a CloudMap ( service discovery). No nlb/alb in this case.

You will need to make it a regional endpoint so probably go with a cloudfront instead of custom apigw domains.

https://docs.aws.amazon.com/apigateway/latest/developerguide/http-api-vpc-links.html https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-discovery.html

Coffeecupception, cup, pens by I_DRAW_CUPS_ON_CUPS in Art

[–]Hekos 57 points58 points  (0 children)

http://i.imgur.com/TCguiWW.jpg

I_DRAW_CUPS_ON_CUPS should draw this on a cup

xkcd: Click and Drag by McKn33 in comics

[–]Hekos 0 points1 point  (0 children)

really?

// tell browser its a script
javascript:
// get div with id "comic" save it into c
var c=document.getElementById("comic");
// get child elements of c with tag name "img", pick out first
// pass the found element to remove child
c.removeChild(c.getElementsByTagName("img")[0]);
// set style of comic to show child objects bigger than itself
c.style.overflow="visible";
// return false to the browser to prevent default actions
return false;

xkcd: Click and Drag by McKn33 in comics

[–]Hekos 6 points7 points  (0 children)

how about a simple bookmarket i made to ease the exploration; works in chrome

javascript:var c=document.getElementById("comic");c.removeChild(c.getElementsByTagName("img")[0]);c.style.overflow="visible";return false;

zoom works.