Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/akalenuk/wordsandbuttons

A growing collection of interactive tutorials, demos, and quizzes about maths, algorithms, and programming.
https://github.com/akalenuk/wordsandbuttons

algorithms computational-geometry interactive-tutorials interactive-visualizations mathematics quizzes vanilla-js

Last synced: about 2 months ago
JSON representation

A growing collection of interactive tutorials, demos, and quizzes about maths, algorithms, and programming.

Awesome Lists containing this project

README

        

# Words and Buttons Online
This is the source code for [Words and Buttons Online](https://wordsandbuttons.online/) — a collection of interactive tutorials, guides, and quizzes about maths, algorithms, and programming.

_All the code is licensed under [The Unlicense](http://unlicense.org/)._

## Tags

[#algorithms](https://wordsandbuttons.online/all_algorithms.html) [#demos](https://wordsandbuttons.online/all_demos.html) [#mathematics](https://wordsandbuttons.online/all_mathematics.html) [#programming](https://wordsandbuttons.online/all_programming.html) [#quizzes](https://wordsandbuttons.online/all_quizzes.html) [#tutorials](https://wordsandbuttons.online/all_tutorials.html)

## Pages

- [A smooth and sharp image interpolation you probably haven't heard of](https://wordsandbuttons.online/a_smooth_and_sharp_image_interpolation.html) An image interpolation that gives us a continuous and smooth image, where every interpolated value only depends on the four neighboring pixel values. The image becomes smooth, but sharp features remain sharp.
[#algorithms](https://wordsandbuttons.online/all_algorithms.html) [#demos](https://wordsandbuttons.online/all_demos.html) [#mathematics](https://wordsandbuttons.online/all_mathematics.html)

- [The Real C++ Killers (Not You, Rust)](https://wordsandbuttons.online/the_real_cpp_killers.html) All the “C++ killers”, even these which I wholeheartedly love and respect like Rust, Julia, and D, help you write more features with fewer bugs, but they don't much help when you need to squeeze the very last FLOPS from the hardware you rent. As such, they don’t have a competitive advantage over C++. Or, for that matter, even over each other. Most of them, for instance, Rust, Julia, and Clang even share the same backend. You can’t win a car race if you all share the same car. So, which technologies do hold a competitive advantage over C++ or, speaking generally, all the traditional ahead-of-time compilers?
[#programming](https://wordsandbuttons.online/all_programming.html)

- [Rational interpolation](https://wordsandbuttons.online/rational_interpolation.html) Rational interpolation is a step forward from polynomial interpolation towards rational splines. With rational interpolation, you can build functions that run through a set of points and also have vertical asymptotes whenever you want. With this capability, you can now model functions like logarithms better.
[#demos](https://wordsandbuttons.online/all_demos.html) [#mathematics](https://wordsandbuttons.online/all_mathematics.html)

- [Either your estimates suck or your job does](https://wordsandbuttons.online/either_your_estimates_suck_or_your_job_does.html) This page uses polynomial modeling to show why software engineering tasks are often impossible to estimate.
[#mathematics](https://wordsandbuttons.online/all_mathematics.html) [#programming](https://wordsandbuttons.online/all_programming.html)

- [Static typing isn’t free. Where do you think the C++ angry mob comes from?](https://wordsandbuttons.online/static_typing_isnt_free.html) Type inference works like logic deduction so any program in a statically typed language is two programs. The first one is the thing you sell, and the second – is a model that undergoes some sort of verification every time you run a compiler. This second program, although, often being written unknowingly, is not a free bonus, it’s something you have to pay for in several ways.
[#programming](https://wordsandbuttons.online/all_programming.html) [#tutorials](https://wordsandbuttons.online/all_tutorials.html)

- [Check if your performance intuition still works with CUDA](https://wordsandbuttons.online/check_if_your_performance_intuition_still_works_with_cuda.html) An interactive quiz about microoptimizations in CUDA. 10 rounds, two pieces of code per each, you get to guess which is the faster.
[#programming](https://wordsandbuttons.online/all_programming.html) [#quizzes](https://wordsandbuttons.online/all_quizzes.html)

- [A picture is worth a thousand tags](https://wordsandbuttons.online/a_picture_is_worth_a_thousand_tags.html) This shows how a picture can be turned into an HTML table. With this, you can not only have nicer tables or uglier pictures, but you can have something that is both at the same time.
[#demos](https://wordsandbuttons.online/all_demos.html)

- [Redundant stories about redundancy](https://wordsandbuttons.online/redundant_stories_about_redundancy.html) Component redundancy is used heavily in safety-critical and mission-critical systems for reliability improvement. But outside this niche, it's surprisingly little known in the world of software. Which is a shame since it's a simple but economical idea. It costs nothing to keep in mind, and it saves you a lot on hotfixes and emergency repairs.
[#programming](https://wordsandbuttons.online/all_programming.html)

- [Challenge your performance intuition with C++ sine](https://wordsandbuttons.online/challenge_your_performance_intuition_with_cpp_sine.html) One more interactive quiz. This time, it's all about the sine function. Which one is faster and when?
[#programming](https://wordsandbuttons.online/all_programming.html) [#quizzes](https://wordsandbuttons.online/all_quizzes.html)

- [Complex numbers and conformal mapping](https://wordsandbuttons.online/complex_numbers_and_conformal_mapping.html) This explains the geometry of complex numbers. Explains conformal transformations, introduces analytic functions, and shows that analytic complex functions are conformal. And using the connection between the geometry and the analysis explains it all in just some five minutes.
[#mathematics](https://wordsandbuttons.online/all_mathematics.html) [#tutorials](https://wordsandbuttons.online/all_tutorials.html)

- [Lagrange polynomial as a gateway drug to basis splines](https://wordsandbuttons.online/lagrange_polynomial_as_a_gateway_drug_to_basis_splines.html) This explains Lagrange interpolation: what is the Lagrange polynomial, why does it run through all the points, what is the basis polynomial, and how come it's a polynomial in the first place.
[#mathematics](https://wordsandbuttons.online/all_mathematics.html) [#tutorials](https://wordsandbuttons.online/all_tutorials.html)

- [Trippy polynomials in arctangent scale](https://wordsandbuttons.online/trippy_polynomials_in_arctangent_scale.html) This shows the global properties of polynomials, their derivatives, and explains how the Maclaurine and Taylor series work all with animated plots in arctangent scale.
[#mathematics](https://wordsandbuttons.online/all_mathematics.html) [#tutorials](https://wordsandbuttons.online/all_tutorials.html)

- [Partial order and non-Boolean logic](https://wordsandbuttons.online/partial_order_and_non_boolean_logic.html) Non-Boolean logics are rare but not extinct. Interval logic is one example. Sometimes, you can implement a logic you want within total order or partial order but sometimes even that isn't enough and you need an even more general relation. With operator overloading, you have the freedom to go there but you also have less assurance when working within the total order.
[#mathematics](https://wordsandbuttons.online/all_mathematics.html) [#tutorials](https://wordsandbuttons.online/all_tutorials.html)

- [Yet another alternative to floating-point numbers](https://wordsandbuttons.online/yet_another_alternative_to_floating_point_numbers.html) This shows how computable intervals written in rational bounds may not only account for the input error but keep computational error under control as well.
[#mathematics](https://wordsandbuttons.online/all_mathematics.html) [#programming](https://wordsandbuttons.online/all_programming.html) [#quizzes](https://wordsandbuttons.online/all_quizzes.html)

- [Why is it ok to divide by 0.0?](https://wordsandbuttons.online/why_is_it_ok_to_divide_by_0_0.html) This explains why dividing by zero in floating-point numbers is ok.
[#mathematics](https://wordsandbuttons.online/all_mathematics.html) [#programming](https://wordsandbuttons.online/all_programming.html)

- [Can we use lemniscates for ultra-cheap vector graphics?](https://wordsandbuttons.online/can_we_use_lemniscates_for_ultra_cheap_vector_gaphics.html) This depicts an old idea of using multifocal lemniscates to draw arbitrary shapes. In some applications, this may be indeed an economical alternative to splines.
[#demos](https://wordsandbuttons.online/all_demos.html) [#mathematics](https://wordsandbuttons.online/all_mathematics.html)

- [Bi-whatever transformations](https://wordsandbuttons.online/biwhatever_transformations.html) An interactive explanation of how polynomial transformations such as trilinear or biquadratic or even linear-cubic work, and how to craft your own.
[#demos](https://wordsandbuttons.online/all_demos.html) [#mathematics](https://wordsandbuttons.online/all_mathematics.html)

- [Arctangent scale. It's like the logarithmic scale but infinite](https://wordsandbuttons.online/arctangent_scale_its_like_the_logarithmic_scale_but_infinite.html) An interactive demo of how, with arctangent used as a scale, we can show any function on a screen. And not just a fragment of it but the whole function.
[#demos](https://wordsandbuttons.online/all_demos.html) [#mathematics](https://wordsandbuttons.online/all_mathematics.html)

- [Image darning](https://wordsandbuttons.online/image_darning.html) A simple image processing algorithm that cleans up dirt stains from old newspapers. I called it “darning” because of how it works.
[#algorithms](https://wordsandbuttons.online/all_algorithms.html) [#demos](https://wordsandbuttons.online/all_demos.html) [#mathematics](https://wordsandbuttons.online/all_mathematics.html)

- [Error codes are not numbers. But they are. Can we exploit that?](https://wordsandbuttons.online/error_codes_are_not_numbers_but_they_are_can_we_exploit_that.html) An interactive explanation of how we can use floating-point NaNs as error code holders in C++.
[#demos](https://wordsandbuttons.online/all_demos.html) [#mathematics](https://wordsandbuttons.online/all_mathematics.html) [#programming](https://wordsandbuttons.online/all_programming.html)

- [Binary search](https://wordsandbuttons.online/binary_search.html) An interactive demo of the binary search algorithm along with its one slightly more obscure but promising variant.
[#algorithms](https://wordsandbuttons.online/all_algorithms.html) [#tutorials](https://wordsandbuttons.online/all_tutorials.html)

- [Honeycomb texture generator](https://wordsandbuttons.online/honeycomb_texture_generator.html) This generates honeycomb textures of a special quasi-irrational form. Explanation included.
[#demos](https://wordsandbuttons.online/all_demos.html) [#mathematics](https://wordsandbuttons.online/all_mathematics.html)

- [Sine and cosine](https://wordsandbuttons.online/sine_and_cosine.html) A pair of interactive mnemonics for sine and cosine. There are also examples of practical usage. Basically, the second half of a tutorial is about how the first half was made.
[#mathematics](https://wordsandbuttons.online/all_mathematics.html) [#tutorials](https://wordsandbuttons.online/all_tutorials.html)

- [Challenge your performance intuition with nanosecond sorting](https://wordsandbuttons.online/challenge_your_performance_intuition_with_nanosecond_sorting.html) And yet another interactive quiz where you get to estimate the performance difference between several variants of the same code.
[#programming](https://wordsandbuttons.online/all_programming.html) [#quizzes](https://wordsandbuttons.online/all_quizzes.html)

- [SWInE: Simplicial Weight Interpolation and Extrapolation](https://wordsandbuttons.online/swine_simplicial_weight_interpolation_and_extrapolation.html) An alternative to splines nobody knows about. The localization of Shepard's method for a simplicial complex.
[#demos](https://wordsandbuttons.online/all_demos.html) [#mathematics](https://wordsandbuttons.online/all_mathematics.html)

- [Quadratic splines are useful too](https://wordsandbuttons.online/quadratic_splines_are_useful_too.html) This explains simple quadratic splines, how to craft one yourself, and why.
[#demos](https://wordsandbuttons.online/all_demos.html) [#mathematics](https://wordsandbuttons.online/all_mathematics.html)

- [Circles and lines vs. polynomial splines](https://wordsandbuttons.online/circles_and_lines_vs_polynomial_splines.html) An alternative to polynomial splines. Smooth parametric curves made from arcs and line segments.
[#demos](https://wordsandbuttons.online/all_demos.html) [#mathematics](https://wordsandbuttons.online/all_mathematics.html)

- [SymPy makes math fun again](https://wordsandbuttons.online/sympy_makes_math_fun_again.html) An introduction into symbolic computations in Python. Don't worry, it's much simpler than it sounds. It's about making Python do your math for you with very little investment in the technology.
[#mathematics](https://wordsandbuttons.online/all_mathematics.html) [#programming](https://wordsandbuttons.online/all_programming.html) [#tutorials](https://wordsandbuttons.online/all_tutorials.html)

- [Yet another floating-point tutorial](https://wordsandbuttons.online/yet_another_floating_point_tutorial.html) Most of what you should know about floating-point numbers put together in an interactive tutorial with quests and puzzles.
[#mathematics](https://wordsandbuttons.online/all_mathematics.html) [#programming](https://wordsandbuttons.online/all_programming.html) [#tutorials](https://wordsandbuttons.online/all_tutorials.html)

- [Lexical differential highlighting instead of syntax highlighting](https://wordsandbuttons.online/lexical_differential_highlighting_instead_of_syntax_highlighting.html) This type of highlighting is ideal for assembly. With it, the things that shouldn't seem similar usually don't.
[#demos](https://wordsandbuttons.online/all_demos.html) [#programming](https://wordsandbuttons.online/all_programming.html)

- [Interactive mnemonics for dot and cross vector products](https://wordsandbuttons.online/interactive_mnemonics_for_dot_and_cross_vector_products.html) Just a pair of mnemonics for dot and cross vector products. They present the functions, show how they work, and why one is dot and the other is cross.
[#mathematics](https://wordsandbuttons.online/all_mathematics.html) [#tutorials](https://wordsandbuttons.online/all_tutorials.html)

- [Simple image vectorization](https://wordsandbuttons.online/simple_image_vectorization.html) This is an example of an image vectorization algorithm. It shows the bilinear interpolation, polynomial approximation, differential analysis, and iterative algorithms working together to solve a practical problem
[#algorithms](https://wordsandbuttons.online/all_algorithms.html) [#demos](https://wordsandbuttons.online/all_demos.html) [#mathematics](https://wordsandbuttons.online/all_mathematics.html)

- [The simplest possible smooth contouring algorithm](https://wordsandbuttons.online/the_simplest_possible_smooth_contouring_algorithm.html) A 3-part smooth contouring algorithm that shows partial derivatives, gradients, and parametric polynomials working together.
[#algorithms](https://wordsandbuttons.online/all_algorithms.html) [#demos](https://wordsandbuttons.online/all_demos.html) [#mathematics](https://wordsandbuttons.online/all_mathematics.html)

- [Using logical operators for logical operations is good](https://wordsandbuttons.online/using_logical_operators_for_logical_operations_is_good.html) This is the follow-up for the “Challenge your intuition with C++ operators”. It shows that despite the occasional gains from a better compilation, using the proper operators is still beneficial in the long run.
[#programming](https://wordsandbuttons.online/all_programming.html) [#quizzes](https://wordsandbuttons.online/all_quizzes.html)

- [Challenge your performance intuition with C++ operators](https://wordsandbuttons.online/challenge_your_performance_intuition_with_cpp_operators.html) Another interactive quiz where you get to estimate the performance difference between several variants of the same code.
[#programming](https://wordsandbuttons.online/all_programming.html) [#quizzes](https://wordsandbuttons.online/all_quizzes.html)

- [Fortran is still a thing](https://wordsandbuttons.online/fortran_is_still_a_thing.html) A short essay about Fortran in the modern world.
[#programming](https://wordsandbuttons.online/all_programming.html)

- [Why Erlang is among the few true computer languages](https://wordsandbuttons.online/why_erlang_is_among_the_few_true_computer_languages.html) Usually, a language is something that is used for bilateral communication. For programming languages, this is often untrue. Erlang shows how this can be achieved still.
[#programming](https://wordsandbuttons.online/all_programming.html)

- [If I were to invent a programming language for the 21st century](https://wordsandbuttons.online/if_i_were_to_invent_a_programming_language_for_the_21st_century.html) A short essay about the evolution of programming languages.
[#programming](https://wordsandbuttons.online/all_programming.html)

- [A cheap trick to speed up recursion in C++](https://wordsandbuttons.online/cheap_trick_to_speed_up_recursion_in_cpp.html) More often than not, recursion is not your performance problem, to begin with. But even if it is, you can often avoid recursion altogether. When for some reason you can't, this trick helps.
[#demos](https://wordsandbuttons.online/all_demos.html) [#programming](https://wordsandbuttons.online/all_programming.html)

- [Polynomial approximation and interpolation](https://wordsandbuttons.online/polynomial_approximation_and_interpolation.html) This explains approximation and interpolation, how to use polynomials for that, and how to make both concepts work together.
[#mathematics](https://wordsandbuttons.online/all_mathematics.html) [#tutorials](https://wordsandbuttons.online/all_tutorials.html)

- [Interactive explanation of marching cubes and dual contouring](https://wordsandbuttons.online/interactive_explanation_of_marching_cubes_and_dual_contouring.html) Marching cubes and dual contouring are often used for mesh generation. This explanation shows how they work, what are their differences, similarities, and limitations.
[#algorithms](https://wordsandbuttons.online/all_algorithms.html) [#mathematics](https://wordsandbuttons.online/all_mathematics.html) [#tutorials](https://wordsandbuttons.online/all_tutorials.html)

- [Logic programming in C++](https://wordsandbuttons.online/logic_programming_in_cpp.html) This shows that there is an invisible Prolog in every C++ compiler. It's up to you what to do with it but it's there.
[#programming](https://wordsandbuttons.online/all_programming.html) [#tutorials](https://wordsandbuttons.online/all_tutorials.html)

- [Tries as the evolution of nothing](https://wordsandbuttons.online/tries_as_the_evolution_of_nothing.html) Trie is a data structure. Like “tree” but different. This tutorial explains the concept behind the trie, what makes it efficient, and when.
[#algorithms](https://wordsandbuttons.online/all_algorithms.html) [#programming](https://wordsandbuttons.online/all_programming.html) [#tutorials](https://wordsandbuttons.online/all_tutorials.html)

- [Programmer's guide to linear equations](https://wordsandbuttons.online/programmers_introduction_to_linear_equations.html) This is an introduction to linear equation systems. It explains linear dependency, under- and over-specification, direct and iterative solvers. The guide should give you enough knowledge to find a proper solution for your task but not enough to implement one efficiently yourself.
[#mathematics](https://wordsandbuttons.online/all_mathematics.html) [#tutorials](https://wordsandbuttons.online/all_tutorials.html)

- [Estimating floating-point error the easy way](https://wordsandbuttons.online/estimating_floating_point_error_the_easy_way.html) An explanation of how to measure computational error while working with floating-point numbers, and why.
[#demos](https://wordsandbuttons.online/all_demos.html) [#mathematics](https://wordsandbuttons.online/all_mathematics.html) [#programming](https://wordsandbuttons.online/all_programming.html)

- [APL deserves its renaissance too](https://wordsandbuttons.online/apl_deserves_its_renaissance_too.html) APL tutorial explaining the meaning of life←{↑1 ⍵∨.∧3 4=+/,¯1 0 1∘.⊖¯1 0 1∘.⌽⊂⍵}
[#programming](https://wordsandbuttons.online/all_programming.html) [#tutorials](https://wordsandbuttons.online/all_tutorials.html)

- [NURBS is just an acronym](https://wordsandbuttons.online/nurbs_is_just_an_acronym.html) NURBS stands for the non-uniform rational basis spline. There are three separate concepts. This guide walks you through these concepts one by one.
[#mathematics](https://wordsandbuttons.online/all_mathematics.html) [#tutorials](https://wordsandbuttons.online/all_tutorials.html)

- [Playing a game of chance with C++ inline keyword](https://wordsandbuttons.online/playing_a_game_of_chance_with_cpp_inline_keyword.html) It's about one particular aspect of C++ compilation that makes programming with the “inline” into a game of chance.
[#programming](https://wordsandbuttons.online/all_programming.html)

- [How much math can you do in 10 lines of Python](https://wordsandbuttons.online/how_much_math_can_you_do_in_10_lines_of_python.html) An interactive introduction into concise Python / basic linear algebra.
[#mathematics](https://wordsandbuttons.online/all_mathematics.html) [#programming](https://wordsandbuttons.online/all_programming.html)

- [Outperforming everything with anything](https://wordsandbuttons.online/outperforming_everything_with_anything.html) A 100 lines of Python code that substitute the compiler front-end for a specific computation. This shows that you don't need a “fast” compiling language to write efficient code. In fact, a compilation is only one of the multiple ways to achieve speed.
[#demos](https://wordsandbuttons.online/all_demos.html) [#programming](https://wordsandbuttons.online/all_programming.html)

- [Programmer's guide to polynomials and splines](https://wordsandbuttons.online/programmers_guide_to_polynomials_and_splines.html) This is a brief introduction into polynomials. From how to make a polynomial run through your set of points to how to make it into a spline.
[#mathematics](https://wordsandbuttons.online/all_mathematics.html) [#tutorials](https://wordsandbuttons.online/all_tutorials.html)

- [Vastly outperforming LAPACK with C++ metaprogramming](https://wordsandbuttons.online/vastly_outperforming_lapack_with_cpp_metaprogramming.html) Still not really about LAPACK. It's a second part of the “outperforming” series explaining how the C++ metaprogramming can appear useful for efficient code generation.
[#demos](https://wordsandbuttons.online/all_demos.html) [#programming](https://wordsandbuttons.online/all_programming.html)

- [Outperforming LAPACK with C metaprogramming](https://wordsandbuttons.online/outperforming_lapack_with_c_metaprogramming.html) Ok, it's not really about LAPACK. You can consider it clickbait if you wish. It's about how to tell a compiler to write the code you want with a limited arsenal of tools the C language provides.
[#demos](https://wordsandbuttons.online/all_demos.html) [#programming](https://wordsandbuttons.online/all_programming.html)

- [Can you tell an assembly language when you see one?](https://wordsandbuttons.online/can_you_tell_an_assembly_language_when_you_see_one.html) An interactive quiz featuring several obscure high-level languages and assembly variants.
[#programming](https://wordsandbuttons.online/all_programming.html) [#quizzes](https://wordsandbuttons.online/all_quizzes.html)

- [Mathematical analysis explained with Python, blood, and TNT](https://wordsandbuttons.online/mathematical_analysis_explained_with_python_blood_and_tnt.html) A brief introduction to mathematical analysis with a little SymPy on the side. The page explains how to disassemble a function, and how to assemble it back from the derivatives.
[#mathematics](https://wordsandbuttons.online/all_mathematics.html) [#tutorials](https://wordsandbuttons.online/all_tutorials.html)

- [Even if you can't write assembly like a poet, you can read disassembly like a hunter](https://wordsandbuttons.online/you_dont_have_to_learn_assembly_to_read_disassembly.html) This is a very concise introduction to x86 disassembly. It shows that you probably have all the skills to start reading disassembly right now even if you thought it was too complicated for you. It really isn't, see it for yourself.
[#programming](https://wordsandbuttons.online/all_programming.html) [#tutorials](https://wordsandbuttons.online/all_tutorials.html)

- [An interactive introduction to iterative algorithms](https://wordsandbuttons.online/interactive_introduction_to_iterative_algorithms.html) An interactive explanation of how iterative algorithms work. This explains convergence and the exit condition problem on an oversimplified linear system solver.
[#algorithms](https://wordsandbuttons.online/all_algorithms.html) [#demos](https://wordsandbuttons.online/all_demos.html) [#mathematics](https://wordsandbuttons.online/all_mathematics.html)

- [Challenge your performance intuition with C++ magic squares](https://wordsandbuttons.online/challenge_your_performance_intuition_with_cpp_magic_squares.html) An interactive quiz where you get to estimate the performance difference between several variants of the same code.
[#programming](https://wordsandbuttons.online/all_programming.html) [#quizzes](https://wordsandbuttons.online/all_quizzes.html)

- [Interactive guide to homogeneous coordinates](https://wordsandbuttons.online/interactive_guide_to_homogeneous_coordinates.html) This interactive guide shows how homogeneous coordinates actually make programming geometry simpler and not more complicated. The page explains the extra coordinate, matrices, and generalized transformations. Most of what you need to know about projective geometry as a practicing programmer is here.
[#mathematics](https://wordsandbuttons.online/all_mathematics.html) [#tutorials](https://wordsandbuttons.online/all_tutorials.html)

- [So you think you know C?](https://wordsandbuttons.online/so_you_think_you_know_c.html) It's a C test. If you think you know C, take this test. It only has 5 questions.
[#programming](https://wordsandbuttons.online/all_programming.html) [#quizzes](https://wordsandbuttons.online/all_quizzes.html)

- [Learn you a Lisp in 0 minutes](https://wordsandbuttons.online/learn_you_a_lisp_in_0_minutes.html) A short quiz to reveal your hidden knowledge of Lisp.
[#programming](https://wordsandbuttons.online/all_programming.html) [#quizzes](https://wordsandbuttons.online/all_quizzes.html)

## See also

- Interactive visual explanations of math and algorithms, with motivating examples from computer games.
[https://www.redblobgames.com/](https://www.redblobgames.com/)
- The world's first linear algebra book with fully interactive figures.
[http://immersivemath.com/ila/index.html](http://immersivemath.com/ila/index.html)
- The Textbook of the Future. Interactive. Personalised. Free.
[https://mathigon.org/](https://mathigon.org/)
- Structure and Interpretation of Computer Programs. Interactive Version
[https://xuanji.appspot.com/isicp/](https://xuanji.appspot.com/isicp/)
- An Interactive Introduction to Fourier Transforms
[http://www.jezzamon.com/fourier/index.html](http://www.jezzamon.com/fourier/index.html)
- Clear, intuitive lessons about imaginary numbers, exponents, and more.
[https://betterexplained.com/](https://betterexplained.com/)
- An Interactive Introduction To Quantum Computing
[http://davidbkemp.github.io/QuantumComputingArticle/](http://davidbkemp.github.io/QuantumComputingArticle/)
- The website of Martin O'Leary artist, designer, teacher, researcher.
[http://mewo2.com/](http://mewo2.com/)
- A Visual and Interactive Guide to the Basics of Neural Networks
[https://jalammar.github.io/visual-interactive-guide-basics-neural-networks/](https://jalammar.github.io/visual-interactive-guide-basics-neural-networks/)
- Interactive demos on network theory, game theory, trust etc.
[https://ncase.me/](https://ncase.me/)
- An interactive explanation of curves and surfaces
[https://ciechanow.ski/curves-and-surfaces/](https://ciechanow.ski/curves-and-surfaces/)
- Introduction to geometric algebra — an invertible vector product and the implication of having one.
[https://mattferraro.dev/posts/geometric-algebra](https://mattferraro.dev/posts/geometric-algebra)
- Interactive visualizations for different topics from physics and mathematics. Includes trigonometry, polynomial regression, and Bézier splines
[https://visualize-it.github.io/](https://visualize-it.github.io/)
- Assorted tutorials on computer graphics, size coding, and maths. Includes a mini-library of signed distance functions.
[https://www.iquilezles.org/www/index.htm](https://www.iquilezles.org/www/index.htm)
- A free, online book for when you really need to know how to do Bézier things.
[https://pomax.github.io/bezierinfo/#explanation](https://pomax.github.io/bezierinfo/#explanation)
- A visual overview of commonly used creative coding related techniques and algorithms.
[https://www.notion.so/Creative-coding-algorithms-techniques-c5550ef2f7574126bdc77b09ed76651b](https://www.notion.so/Creative-coding-algorithms-techniques-c5550ef2f7574126bdc77b09ed76651b)
- A Visual and Interactive Introduction to Complex Analysis.
[https://complex-analysis.com/](https://complex-analysis.com/)
- A collection of visualisation on linear algebra and geometry.
[https://intuitive-math.club/](https://intuitive-math.club/)
- Sublucid Geometry — a place for uncommon knowledge.
[https://zalo.github.io/](https://zalo.github.io/)
- An interactive introduction to splines by Evgeny Demidov.
[https://www.ibiblio.org/e-notes/Splines/Intro.htm](https://www.ibiblio.org/e-notes/Splines/Intro.htm)
- An Interactive Introduction to Rotors from Geometric Algebra by Marc ten Bosch.
[https://marctenbosch.com/quaternions/](https://marctenbosch.com/quaternions/)
- Interactive Linear Algebra by Dan Margalit and Joseph Rabinoff from Georgia Institute of Technology.
[https://textbooks.math.gatech.edu/ila/index.html](https://textbooks.math.gatech.edu/ila/index.html)
- An interactive explanation of half-edge data structures by Jerry Yin and Jeffrey Goh.
[https://jerryyin.info/geometry-processing-algorithms/half-edge/](https://jerryyin.info/geometry-processing-algorithms/half-edge/)
- Hypermedia Image Processing Reference is a great free online resource if you want to learn more about image processing.
[https://homepages.inf.ed.ac.uk/rbf/HIPR2/hipr_top.htm](https://homepages.inf.ed.ac.uk/rbf/HIPR2/hipr_top.htm)
- A comprehensive interactive explanation of JPEG by Omar Shehata. 
[https://parametric.press/issue-01/unraveling-the-jpeg/](https://parametric.press/issue-01/unraveling-the-jpeg/)
- Andrei Ciobanu explores some aspects of Fourier Mathematics in order to “approximate” real-world shapes using complex sinusoids.[https://www.andreinc.net/2024/04/24/from-the-circle-to-epicycles](https://www.andreinc.net/2024/04/24/from-the-circle-to-epicycles)