<aside>

</aside>

<aside> ⚠️

welcome to my now page, its basically a place to get to know what i’m up to in the quickest way possible - first started by derek sivers, and later adopter by tobias van schneider. if you happen to have a website, you should have one too. https://nownownow.com/p/0KL9

</aside>

monthly updates

1/25

12/24

11/24

10/24

const quotes = [ '“Dream big and dare to fail.” – Norman Vaughan', '“Do one thing every day that scares you.” – Eleanor Roosevelt', '“Hustle in silence and let your success make the noise.” – Unknown', ]; const quoteElement = document.createElement('div'); quoteElement.innerText = quotes[Math.floor(Math.random() * quotes.length)]; quoteElement.style.position = 'fixed'; quoteElement.style.bottom = '20px'; quoteElement.style.left = '20px'; quoteElement.style.padding = '15px'; quoteElement.style.backgroundColor = '#333'; quoteElement.style.color = '#fff'; quoteElement.style.borderRadius = '8px'; quoteElement.style.zIndex = '1000'; document.body.appendChild(quoteElement);