DEV Community

Cover image for Show me your personal website/portfolio
TheOnlyBeardedBeast
TheOnlyBeardedBeast

Posted on

40 12

Show me your personal website/portfolio

So, show me your website/portfolio and tell me what technologies do you use and why?

Here is mine https://thedev.sk

It uses Preact and Typescript, Bundled by Parcel, everything is prerendered and hosted on http://now.sh

FYI: the image for the site background is a render of a 3D model made in ZBrush.

I know the whole thing is a bit overblown, it would take less time to build the whole thing from scratch without preact, ts..., just good old html/css/vanilla js, but I wanted to try Preact and Parcel, and I saw an opportunity to use them in this side project.

It's your turn, show me what you got!

Top comments (268)

Collapse
 
mazentouati profile image
Mazen Touati โ€ข

Here's mine sunchayn.github.io/old. Now, it's on hold as I'm planning to make a new one.

The technology stack I've used was vanilla JS (ES6) and SASS3 alongside Gulp as a build tool.

Collapse
 
maty13flaco profile image
kaponii โ€ข

Look great, congrats ๐Ÿ‘๐Ÿ‘๐Ÿ‘

Collapse
 
theonlybeardedbeast profile image
TheOnlyBeardedBeast โ€ข

nice, you nailed the terminal look ๐Ÿ‘

Collapse
 
waylonwalker profile image
Waylon Walker โ€ข

Love the blue screen at the end of the page!!

Collapse
 
andrewbaisden profile image
Andrew Baisden โ€ข

Here's mine andrewbaisden.com/ the backend is in Node and the frontend is in Next.js. Deployed to Netlify.

Andrew Baisden Portfolio

Collapse
 
wolfhoundjesse profile image
Jesse M. Holmes โ€ข

Can you make one for me? Not a site, but you know, just make me look as cool as you? ๐Ÿ˜Ž

Collapse
 
perpetual_education profile image
perpetual . education โ€ข

Like a super hero, right!?! : )

Thread Thread
 
andrewbaisden profile image
Andrew Baisden โ€ข

I just follow Saitamaโ€™s Workout.

Every single day!!!

100 Push Ups, 100 Sit Ups, 100 Squats, and 10KM Running.

๐Ÿ˜Ž

Thread Thread
 
perpetual_education profile image
perpetual . education โ€ข

OK! We'll start with $saitamaWorkout / 5 and go from there!

Collapse
 
andrewbaisden profile image
Andrew Baisden โ€ข

Itโ€™s just good lighting ๐Ÿ˜…

Thread Thread
 
judionit profile image
Judicaรซl Andriamahandry โ€ข

Too powerful, one punch and got a job

Collapse
 
theonlybeardedbeast profile image
TheOnlyBeardedBeast โ€ข โ€ข Edited

Really nice, I noticed that you have horizontal scrollbars on your page caused by the 100vw which is used on the div right inside the header element, give the header 100% width and replace the 100vw with 100% too, it will make the issue gone. But other than that it is really nice, nice power level ;)

Collapse
 
andrewbaisden profile image
Andrew Baisden โ€ข

Thanks for the feedback I will look into it. I don't see those scrollbars though what OS and browser did you see it in?

Thread Thread
 
theonlybeardedbeast profile image
TheOnlyBeardedBeast โ€ข

13 inch MacBook pro, with the native mac os, latest chrome browser, I have an always visible scrollbar, and the 100vw never counts with the width of the scrollbar. I hope this information will help you to debug ;)

Collapse
 
mdor profile image
Marco Antonio Dominguez โ€ข

This is mine mdor.dev/

I want to start adding more features, but I tried to keep it simple.

I kept the stack to the minimum.

For the site:

  • ES6
  • CSS 3
  • normalize
  • typed js.

For the build process:

  • Babel
  • autoprefixer
  • webpack
  • cssnano
  • postcss
  • imagemin
  • node.

For the code quality:

  • eslint
  • husky
  • lint-staged

So far, it has:
Performance: 97
Accessibility: 100
Best Practices: 100
SEO: 100

And the load time is very decent, coming from the network tab:
361 kB resources
Finish: 487 ms
DOMContentLoaded: 306 ms
Load: 451

This is the repo github.com/MDOR/mdor

TODO:

  • update the deploy process
  • include a section to keep my tooling bookmarks
Collapse
 
theonlybeardedbeast profile image
TheOnlyBeardedBeast โ€ข

Hi really nice page, I see you even customized the scrollbar, but I found a really annoying bug, after I used the navigations buttons the site does not allows me to scroll, it is stuck on one place, no mousewheel, no touchpad, I cant even move the scrollbar with the mouse, navigation through the menu works. The scrollbar works when you load the page at the firs time, but it stops working after you use a navigation button. Please check it out. Tested on chrome/edge chormium, both latest on windows 10, 15.6 inch screen Full HD, 125% scaling in windows display settings.

Collapse
 
mdor profile image
Marco Antonio Dominguez โ€ข

Nice! Thank you for report that., I'll take a look.

Collapse
 
carlevans profile image
Carl Evans โ€ข โ€ข Edited

Mine is carlevans.dev I use Craft as my CMS and use Eleventy to build a static site which is hosted for free thanks to Netlify / AWS. I use Nunjucks as a template engine. It doesnโ€™t use a front end framework but it does use Barba.js for page transitions ๐Ÿ˜Š

Collapse
 
naveenda profile image
Naveen โ€ข

Nice colour section carl

Collapse
 
theonlybeardedbeast profile image
TheOnlyBeardedBeast โ€ข

You got me with that one, nice, simple minimalistic, nice colors ๐Ÿ‘

Collapse
 
ishandeveloper profile image
Ishan Sharma โ€ข

I was actually working on my portfolio website around 3 months ago. Designed this all by myself from scratch. Since then, I've learnt react, gatsby and next.js and right now I'm in the phase of migrating this design to react based stack, for improved performance. Still most of the design will remain the same. You can have a look here : ishandeveloper.com

ishandeveloper

Moreover, I have also created a personal blog of my own using Gatsby. I'd love for you to have a look at it here : blog.ishandeveloper.com
ishandeveloper Blog

Collapse
 
hemant profile image
Hemant Joshi โ€ข โ€ข Edited

Loved, the blog page...

Can I get the source code for the blog site?

I am currently working on a Dev.to plugin that can display your all blogs on the external page and would appreciate getting the source code the project.

Here is the link.
hemant-blog.netlify.app/

Sorry this has a dirty CSS, cause I have been busy on other project and don't want to design it now.

Thank you;

Collapse
 
theonlybeardedbeast profile image
TheOnlyBeardedBeast โ€ข

Thats really nice, it is clean, nice usage of empty spaces and great color choices in the blog for post background. ๐Ÿ‘

Collapse
 
ishandeveloper profile image
Ishan Sharma โ€ข

Thank you @theonlybeardedbeast !

Collapse
 
bobbyiliev profile image
Bobby Iliev โ€ข โ€ข Edited

My personal website is: Bobby Iliev
And here is a website that I've been helping with recently: DevDojo you should check it out!

Collapse
 
theonlybeardedbeast profile image
TheOnlyBeardedBeast โ€ข

Nice portfolio ๐Ÿ‘ devdojo looks nice, I will save it to my bookmarks.

Collapse
 
bobbyiliev profile image
Bobby Iliev โ€ข

Thanks for the nice feedback! ๐Ÿ™Œ

Collapse
 
md_rathik profile image
Md Rathik โ€ข โ€ข Edited

Here you go rathik.net/ , Built in VuePress and backend for markup post and page , I connected to forestry as my simple backend
Inline-style:
alt text

Collapse
 
theonlybeardedbeast profile image
TheOnlyBeardedBeast โ€ข

nice and cool, wishing the best ๐Ÿ‘

Collapse
 
md_rathik profile image
Md Rathik โ€ข

thank you

Collapse
 
jeffjadulco profile image
Jeff Jadulco โ€ข

Sharing mine: jeffjadulco.com
Things I used:

  • Reactjs
  • Gatsby and its plugins (it made my life so much easier)
  • GrahpQL (it was overwhelming at first but thanks to their docs)
  • tailwindcss (it accelerated my understanding of css concepts)
  • MDX (I love markdown but I love MDX even more)
Collapse
 
theonlybeardedbeast profile image
TheOnlyBeardedBeast โ€ข

Nice, both versions (light and dark) simple and clear ๐Ÿ‘ In what language powers you graphql backend? I mostly choose hot-chocolate or graphql.net for .net or typegraphql for node, because I love the code-first approach.

Collapse
 
jeffjadulco profile image
Jeff Jadulco โ€ข

Oh that was Gatsby's GraphQL for generating pages at build time (node). No back-end. Sorry for the confusion!

Thread Thread
 
theonlybeardedbeast profile image
TheOnlyBeardedBeast โ€ข

no problem, I have never worked with gatsby, so I just forgot that graphql is part of it :) thanks for the clarification.

Collapse
 
amir profile image
Amir Meimari โ€ข โ€ข Edited

I've decided to take a different route and make my portfolio an old newspaper ๐Ÿ˜Š๐Ÿ˜…

amirmeimari.ir/

screenshot

Collapse
 
theonlybeardedbeast profile image
TheOnlyBeardedBeast โ€ข

Looks amazing, great job, you are unique in the comment section. The design you linked on dribble doesn't work for me, I have got a 404, but the miniature looked really cool, let me know if you fixed the dribble link, or just write the link into the comment if you have it. ๐Ÿ‘

Collapse
 
amir profile image
Amir Meimari โ€ข

Thanks for the feedback! Yeah, I've done some design in the past but decided to just focus on the development and deleted my dribble account. but here is a picture of that design if you are interested...

tehran travel concept

Thread Thread
 
theonlybeardedbeast profile image
TheOnlyBeardedBeast โ€ข

That looks really great! Excellent work!

Collapse
 
kosich profile image
Kostia Palchyk โ€ข

Thats a great idea, Amir!

Collapse
 
amir profile image
Amir Meimari โ€ข

Thanks Kostia!

Collapse
 
cadams profile image
Chad Adams โ€ข โ€ข Edited

I tried to keep the design simple and minimal.

chadalen.com

Collapse
 
perpetual_education profile image
perpetual . education โ€ข

That's a lot of tech for 'simple' ! Photo feels very nice and human.

Collapse
 
cadams profile image
Chad Adams โ€ข

I mean the UI/Design not the tech stack haha

Collapse
 
theonlybeardedbeast profile image
TheOnlyBeardedBeast โ€ข

Good work clear and informative, nice projects you have there ๐Ÿ‘

Collapse
 
cadams profile image
Chad Adams โ€ข

Thanks :)