Technology

Technology

85 bookmarks
Newest
How do I implement social login with GitHub accounts?
How do I implement social login with GitHub accounts?
I just spent about a week's worth of effort figuring out how to do this, so I thought I'd write up an explanation to save future developers time. The short(er) answer You'll want to follow this gui...
·stackoverflow.com·
How do I implement social login with GitHub accounts?
Stacks · Bootstrap v5.1
Stacks · Bootstrap v5.1
Stack things vertically or horizontally using Bootstrap. I don't know how I didn't discover this page so much sooner...
·getbootstrap.com·
Stacks · Bootstrap v5.1
Parsing Backlinks in Hugo ❚ A Scripter's Notes
Parsing Backlinks in Hugo ❚ A Scripter's Notes
As of writing this (%3C2022-04-19%20Tue%3E), Hugo doesn’t have a built-in way to generate a list of such backlinks, though there’s an open issue (# 8077) to track this feature request. One way to gather a list of backlinks to a post is to find out that post’s relative or absolute permalink, and search for the occurrences of that link in all the other posts on the published site. The author of seds.nl: Export org-roam backlinks with Gohugo, Ben Mezger, uses this approach in his solution for creating backlinks in that post. In this post, I am expanding upon that solution and refactoring it bit to fit my needs.
·scripter.co·
Parsing Backlinks in Hugo ❚ A Scripter's Notes
I wrote a syllabus for learning Python and Django. Four people have gone through it, two are interviewing and one got a job. It's based on using a somewhat even mix of coding challenges, personal projects and books. : learnprogramming
I wrote a syllabus for learning Python and Django. Four people have gone through it, two are interviewing and one got a job. It's based on using a somewhat even mix of coding challenges, personal projects and books. : learnprogramming
8.5k votes, 362 comments. Edit July 2021: It’s been almost a year since I wrote this post. I’ve learned a lot more about learning Python in that …
·reddit.com·
I wrote a syllabus for learning Python and Django. Four people have gone through it, two are interviewing and one got a job. It's based on using a somewhat even mix of coding challenges, personal projects and books. : learnprogramming
Automad / Getting Started
Automad / Getting Started
Automad is a PHP application and therefore requires a web server to run. However, the list of system requirements is rather short. You can choose between three ...
·automad.org·
Automad / Getting Started
How to change directory permissions in Linux
How to change directory permissions in Linux
Learn how to change directory permissions in Linux for individuals, groups, and everyone, using both letter and number codes.
·pluralsight.com·
How to change directory permissions in Linux
Variables | Jekyll • Simple, blog-aware, static sites
Variables | Jekyll • Simple, blog-aware, static sites
Jekyll traverses your site looking for files to process. Any files with front matter are subject to processing. For each of these files, Jekyll makes a variety of data available via Liquid. The following is a reference of the available data.
·jekyllrb.com·
Variables | Jekyll • Simple, blog-aware, static sites
Hugo Wikilink Support | Quinn Casey
Hugo Wikilink Support | Quinn Casey
The static site generator Hugo doesn’t yet support Wikilinks. This is being considered on this github issue, but in the meantime we need to parse each page’s content to replace wikilinks with a relref internal page link. I use the following code snippet to support wikilinks in Hugo. It can be invoked when you’d normally use {{ .Content }} by calling this instead: {{- partial "content-with-wikilinks" . -}}. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 {{/* Prints page content with two types of wikilinks rendered (with and without text).
·quinncasey.com·
Hugo Wikilink Support | Quinn Casey