Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion claude.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
/* Modern Portfolio CSS */
/* Modern Portfolio CSS
- Initially generated by Anthropic's Claude sonnet 3.5
- Enhanced and edited by human person Dawn Gabriel (dgabriel.github.io)
*/
:root {
--primary-color: #2d3436;
--accent-color: #6c5ce7;
Expand Down Expand Up @@ -97,6 +100,12 @@ li:hover {
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

footer p {
text-align: center;
font-size: 9pt;
color: #666;
}

@media (max-width: 768px) {
body {
padding: 1.5rem;
Expand Down
6 changes: 4 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<body>
<h1>Hey, friends.</h1>
<p>
I'm a software engineer and intermittant <a href="https://en.wikipedia.org/wiki/Fl%C3%A2neur">flâneuse</a>. I work on
I'm a software engineer and intermittant <a href="https://en.wikipedia.org/wiki/Fl%C3%A2neur#Female_counterparts">fl&acirc;neuse</a> living in Brooklyn, NY. I work on
side projects on occasional Saturday mornings, unless I'm wandering through the city.
</p>
<h2>About me</h2>
Expand All @@ -15,7 +15,9 @@ <h2>About me</h2>
<li><a href="http://ey.com" target="_blank">Where I work, EY</a></li>
<li><a href="https://www.linkedin.com/in/dawn-gabriel-3948946/" target="_blank">Linkedin</a></li>
</ul>
<h2>Some projects I used Claude to build</h2>
<h2>Some projects I built using a combo of <a href="https://claude.ai/" target="_blank">Claude</a>,
<a href="https://chatgpt.com/" target="_blank">ChatGPT</a>, and
<a href="https://www.deepseek.com/" target="_blank">DeepSeek</a>.</h2>
<ul>
<li><a href="qrgen.html">100% free and anonymous QR code generator (no ads, no info stored)</a></li>
</ul>
Expand Down
12 changes: 12 additions & 0 deletions qrgen.html
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,20 @@ <h2>100% free and anonymous</h2>
<button id="downloadBtn" onclick="downloadQR()">Download QR Code</button>

<div id="qrcode"></div>
<p>This tool was created with <a href="https://claude.ai/" target="_blank">Claude</a> using the following prompt:<br/>
<code>Can you write a program that turns a url into a shareable QR code? I don't want to pay a service.
It's possible to do it in html and javascript, then make it available without a server-side component
via a github blog.</code>
</p>
<br/>
<br/>
<i>View source and steal this code! No rights reserved.</i>
</div>

<footer>
<p><a href="index.html">Dawn Gabriel on GitHub (dgabriel.github.io)</a></p>
</footer>

<script>
let qr = null;

Expand Down