I thought I’d write a quick post to give an example of how to use Java’s Lambda expressions, which were introduced in Java 8. Lamdba expressions provide an easy way (and perhaps more readable, for certain people) to work with lists and arrays. This follows ideas from functional programming languages such as Haskell. Old method: […]
Category: Text Tutorials
Textual (blog based) tutorials, as opposed to video tutorials.
How to round the edges of an image with CSS
While at work today I needed to round the edges of an image using CSS, as in the image itself is square. I quickly browsed the web because I, for some reason, assumed that border-radius wouldn’t work. A lot of examples on how to round the edges of an image mention putting a div around […]