| Type | Item | Price |
|---|---|---|
| CPU | AMD Ryzen 5 5600G 3.9 GHz 6-Core Processor | $121.80 @ Amazon |
| Thermal Compound | Prolimatech PK-3 Nano Aluminum High-Grade 5 g Thermal Paste | $27.38 @ MemoryC |
| Motherboard | Gigabyte B450M DS3H WIFI Micro ATX AM4 Motherboard | $84.99 @ Newegg |
| Memory | Silicon Power XPOWER Turbine 16 GB (2 x 8 GB) DDR4-3200 CL16 Memory | $29.97 @ Amazon |
| Storage | [Western Digital Blue SN570 1 TB M.2-2280 PCIe 3.0 X4 NVME Solid State Drive](https://pcpartpicker.com/product/3dvdnQ/western-digital-blu |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Settings on My Creations (no grid) json api | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description Get the settings from json api. Don't attempt to style as grid | |
| // @author Josh Parker | |
| // @match https://creator.nightcafe.studio/my-creations | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=nightcafe.studio | |
| // @grant none | |
| // ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name creation settings | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description Get the settings from json api. No UI changes. | |
| // @author Josh Parker | |
| // @match https://creator.nightcafe.studio/my-creations | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=nightcafe.studio | |
| // @grant none | |
| // ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name hover over time to see timestamp | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description hover over time to see timestamp | |
| // @author Josh Parker | |
| // @match https://creator.nightcafe.studio/* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=nightcafe.studio | |
| // @grant none | |
| // ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>fans</title> | |
| <style> | |
| .fan, | |
| .inner-ring, | |
| .outer-led, | |
| .inner-led { | |
| border-radius: 100%; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Sketchify Page! | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description use a simple sketch effect on any page | |
| // @author Josh Parker | |
| // @match *://*/* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=wikipedia.org | |
| // @grant none | |
| // ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from numpy import random | |
| a = ["AAPL", | |
| "MSFT", | |
| "AMZN", | |
| "NVDA", | |
| "GOOGL", | |
| "TSLA", | |
| "GOOG", | |
| "META", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function calculateSpecificity(selector) { | |
| // Remove :is(), :not(), and :has() pseudo-classes and retain their parameters | |
| const cleanedSelector = selector.replace(/:(is|not|has)\(([^)]*)\)/g, ' $2 '); | |
| const attributeRegExp = /\[[^\]]*\]/g; | |
| const attributeCount = cleanedSelector.match(attributeRegExp)?.length || 0; | |
| const noAttributes = cleanedSelector.replace(attributeRegExp, ''); | |
| const pseudoElementRegExp = /::[^.:#>~+\s]+/g; | |
| const pseudoElementCount = noAttributes.match(pseudoElementRegExp)?.length || 0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>S W A V E</title> | |
| <style> | |
| body { | |
| overflow: hidden; | |
| margin: 0; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
| <title>S W A V E</title> | |
| <link rel="preconnect" href="https://fonts.googleapis.com" /> | |
| <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin /> | |
| <link | |
| href="https://fonts.googleapis.com/css2?family=Danfo&family=Jacquard+12&family=Poetsen+One&display=swap" |