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
aws dynamodb scan --table-name <TABLE_NAME> --select "COUNT" |
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
const gm = require('gm').subClass({ imageMagick: true }); // Enable ImageMagick integration. | |
gm() | |
.command("convert") | |
.in(imageIn) | |
.borderColor("white") | |
.border(1, 1) | |
.fill("none") | |
.fuzz(`${fuzz}%`) | |
.draw("matte 1,1 floodfill") |
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
# ssh -i ./MY.pem [email protected] | |
export PKG_CONFIG_PATH=/usr/lib64/pkgconfig:/usr/lib/pkgconfig | |
export PATH=/usr/bin:$PATH | |
# No c compiler error | |
# export LDFLAGS="-static -L/usr/lib64:/usr/lib" | |
export LDFLAGS=-L/usr/lib64:/usr/lib | |
export LD_LIBRARY_PATH=/usr/lib64:/usr/lib:/usr/lib/libharfbuzz.a | |
export CPPFLAGS=-I/usr/include | |
sudo yum-config-manager --enable epel |
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
sips -Z 40 --out generated/[email protected] icon.png | |
sips -Z 60 --out generated/[email protected] icon.png | |
sips -Z 58 --out generated/[email protected] icon.png | |
sips -Z 87 --out generated/[email protected] icon.png | |
sips -Z 80 --out generated/[email protected] icon.png | |
sips -Z 120 --out generated/[email protected] icon.png |
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 { Queue } from "@aws-cdk/aws-sqs"; | |
import { App, Duration, Stack, StackProps } from "@aws-cdk/core"; | |
import { Runtime, Code, Function } from "@aws-cdk/aws-lambda"; | |
import { SqsEventSource } from "@aws-cdk/aws-lambda-event-sources"; | |
class DeadLetterQueue extends Stack { | |
constructor(parent: App, name: string, props?: StackProps) { | |
super(parent, name, props); |
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 { | |
RestApi, | |
CfnAuthorizer, | |
DomainName, | |
EndpointType, | |
CfnBasePathMapping | |
} from "@aws-cdk/aws-apigateway"; | |
import { Certificate, ValidationMethod } from "@aws-cdk/aws-certificatemanager"; | |
import { Construct } from "@aws-cdk/core"; | |
import { |
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 cdk = require('@aws-cdk/core'); | |
import greengrass = require('@aws-cdk/aws-greengrass'); | |
import lambda = require('@aws-cdk/aws-lambda'); | |
import { CfnCustomResource } from '@aws-cdk/aws-cloudformation'; | |
import { PolicyStatement, Role, ServicePrincipal, CompositePrincipal } from '@aws-cdk/aws-iam'; | |
import { group_deployment_reset_code } from '../lib/code/group_deployment_reset'; | |
import { thing_vendor_code } from '../lib/code/thing_vendor'; |
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
const calcEdgePoint = (center: number, radius: number, degree: number): Point => { | |
const degreeInRadians = degToRadians(degree); | |
return [ | |
center + Math.cos(degreeInRadians) * radius, | |
center + Math.sin(degreeInRadians) * radius | |
]; | |
}; |
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
const edgePointCalculatorFor = (center: number, radius: number) => (degree: number): Point => { | |
const degreeInRadians = degToRadians(degree); | |
return [ | |
center + Math.cos(degreeInRadians) * radius, | |
center + Math.sin(degreeInRadians) * radius | |
]; | |
}; | |
const calculateEdgePoint = edgePointCalculatorFor(60, 50); | |
const eightyDegreesAlongCircle = calculateEdgePoint(80) |
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
{times(3).map(i => ( | |
<Circle | |
key={`circle_outline_${i}`} | |
cx={viewBoxCenter} | |
cy={viewBoxCenter} | |
r={(i + 1) * radius * 0.25} | |
stroke="black" | |
strokeOpacity="0.2" | |
strokeWidth="0.5" | |
fill="transparent" |
OlderNewer