I scratched my head for awhile when switching from promises to await/async. Hopefully this post helps you not need to scratch yours! š Async/await is the same as using promises. Itās just syntactical sugar to make it look synchronous. The javascript engine sees the āawaitā…
Category: Programming
We need to start by installing the oracle client appropriate for your architecture. Ā Grab the oracle instant client rpms from oracleās site. Ā Then runā¦ sudo alien –to-deb oracle-instantclient11.2-*.rpmsudo alien –to-deb oracle-instantclient11.2-*.rpm
When not specified, much of this knowledge comes from Java Script Patterns by Stoyan Stefanov, and the JavaScript Pocket Reference (3rd Edition) by David Flanagan. Ā I personally found the JavaScript Pocket Reference to be the most valuable of the two. This is by no means…
In third part of the android hello world video, we explain the different components of the application, and why things are done in a certain way.Ā This video is a bit raw.Ā However, rather than editing the videos, Iām going to try and improve my…
Part 3 ā Code Explained Okay, Iāve finished another android development demo video.Ā Sorry it took so long, I got really busy with a new computer and what not, and life in general.Ā In the next video in this series, I will explain the details…
Part 2 My intention is to make all of my android videos as simple as possible, and as short as possible. That way you can learn what you need to, and get on with it. This is a quick demo on how to get started…
Iāve started a project called LDAP Persistence API for Java, or LPA for short. It is a Java framework for interacting with LDAP entries using pure Java objects. It is based on Java annotations. It is no were near to being complete, but the query…
In this article we talk about reflection with arrays in Java. Java array reflection is not difficult, but it can be trying to figure it out without a good example. Ultimately, what I needed was a way of injecting information into an array field. Of…
I thought it may be nice for those googlers that want to know about JAXB, to have a quick working example to use.Ā So, that is the purpose of this post.
Seeing that my research project is a mini accounting system, I thought it necessary to be able to display items in a status bar, like a real application.Ā It is very slightly unfortunate that ZK doesnāt have something integrated right in for this purpose.Ā But,…