- Andromeda bio pic
- Nacul → Bio
- Add to carousel on `tiarchitects/projects/andromeda swap out`` for Andromeda rendering
- New article for Principles of Ecological Architecture
- Sandy will supply image
- Add the 2 new books
- Omega
- T - Get image (Nina can do mockup?)
- Omega
This file contains 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
class MyElement extends HTMLElement { | |
// Fires when an instance of the element is created or updated | |
constructor() { | |
super(); | |
} | |
// Fires when an instance was inserted into the document | |
connectedCallback() { | |
} |
This file contains 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
<script> | |
// Creates MyElements extending HTML Element | |
class MyElement extends HTMLElement { | |
// Fires when an instance of the element is created or updated | |
constructor() { | |
super(); | |
} | |
// Fires when an instance was inserted into the document | |
connectedCallback() { |
This file contains 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
return { | |
fileName: gpxFile, | |
// gpxString: gpxStringClean, | |
trkName, | |
totalDistance: totalDistance.toFixed(2), | |
startWaypoint: { | |
name: startWaypoint.getElementsByTagName('name')[0]?.textContent, | |
lat: startWaypoint.getAttribute('lat'), | |
lon: startWaypoint.getAttribute('lon'), | |
ele: startWaypoint.getElementsByTagName('ele')[0]?.textContent, |
This file contains 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 lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Container Queries Javascript II</title> | |
<body> | |
<main> | |
<style> |
This file contains 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 lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Container Queries Javascript</title> | |
<body> | |
<main> | |
<style> | |
*, |
This file contains 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
instrument.ts:129 TypeError: Cannot read properties of undefined (reading 'label') | |
at Select.tsx:28:73 | |
at Ru (react-dom.production.min.js:262:359) | |
at t.unstable_runWithPriority (scheduler.production.min.js:18:343) | |
at Wo (react-dom.production.min.js:122:325) | |
at Au (react-dom.production.min.js:261:308) | |
at gu (react-dom.production.min.js:243:50) | |
at react-dom.production.min.js:123:115 | |
at t.unstable_runWithPriority (scheduler.production.min.js:18:343) | |
at Wo (react-dom.production.min.js:122:325) |
This file contains 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
if (!document.querySelector("#debugStyles")) { | |
const style = document.createElement("style"); | |
style.setAttribute("id", "debugStyles"); | |
style.innerHTML = ` | |
.debug-boxes * { | |
outline: 1px solid blue; | |
background-color: rgba(0,255,255,.05); | |
} | |
`; | |
document.head.appendChild(style); |
This file contains 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 shuffleArray(arr) { | |
for (let i = arr.length - 1; i > 0; i--) { | |
const j = Math.floor(Math.random() * (i + 1)); | |
[arr[i], arr[j]] = [arr[j], arr[i]]; | |
} | |
} | |
const montyHall = (n) => { | |
let wins = 0; | |
let doors = ["goat", "goat", "car"]; |
NewerOlder