Home

Articles (6)

Finding the equation of a curve formed by lines (~ 6 min)

drawing with lines only that form curves

My sister had to do some artwork for school, and she decided to make some curved shapes out of lines. It looks pretty cool (although it would have been even better with pencil I think, but she wouldn’t listen, and I’m too lazy to do it myself right now), and making curves out of just lines, well, I find that pretty fancy. But I wondered what the curves actually were… Circles? Parabolas? Ellipses? Something different?

Read more →

Motion and calculus (~ 3 min)

If you studied physics, one of the first things you probably did was graph the “motion” of objects. That is the displacement, velocity, and acceleration at an instant t. Didn’t it remind you of a mathematical concept?

Read more →

Length of a curve (~ 3 min)

After misunderstanding a question in physics, I thought I had to calculate the length of a curved trajectory (ie. the distance) instead of just the straight line (ie. the displacement). Turns out it was the easy option, but I now wanted to know how to get the length of a curve. I mean, it’d just be summing up an infinite number of straight lines, which is almost exactly what integration is…

Read more →

How to combine svgs (~ 2 min)

If you want your website to be fast, you should limit the number of http requests. A great way of doing that is combining your images. If you use SVGS for your icons and stuff like that, here’s how you can combine all your icon in one big file, and use them in your website!

Read more →

Bash's find command (~ 6 min)

The find command in bash is quite powerful, and knowing the basics might save you some scripting.

What does it do? It “finds” files. By default, it outputs their path relative to where you ran find. But, in addition of providing you with advanced “filters” it actually allows you to run commands on each of those files.

Read more →