A "quick 2 week project" to deepen my Rust skills
that I've spent the last ~9 weeks working on.
- Rust generics
| # Place a copy of this config to ~/.aerospace.toml | |
| # After that, you can edit ~/.aerospace.toml to your liking | |
| # Config version for compatibility and deprecations | |
| # Fallback value (if you omit the key): config-version = 1 | |
| config-version = 2 | |
| # You can use it to add commands that run after AeroSpace startup. | |
| # Available commands : https://nikitabobko.github.io/AeroSpace/commands | |
| after-startup-command = [] |
| (defn distinct-p | |
| ([pred coll] | |
| (distinct-p pred coll #{})) | |
| ([pred coll seen] | |
| (if (empty? coll) | |
| '() | |
| (lazy-seq | |
| (let [next (first coll) | |
| key (pred next) | |
| is-dup (contains? seen key) |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Page Title</title> | |
| </head> | |
| <body> | |
| </body> | |
| </html> |
| <!doctype html> | |
| <html> | |
| <head> | |
| <title>02.3 Google Fonts Louise's Web Site</title> | |
| </head> | |
| <body> | |
| <h1>Welcome to Louise's web site!</h1> | |
| <p><img src="http://dev.robkovacs.com/louise.jpg"></p> |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>03.1 ID Practice Carlton's Food</title> | |
| </head> | |
| <body> | |
| <h1>What can Carlton eat?</h1> | |
| <img src="https://pmcvariety.files.wordpress.com/2015/08/alfonso-ribeiro-fresh-prince-of-bel-air.jpg?w=670&h=377&crop=1"> | |
| <ul> | |
| <li>Steak</li> |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>IDs Practice</title> | |
| </head> | |
| <body> | |
| <p id="one">one</p> | |
| <p id=" ">two</p> | |
| <p id=" ">three</p> | |
| <p id=" ">four</p> |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Page Title</title> | |
| </head> | |
| <body> | |
| <div id="myDiv"></div> | |
| </body> | |
| </html> |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Page Title</title> | |
| </head> | |
| <body> | |
| <div id="pizza"></div> | |
| </body> | |
| </html> |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Page Title</title> | |
| </head> | |
| <body> | |
| <div id="pizza"></div> | |
| </body> | |
| </html> |