github.dev is a new community project by GitHub that lives on the .dev TLD. With it, you can fork, customize and deploy a personal site that shows ...
For further actions, you may consider blocking this person and/or reporting abuse
Some other fun edits I made to mine:
My codebase is here if anyone wants to poke around my stuff:
ItsASine / itsasine.github.io
Canonical source of technical blog posts
Get started building your personal website
Showcase your software development skills
This repository gives you the code you'll need to kickstart a personal website that showcases your work as a software developer. And when you manage the code in a GitHub repository, it will automatically render a webpage with the owner's profile information, including a photo, bio, and repositories.
Your personal website is waiting to be personalized, though. It includes space to highlight your specific areas of interest in software development, like languages or industries. And it's standing by to publish your next great blog post.
It's all possible using the combination of Jekyll (for building your website), GitHub Pages (for hosting your website), and GitHub's API (for automatically populating your website with content).
Installation
Fork the
github/personal-website
repoYou'll be making your own copy of the "personal website starter" repository so you have your own project to customize. Aβ¦
Awesome additions π I hadn't noticed before that the stars and forks didn't have links properly set, I've added your code and now mine do too. Thank you!
Although out of the scope of this article, you will have to add your ssh key to github to allow the clone. You may even have to create ssh key-pairs for that.
Also, the gems didn't build on my pixelbook, didn't have time to figure out why.
This could make a good standalone #help post.
Any help there? I'm getting a blank page with no info but the topics that were already in the template
Ok, what is a "devsigner"... And why do I feel you could make a whole post on just the backstory of this term.
As a frontend developer I can't tell if it's funny or I should be #triggered.
:D
Haha, great question! I think it was at Algolia when I first heard the term. We had a guy who was a designer and illustrator by background but had gotten very good at front end coding, enough where he could make his project ideas come to life end-to-end. He called himself a devsigner, and since then I've seen some other people doing it too.
I'm sure there is more backstory here though widely speaking, so many titles out there π
Usually devsigned/devsigner has a more negative (though not usually too negative) connotation than that. Usually it refers to a page or app or feature &c which has not been fleshed out by an actual designer and for which a developer has done their best to make it look good. Obviously the results depend on the design chops of the dev
+1.
This was my thought when I saw it.
I havenβt fully examined this yet, but I think there should be an option to include your DEV link somewhere here.
If anyone wants to look into this project and make a PR to add that, it would be awesome!!
I just walked through this to make mine: patrickjwoods.github.io Excited to see what everyone else creates!
I'm curious if it's possible to display your merged pull requests using Github Dev?
It looks like you could accomplish it with the v3 REST API using the search functionality to filter by user and merged status.
help.github.com/en/articles/search...
Once you had the right query, you could add that into GitHub Dev as another API call and display it on the UI.
Yeah, I was looking at that earlier. I assume API calls are hidden in the jekyll-github-metadata plugin, so I'd have to find another way to make API calls. Don't want to setup a server, though. AJAX, maybe?