ylliX - Online Advertising Network

My Decade in Review — overreacted

I started this decade as a first-year college student fresh out of high school. I was 17, didn’t have a job, didn’t have any industry connections, and really didn’t know shit. And now you’re reading my blog! I would have been proud. I’ve told bits and pieces of my story on different podcasts. Now feels […]

The Woman in the Window

Book Review Author : A. J. Finn Genre : Psychological Thriller Publisher : Harper Collins Published : January 2018 Number of Pages : 390 My Rating : 5 out of 5 The Woman in the Window is a psychological thriller by A. J. Finn. The main character, Dr. Anna Fox, suffers from severe agoraphobia and […]

Kotless, a Nice Surprise

The Kotless Serverless Framework provides desired functionality for the Kotlin ecosystem. A couple months ago I wrote an article about an idea for Kotlin “Server-less” Functions. Unbeknownst to me, JetBrains was working on a similar project called Kotless. While not precisely what I had envisioned, this project does seem promising. For more information about Kotless, […]

Year end wrap up – episode 204

Author: Perry Romanowski Published: December 30, 2019 Happy New Year! We take a look at some of the hottest trends in the beauty industry in 2019 including clean beauty, CBD, Indie beauty and waterless beauty. Then we give our predictions for the hottest trends coming in 2020. We’ll get back to answering beauty questions in […]

Mastering Embedded Linux, Part 2: Hardware

In the first part of this series, I discussed some of the core concepts surrounding embedded Linux, with the ultimate goal of empowering you to be able to build inexpensive embedded Linux systems. This part will look at some of the many, many devices you can use to develop with. I’ll also discuss some of […]

Safely accessing lateinit variables

Kotlin, by design, doesn’t allow a non-null variable to be left uninitialised during its declaration. To get past this issue, Kotlin’s lateinit allows us to declare a variable first and then initialise it some point in the future during our program’s execution cycle. The concept is simple, but when we try to access an uninitialised property, it’s […]

Building Better Views (Part I)

As iOS developers, a lot of our work involves taking models from a server, and transforming them to be displayed on an iPhone or iPad. This sounds like a job for some declarative architecture. 🤔 If you ask 3 programmers how to define MVVM, expect to get 7 different responses. — ✨ Joe Fabisevich™ ✨ […]

Building Better Views (Part II), Next Steps

If you haven’t checked out Part I, I recommend reading it because if you don’t, none of writing below will make sense! Three Unanswered Questions 1. What happens when the views you want to configure are more complex? My recommended approach is to construct a one-time use struct, specifically for displaying in that one place. […]