Skip to content

Instantly share code, notes, and snippets.

View jrmsamson's full-sized avatar
😄

Jerome Samson jrmsamson

😄
View GitHub Profile
@calvinlfer
calvinlfer / README.md
Last active April 20, 2022 09:10
How to build a GraalVM native image packaged as a Docker image that can be deployed on AWS Lambda

A build process for GraalVM native images that can be deployed on AWS Lambda as Docker container images

Use zio-lambda to write your own Lambda function based on Scala and ZIO

  • Checkout the example project for inspiration
  • Make sure you enable the GraalVMNativeImagePlugin like the example project does and configure it with the appropriate flags to build the native image
  • You may most likely need to add some reflect configuration and this post from Inner Product shows a good way to include the configuration in the project so Graal native-image will find it

If you have graal native already installed with the correct libraries in place for linking then great, otherwise use one of the following Docker images tagged with graalvm

**NOTE

@arthurpham
arthurpham / remove-docker-containers.md
Last active August 28, 2018 14:52
How to remove unused Docker containers and images on windows
  1. Delete all images

FOR /f "tokens=*" %i IN ('docker images -q -f "dangling=true"') DO docker rmi %i

  1. Delete all containers

FOR /f "tokens=*" %i IN ('docker ps -aq') DO docker rm %i

@btroncone
btroncone / ngrxintro.md
Last active November 22, 2025 23:04
A Comprehensive Introduction to @ngrx/store - Companion to Egghead.io Series

Comprehensive Introduction to @ngrx/store

By: @BTroncone

Also check out my lesson @ngrx/store in 10 minutes on egghead.io!

Update: Non-middleware examples have been updated to ngrx/store v2. More coming soon!

Table of Contents