Skip to content

Instantly share code, notes, and snippets.

View josh-gree's full-sized avatar

Joshua Greenhalgh josh-gree

View GitHub Profile
@josh-gree
josh-gree / index.html
Created April 13, 2021 20:36
YANKEE CANDLE.
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js">
</script>
<header id="header">
<img
id="header-img"
class="logo-image"
src="https://s.clipartkey.com/mpngs/s/263-2635964_yankee-candle-logo-png.png"
alt="YANKee CANDLe"/>
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
<!--
Hello Camper!
For now, the test suite only works in Chrome! Please read the README below in the JS Editor before beginning. Feel free to delete this message once you have read it. Good luck and Happy Coding!
- The freeCodeCamp Team
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
<!--
Hello Camper!
For now, the test suite only works in Chrome! Please read the README below in the JS Editor before beginning. Feel free to delete this message once you have read it. Good luck and Happy Coding!
- The freeCodeCamp Team
use array2d::Array2D
use rand::prelude::*
#[derive(Debug)]
struct Board {
array: Array2D<bool>
}
impl Board {
fn new(n_rows: usize, n_cols: usize) -> Self {
[tool.poetry]
name = "prefect-flows"
version = "0.1.0"
description = ""
authors = ["josh-gree <blah>"]
packages = [
{include = "flows"}
]
[tool.poetry.dependencies]