Now this is something right up my alley. An essay about a good movie, and its wonderful soundtrack: Like the fellowship itself the “Fellowship Theme” builds to its full formation, and then is deconstructed until it’s only a shell of its former self.
Category Archives: Elsewhere
Why JavaScript Development is Crazy
The state of Javascript development is overwhelming and confusing because everyone is over-engineering their apps by default without even realizing it. How should you start a Javascript application? Should you ever use something like React or Angular? Should you use a package manager? What do you do if you don’t? Are tests even necessary? Should …
Super Mario World Flappy Bird
Rogue One: A Star Wars Story
Rocket Launch 360: DeltaIV NROL-45
Egghead.io: Getting Started with Redux
Crystal clear video course on getting started with Redux: Managing state in an application is critical, and is often done haphazardly. Redux provides a state container for JavaScript applications that will help your applications behave consistently. In this series, we will learn the basics of Redux, so that you can start using it to simplify …
React Native Playground
AWS Lambda: Going Beyond 5 Minutes
Webpack — The Confusing Parts
When I first saw a Webpack config file, it looked very alien-y 👽 and confusing 😱. After playing around with it for some time, I now think that it is because Webpack just has a unique syntax and new philosophies that may cause confusion in the beginning. Incidentally, these philosophies are also responsible for making …
Sending/Getting messages to/from a React Native Webview
Enter react-native-webview-bridge, a JavaScript bridge between your React Native app and a WebView contained inside it: var WebViewBridge = require('react-native-webview-bridge'); const injectScript = ` (function () { if (WebViewBridge) { WebViewBridge.onMessage = function (message) { if (message === "hello from react-native") { WebViewBridge.send("got the message inside webview"); } }; WebViewBridge.send("hello from webview"); } }()); `; …
Continue reading “Sending/Getting messages to/from a React Native Webview”