Skip to content

Instantly share code, notes, and snippets.

@AdamBien
Created June 6, 2022 04:31
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AdamBien/0b8ebc12edd95c159362182fd4ff1996 to your computer and use it in GitHub Desktop.
Save AdamBien/0b8ebc12edd95c159362182fd4ff1996 to your computer and use it in GitHub Desktop.
100thAirhacksQ&A.md

Ask questions and see you at July, 4th, 8.PM. CET: youtube.com/c/bienadam

Also checkout recent episode:

99th airhacks.tv

Please keep the questions Jakarta EE-stic. Means: as short and as concise as only possible. Feel free to ask several, shorter questions. Upcoming airhacks.tv events are also going to be announced at meetup.com/airhacks

@haglo
Copy link

haglo commented Jul 4, 2022

HI Adam,

dynamic import in JavaScript.
i want dynamicly import in JavaScript, because sometimes i let run my JavaScript-App local on my pc, sometimes in the Cloud

Example for run local:
import { content01 } from "http://localhost:8182/lib/env.js";
....

Example for run in Cloud:
import { content01 } from "http://www.meine-app.com:8182/lib/env.js";
....

I am searching for something like this:
import { content01 } from ${baseURI}:8182/lib/env.js";

My Application must only run on Google-Chrome.
Is there a new feature in new ECMA-Standard?

@wanderer2097
Copy link

wanderer2097 commented Jul 4, 2022

Congratulations on the 100th airhacks! Keep it going, Adam!

You mentioned on several occasions that cloud is like an "exploded application server". Do you think the same is also true of the cloud-native databases?

Do you have any experience using Amazon DynamoDB transactions - like here ? Have you used them on any of your projects requiring stronger consistency guarantees or you wouldn't bother?

@wanderer2097
Copy link

On one of recent episodes you mentioned using caches (e.g. JPA L2 cache) in serverless (e.g. Lambda) deployments makes no sense. How about accessing static data (e.g. master data which very rarely changes)?

@dwamara
Copy link

dwamara commented Jul 4, 2022

Hi Adam,

I have no question (for today) :-) I was there for the 60th, which was the 5th year anniversary so I cannot not give a shoutout for the 100th episode. It has been 8 years and 4 months, that's a milestone, thanks for keeping it up and not quitting. We went from the green and blue books to Java EE to BCE to Glassfish to Payara to Quarkus and now AWS Lamba... thrilled to know what's next down the line.

D.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment