Skip to main content

Musings

Zach Saucier's thoughts

  • Personal studies

    Why personal studies?

    As humans, we want people to perceive us in the best possible way. With modern tools, particularly social media, we allow others to view small preapproved glimpses of our lives. This is the way things should be – we should have control and security over the things we post. But, like everything that affects our lives, there are consequences we don’t necessarily see when the change first occurs.

    Increasingly people focus on getting the right combination of imagery and words to present a glimpse of an experience to others rather than enjoying the full experience for themselves.

  • How to create asset loading effects

    Just show me the demo View this project on GitHub

    Today I will demonstrate how to show the loading of large image and video assets and reveal those assets using custom animations once they are finished loading.

    In order to show the asset loading process, we will have to make XHR requests for them instead of loading them the conventional way. I will also be using ProgressBar.js to make creating and animating the loaders easier.

  • The ultimate wearable

    It’s obvious: we want to enhance the way we interact with the world. Everything from virtual reality to smart watches show this trend. This isn’t a new desire, of course, but we are now on the verge of making new ways of interaction possible.

    Today I’ll focus on what I’m most excited about in this new world that is soon to come: the ever growing internet of things and our interaction with it through wearable technology. Both seek to expand our human umwelt, allowing for new and better interactions with the world that surrounds us.

  • Definition vs Description

    This is dedicated to my friend who has been supportive of me for years. As Psalms 139 says, you are fearfully and wonderfully made. Please take what I say to heart.


    I don’t care much about what describes you. I really don’t the majority of the time. And yet, I would love to get to know you better and discuss with you because I love doing so with everyone I meet.

    How can this be? Isn’t caring about who a person is necessary for good conversation?

    Absolutely! People, yourself included, are fascinating and unique and I care a whole lot about you. Going a step further, I love you as God does.

    How can you care for me but not about what describes me?

    Because I care much more about what defines you than what describes you. That which defines you influences all of the decisions you make, which lead to descriptions of you. Descriptions can change, definitions cannot without it becoming something entirely different.

  • An introduction to web animation

    Intro

    I’ve written a lot about animations, from choosing the appropriate method to limiting browser reflow, but have never made a any basic tutorial because I haven’t had much reason to. But now I see that it could be useful to get people started down the right track.

    I highly recommend checking out my post on beginning web development if you’re at all interested in learning how to program for the web. It should be quite useful to you!

    Throughout this tutorial I’ll be writing code in the post itself, but I am also making the assumption that you’ll follow along in a separate window using CodePen, a web compiler of sorts. I also assume you know a tiny bit of HTML and CSS, but if you don’t you should still be able to follow along. It’d be best to make sure you’re using a modern browser as well so we don’t have to worry as much about browser prefixes.

    Please branch off from the tutorial to test out things! That’s a great way to learn exactly what’s going on.

    Let’s get started!