Ask HN: Share your personal site
241–250 of 257 posts
Re: Ask HN: Share your personal site
#242Sure! Here's mine: https://www.justus.ws I've had this one for a couple years now. I've had more polished-looking sites in the past, but this time I wanted to emphasize having fun with it and not being too precious - this allows me to update it without worrying about everything being perfect. It's a static site built by Eleventy. I edit/build it locally, and then when I push up to Github it's rebuilt there by a Githu…
BTW, I made a vanilla JS version for fun, without jQuery or promises (untested)
function blinktimer() {
var avatar = document.querySelector(" .avatar ");
var srcBlink = '/images/dadi-avatar_blink.png';
var blink = function() {
console.log("BLINK!");
var srcOpen = avatar.src;
avatar.src = srcBlink;
setTimeout(function() {
avatar.src = srcOpen;
var delay = (Math.random() * 11000) | 0;
setTimeout(blink, delay);
}, 150);
}
var delay = (Math.random() * 11000) | 0;
setTimeout(blink, delay);
}Re: Ask HN: Share your personal site
#243Try double click
Re: Ask HN: Share your personal site
#244https://jake.tl I’ve used this site design for probably 6 years? Today it’s a NextJS site on Vercel backed by markdown files (older pages) and Notion (newer pages). I’ve also built the same design with a Python SSG which was focused on one HTTP request per page, and before that a POSIX shell script I wrote focused on being as FreeBSD as possible. I would like to share more knowledge on the site, but it’s in last plac…
Re: Ask HN: Share your personal site
#245Re: Ask HN: Share your personal site
#246Re: Ask HN: Share your personal site
#247Just did some redesign and cleanup.
I especially like the idea of a /now page. Experimenting with adding more pages and content soon.
Digital Garden is the right word here. ;)
Re: Ask HN: Share your personal site
#248Nothing too fancy, just a static hugo site on github pages. I mostly write about Java and Javascript. Currently trying to complete my 100DaysOfJava. As its quite a tough thing to make time so trying to read and tinker with the concepts and then write.
The article i am most fond of will be https://mohibulsblog.netlify.app/posts/java/100daysofjava/da...
Re: Ask HN: Share your personal site
#249Earlier quoted context omitted.
Hey Taylor! Good looking site- The minimal theming feels very clean. 2 suggestions jumped out: 1. The font size on homepage is small, especially for the two columns of dates. I can't really read them from across my desk (even on a big monitor). It's also not clear what the dates represent- maybe created and updated dates for each post? 2. The dates aren't present on the post pages themselves, so someone landing direc…
> 1. The font size on homepage is small, especially for the two columns of dates. Thanks for the feedback! I just pushed up some changes. Let me know how it looks in ~10 minutes :) Those dates are indeed created and updated dates. I haven't thought of pretty a way to visually indicate that haha. Let me know if you have any ideas! > 2. The dates aren't present on the post pages themselves, so someone landing directly…
Maybe a slightly smaller and lighter "C" and "U" preceding them?