I have a list of software pet projects as long as my arm, game ideas I want to build, and books I want to write. How do I decide which one to do and how do I stick to it?
Read more
I have a list of software pet projects as long as my arm, game ideas I want to build, and books I want to write. How do I decide which one to do and how do I stick to it?
Read moreI’ve recently been migrating my company infrastructure from Rackspace to AWS. Part of that process has been setting up servers for my private Git source code and my Jenkins deployment pipeline. My new infrastructure is fully software defined and uses boto3 and Terraform. Part of my recent struggles have been about preparing an EBS volume […]
Read moreI’d been having a problem where I was yo-yoing backwards and forwards between CocoaPods and Xcode, each presenting a warning which once remedied would cause the other to raise a warning. The issue is around embedding Swift Libraries when working on a Swift based project. There are two settings, one deprecated EMBEDDED_CONTENT_CONTAINS_SWIFT and one more […]
Read moreJSP errors within WebSphere Commerce applications at the best of times are hard to debug, at the worst of times it is a gruelling experience searching through JSPs to find flow control structures that best match errors spat out in your logs to try and localise the problem. To prevent these issues we have to use a bit of additional thought… One tip is to always declare your beans locally.
Read moreStreams enable you to effectively develop scalable and responsive systems. Rather than using typical event handler / listener functions we can instead model events as a stream, this allows us to apply transformations and work with events (and multiple event occurrences) at a higher level.
Read moreOne of the projects I am currently working on is an eCommerce site based on WebSphere 7.0. Although I can’t go into too much detail about the project, we have been using beans (among other things) to tame the data layer, which can easily become unkept if not turn into a complete mess of code spaghetti! JSP […]
Read moreColdFusion doesn’t really have a concept of null values, ColdFusion has JavaCast( “null”, “” ) for when you want to pass a null into a Java object but what happens when your Java object returns a null?
Read moreI have been experimenting with Java libraries in CF8 and Railo to see how easy it is to load up a custom Java class in each…
Read more