Compare commits

...

5 commits

Author SHA1 Message Date
73bebb8eee
Merge pull request #21 from emrusz/update-copy
Enable code copy and search
2025-03-19 00:37:33 -04:00
8448cecf37
Enable draft posts 2025-03-19 00:36:30 -04:00
ab284840d9
Enable code copy and search 2025-03-19 00:35:20 -04:00
28b21bab46
Merge pull request #20 from emrusz/resize-avatar
Update avatar
2025-03-18 23:58:18 -04:00
bb0923e953
Update avatar 2025-03-18 23:57:33 -04:00
5 changed files with 5 additions and 52 deletions

View file

@ -19,7 +19,7 @@ description: >- # this means to ignore newlines until "baseurl:"
Blog and portfolio for Em (Ethan) Ruszanowski.
github_username: emrusz
minimal_mistakes_skin: dark
search: false
search: true
# Build settings
markdown: kramdown
@ -57,8 +57,9 @@ plugins:
author:
name: "Em (Ethan) Ruszanowski"
avatar: "/assets/images/avatar.png"
avatar: "/assets/images/avatar.jpg"
bio: "Data engineer, polyglot developer, and RIT Computing and Information Technologies alum."
location: "Rochester, NY"
links:
- label: "Email"
icon: "fas fa-fw fa-envelope"
@ -91,9 +92,6 @@ footer:
icon: "fas fa-fw fa-heartbeat"
url: "https://status.rusz.dev"
after_footer_scripts:
- assets/js/clipboard.js
social:
type:
names:
@ -121,6 +119,8 @@ defaults:
layout: single
author_profile: true
enable_copy_code_button: true
category_archive:
type: liquid
path: /categories/

0
_drafts/placeholder.md Normal file
View file

BIN
assets/images/avatar.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 772 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.9 MiB

View file

@ -1,47 +0,0 @@
/*
* A nice little clipboard script provided by crykn. Thanks!
*/
function sleep(ms) {
return new Promise(resolve => setTimeout(resolve, ms));
}
async function onClickEffect(btn, style) {
btn.removeClass("btn-light");
btn.addClass(style);
await sleep(250);
btn.removeClass(style);
btn.addClass("btn-light");
}
$(document).ready(function() {
// Create butons
$(".page__content pre > code").each(function() {
$(this).parent().prepend(
$(document.createElement('button')).prop({
type: 'button',
innerHTML: '<i class="far fa-copy"></i>',
})
.attr('title', 'Copy to clipboard')
.addClass('btn')
.addClass('btn--primary')
.css('position', 'absolute')
.css('right', '1em')
// Click listener
.on('click', function() {
let codeElement = $(this).parent().children('code').first();
if (!codeElement) {
throw new Error("Unexpected error! No corresponding code block was found for this button.");
}
// Blink effect
onClickEffect($(this), "btn--success")
// Copy to clipoard function
navigator.clipboard.writeText($(codeElement).text()).then(() => true, () => true);
return true;
})
);
});
});