Matt Ryan

Matt Ryan @mattryanmtl

About: They have the internet on computers now?

Location:
Montreal
Joined:
Aug 3, 2020

Matt Ryan
articles - 84 total

James Webb Image Gallery

What I Built For the Netlify Challenge, I decided to use my limited time to submit a...

Learn More 3 4May 12 '24

Glam Up My Markup: Earth Day Celebration Landing Page

What I Built My primary goal was to create an engaging and educational landing page with...

Learn More 0 0Apr 28 '24

⚽ FootBot

What I Built FootBot is an AI-driven bot designed to keep football enthusiasts connected...

Learn More 3 1Apr 22 '24

Dev Easter

Inspiration Since the first Dev community challenge ends on Easter, I decided to make my...

Learn More 7 2Mar 31 '24

Glam Up My Markup: Camp Activities

What I Built I enhanced the provided form with several dynamic and interactive features...

Learn More 2 0Mar 28 '24

One Byte Explainer: Canvas API

Explainer The Canvas API enables drawing and animating graphics via JavaScript in a...

Learn More 2 0Mar 27 '24

Advocating for Gender Equity and Diversity in the Tech Industry

In the rapidly evolving tech industry, diversity and gender equity are not just moral imperatives but...

Learn More 8 3Mar 18 '24

Testing in JavaScript: Best Practices and Tools

Whether you're a seasoned developer or just starting out, understanding how to test your code...

Learn More 5 0Dec 11 '23

JavaScript Essentials: A Beginner's Guide to Data Structures and Algorithms

If you're looking to get your JavaScript skills to the next level, you're in the right place. Let's...

Learn More 91 13Dec 5 '23

Getting Started with Docker: Containerization Made Easy 🐳

Welcome to the world of Docker! If you've heard the buzz about containerization and are wondering...

Learn More 2 1Nov 29 '23

🚀 35 Must-Have Visual Studio Code Plugins for Developers

Visual Studio Code (VS Code) is a powerful, extensible code editor used by millions of developers....

Learn More 17 5Nov 10 '23

Hacktober23 Contributions

Intro This is my 5th Hacktoberfest. This year I kept it simple, contributing to some...

Learn More 1 0Oct 19 '23

10 Bad Habits That Can Slow Down Your JavaScript Applications 🐌

If your app feels more like a lumbering tortoise than a sprightly hare, it might be time to look for...

Learn More 48 7Oct 18 '23

Hacktoberfest Pledge

For Hacktoberfest 2023, I pledge to make meaningful PRs. I want to focus on open-source projects that...

Learn More 0 0Oct 2 '23

Comprehensive Overview of 15 JavaScript Frameworks

A JavaScript framework is a pre-written collection of JavaScript code that provides a structured and...

Learn More 1 0Jun 20 '23

Exploring JavaScript Array Methods

JavaScript, as one of the most popular programming languages, offers a rich set of built-in methods...

Learn More 6 3Jun 3 '23

Making a Network Request with Asynchronous JavaScript

A network request is a message sent from one computer or device to another over a network, such as...

Learn More 1 0Mar 14 '23

What is a Promise Callback

A Promise callback is a function that is passed as an argument to the Promise constructor or to the...

Learn More 1 0Mar 7 '23

Web Animations API

Web Animations API is a JavaScript API that provides a standardized approach to creating and...

Learn More 2 0Mar 6 '23

Form Validation with Asynchronous JavaScript

Form validation with Asynchronous JavaScript is a common task in modern web applications. Form...

Learn More 5 0Mar 3 '23

How to use Regex with Python

Regular expressions, commonly known as regex, are powerful tools for matching patterns in text data....

Learn More 0 0Feb 28 '23

Fibonacci Day!

Fibonacci Day is celebrated today, on November 23, because the date formation of today is 11/23 (1,...

Learn More 2 0Nov 23 '22

Print Image Dimensions on Upload

First we need a simple HTML input: <input type="file" id="file" /> Enter fullscreen...

Learn More 3 0Nov 11 '22

Day 48: AVL Tree

public class Day48 { private Node root; private class Node { private int key;...

Learn More 6 0Apr 1 '21

Day 47: Binary Search Tree

Constructor: public BinarySearchTree() { root = null; } Enter fullscreen mo...

Learn More 6 0Mar 27 '21

Day 46: Sudoku Generator

public class SudokuGenerator { public SudokuGenerator(int dim) { int[] topSeed = new int...

Learn More 5 0Mar 24 '21

Day 45: Phonebook

Phone book dictionary with 5 names and phone numbers. Asks the user to enter a name and it will try t...

Learn More 4 0Mar 20 '21

Day 44: React Currency Converter

class App extends React.Component { render() { return /*#__PURE__*/( React.createElemen...

Learn More 7 0Mar 19 '21

Day 43: Twitter Auto-reply

import tweepy import logging from config import create_api import time logging.basicConfig(level=lo...

Learn More 8 0Mar 17 '21

Day 42: Tip Calculator

Import the math module. also a quick fix for potential errors in python 2. import math try: input...

Learn More 7 0Mar 16 '21