Web server in pure Java
We talk about how to create a simple web server using only native java code, no libraries and the simple interface used for these actions.
In this video we are using fetch to do a file upload. File uploads could be hard if you haven’t done it before, fetch is a new api that can simplify the process.
We talk about my experience of setting up an audio interface in Windows 7.
We will look at JBang which is a tool that could simplify your workflow with java applications. For instance you could run java programs directly from maven or github, you can create new programs in java with JBang.
We try to build a video lightbox for youtube videos. Showing thumbnails, on click open the video and play from the beginning.
I had a problem with some webservices connections timing out in our environments and I thought that the timeouts where a bit long. Most of our webservices run inline with a user request and some of the default timeouts didn’t make the cut. com.ibm.websphere.webservices.http.connectionTimeout=300 com.ibm.websphere.webservices.http.maxConnection=50 com.ibm.websphere.webservices.http.SocketTimeout=300 The settings above is the onces set in Websphere…
In this video, I will teach you how to store data with ETCD, set up an ETCD cluster, and recover from a disaster.