Skip to content

Instantly share code, notes, and snippets.

View dnys1's full-sized avatar

Dillon Nys dnys1

View GitHub Profile
@charlieforward9
charlieforward9 / Flutter AI Server: Overview, Design & Considerations.md
Last active March 3, 2024 02:54
Flutter AI Server: Overview, Design & Considerations

Flutter AI Server: Overview, Design & Considerations

Conversation with ChatGPT Model-4

Overview of the various options, with a deep dive into the implementation using AWS Amplify with the GraphQL API capabilities. Finished with real-time feedback considerations.


Chat Name: Flutter AI Server Implementation

@pbojinov
pbojinov / README.md
Last active December 8, 2023 21:09
Two way iframe communication- Check out working example here: http://pbojinov.github.io/iframe-communication/

Two way iframe communication

The main difference between the two pages is the method of sending messages. Recieving messages is the same in both.

Parent

Send messages to iframe using iframeEl.contentWindow.postMessage Recieve messages using window.addEventListener('message')

iframe