Quantum Security in KPN (AllDay DevOps 2017, Jaya Baloo)
jump to minute 11.50 where Jaya starts speaking.You don't have to understand everything, but it's good to have a glimpse of the...
View ArticleStackOverlords of the world, Unite!
As already noticed for Wikipedia http://www.javamonamour.org/2013/07/wikilosers-get-life.html it seems to me that also StackOverflow attracts fascist administrators, who blindly close questions of...
View ArticleCentOS 7 install Python 3
CentOS 7 comes with some old version of Python 2 - which is going EOL in a couple of years.Also, Django recommends Python 3 https://www.djangoproject.com/download/#this will probably install a new...
View ArticleDjango getting started
sudo pip3.6 install Django==1.11.7follow the instructions https://docs.djangoproject.com/en/1.11/intro/tutorial01/cd ~vi .bash_profileinsert this line:alias python=python3.6source...
View ArticleBottle getting started
Looking for an alternative to Django... Apparently webpy is basically dead. Bottle seems to be alive, and ported to Python 3http://bottlepy.org/docs/dev/index.htmlsudo pip3.6 install bottlepythonpaste...
View ArticleJira on Docker, and integration with BitBucket/Github
https://hub.docker.com/r/cptactionhank/atlassian-jira/sudo docker run --detach --publish 8080:8080...
View ArticlePrimefaces Showcase
no better way to learn Primefaces as to use their showcasehttps://github.com/primefaces/showcasegit clone https://github.com/primefaces/showcase.gitcd showcasegit checkout tags/6_1mvn clean packagemvn...
View ArticleJava 9 modules unveiled
Presentation by Mark Reinhold - author of most documentation in openJDK http://openjdk.java.net/projects/jigsaw/On CentOS 7, to install Java 9:wget --no-cookies --no-check-certificate --header "Cookie:...
View ArticleWhat is new in Java 9
You will be able to impress women at parties with the knowledge you gain in this EXCELLENT presentation by Simon RitterJava9 documentation here https://docs.oracle.com/javase/9/
View ArticlePrimefaces gmap
<h:head><script src="http://maps.google.com/maps/api/js?sensor=false" type="text/javascript"></script><p:gmap center="41.381542, 2.122893" zoom="15" type="HYBRID"...
View ArticleWebSockets on WildFly and Eclipse
I have followed this (messy) tutorial, and eventually I have made it work on Wildfly - after a long...
View ArticleAdam Bien on Lambda and Runnable
Java 8 Basics: Method References from AdamBien on Vimeo.This is my code:public class TestRun { public static void main(String[] args) { TestRun testRun = new TestRun(); testRun.method1();...
View ArticleAnother poorly implemented feature of Eclipse: repository search
Eclipse is a champion at implementing in an extremely unappealing and inefficient way even the simplest feature.Window/Show view/ Maven Repository, right click on central , "Full Index Enabled". Then...
View ArticleSwiss-German resources
http://www.eldrid.ch/swgerman.htmhttps://www.e-erni.com/swiss-german.htmlhttps://www.e-erni.com/how-are-you.htmlhttps://www.swiss-german-online.com/lessons.htmlhttps://www.memrise.com/courses/english/s...
View ArticleNetbeans rocks, Eclipse sucks
With Eclipse, setting up a simple Web Application with JSF and deploying it to Wildfly is a long, frustrating struggle.With Netbeans, it takes 10 seconds.File / New Project, Java Web / Web Application,...
View ArticleJSF facelets, composition, layouts, templates
https://docs.oracle.com/javaee/7/javaserver-faces-2-2/vdldocs-facelets/toc.htm this is the Facelets documentationand this...
View ArticleMojarra 2.2.13.SP4 in Wildfly 11 debugging
I get a message "The form component needs to have a UIForm in its ancestry. Suggestion: enclose the necessary components within <h:form>". After some mucking (basically, exclude stuff and see if...
View ArticleWebSockets client-server example
Server-side:annotate a POJO with javax.websocket.server.ServerEndpointA method annotated with javax.websocket.OnOpen will handle the creation of a javax.websocket.SessionAnother method handles the...
View Articledocker-compose
Install docker-compose on CentOS. Digital Ocean tutorials are very good:https://www.digitalocean.com/community/tutorials/how-to-install-and-use-docker-compose-on-centos-7sudo yum install...
View ArticleWebSockets and JSONDecoder in Wildfly 11
import java.io.Serializable;import java.net.URI;import javax.enterprise.event.Event;import javax.inject.Inject;import javax.websocket.ClientEndpoint;import javax.websocket.CloseReason;import...
View Article