Giter Site home page Giter Site logo

brennanbrown / enjoyment-work Goto Github PK

View Code? Open in Web Editor NEW
92.0 3.0 10.0 2.68 MB

🗃️ A Digital Garden: Capturing my daily thoughts and progress, as well as curated ideas with unique synthesis—a personal zettelkasten. Built on Simply Jekyll by Raghuveer S.

Home Page: https://enjoyment-work.netlify.app

License: MIT License

HTML 49.22% Ruby 1.53% CSS 34.03% JavaScript 15.22%
digital-garden jekyll obsidian

enjoyment-work's Introduction

Dev.to Linkedin Medium WordPress Blog Glitch Ko-fi Pronouns Open Source Liberapay

:octocat: Website / Resume / Newsletter :octocat:

About Me 👋

Hey there! 😄 My name is Brennan, I'm a 28-year-old Queer Métis JAMstack developer and content strategist from Winnipeg, Manitoba and currently reside in Calgary, Alberta. I completed both the Full-Stack Developer Program at InceptionU and the Growth Marketing Bootcamp at OnRamp, and I'm looking to help those that need web development work done, or searching for ideas and management for their next content project.

I would also love to volunteer my time to contributing to open-source projects! I love creating and tinkering with small, static websites and projects. I'm a big proponent of putting an emphasis on accessibility and the A11y project in web development.

I'm always looking to work with people that are hopeless idealists like me, as well as who are interested in creating and working on cool, interesting, and meaningful projects! Shoot me an e-mail if that sounds like your cup of tea.

Technologies I'm Learning 📚

Software:

Ruby Python Java PHP

Front-end:

Sass JavaScript D3.js Gatsby React Rails Jekyll

Back-end:

MongoDB PostgreSQL Flask GraphQL Heroku Docker NGINX

Editors and Operating Systems:

IntelliJ IDEA VS Code LaTeX Debian FreeBSD GNU Emacs GNU Bash


Recent Posts 📑

enjoyment-work's People

Contributors

brennanbrown avatar dependabot[bot] avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

enjoyment-work's Issues

Netlify Deployment

Since updating Nokogiri, the default deployment to Netlify for the demo site hasn't been working.

2:10:03 PM: ────────────────────────────────────────────────────────────────
2:10:03 PM:   "build.command" failed                                        
2:10:03 PM: ────────────────────────────────────────────────────────────────
2:10:03 PM: ​
2:10:03 PM:   Error message
2:10:03 PM:   Command failed with exit code 1: jekyll build
2:10:03 PM: ​
2:10:03 PM:   Error location
2:10:03 PM:   In Build command from Netlify app:
2:10:03 PM:   jekyll build
2:10:03 PM: ​
2:10:03 PM:   Resolved config
2:10:03 PM:   build:
2:10:03 PM:     command: jekyll build
2:10:03 PM:     commandOrigin: ui
2:10:03 PM:     publish: /opt/build/repo/_site
2:10:03 PM:   headers:
2:10:03 PM:     - for: /*
      values:
        Access-Control-Allow-Origin: '*'
  redirects:
    - from: /*
      status: 200
      to: /index.html

Will have to look into the issue and resolve it.

Japanese characters in the TAGS page

Thanks for the great theme!
As I can see, in the TAGS page we have Japanese characters (see below) marking each entry for each tag. Is there a way to change to Latin characters or regular bullet points/numbers?

image

TOC error

Hello. Thank you for sharing your great blog template!

I'm trying to learn how to write posts. So I made one and then upload it.
However, the display was totally different from my localhost.
The thing is that the toc(table of contents) display the whole content instead of its titles or subtitles.

So, here is my post address.
and here is markdown file address from my github.

I even did the "toc : false", but it does not work. Can I know how can I solve this problem?

Wrong mathjax rendering

In my site, I have following markdown:

---
title: Vim Commands
tags: programming
toc: true
comments: true
---

- Vim
    - command
        - 輸入go這個字串30次: ` 30igo "esc" `
        - finding
            - ` fX `: 找下一個字元X,游標放在X上
            - `FX `: 找上一個字元X,游標放在X上
            - ` ; `: 同一個方向,重複上一步
            - `, `: 反方向,重複上一步
        - moving
            - ` b `: 往前移到字首
            - ` w `: 往後移到字首
            - ` e `: 移到字尾
            - ` ctrl+o `: 移到上一個拜訪過的位置
            - ` ctrl+i `: 移到下一個拜訪過的位置
            - ` ^ `: 移到行首非空字元
            - ` $ `: 移到行末
        - editing
            - ` A `: move to the end of the line and editing
            - ` I `: move to the start of the line and editing
            - ` ea `: edit at the end of the word
            - ` di} `: 刪除{}裡的所有東西
        - mark
            - ` ma `: 把現在滑鼠的位置標記成a
            - ` `a `: 移到a這個mark的位置(exact position)
            - ` 'a `: 移到a這個mark第一個非空字元
        - delete or change
            - ` D `: 刪除該行cursor後
            - ` x `: 刪除cursor在的位置
            - ` X `: 刪除cursor前的字元
            - ` rb `: 把游標選起來的地方replace成b,b可換成其他的字元
            - ` s `: 把游標選起來的地方刪除,並進入插入模式
            - ` ciw `: 把游標在的整個字詞刪除,並進入插入模式
            - ` cw `: 把整個字詞從游標在的位置以後刪除,並進入插入模式
        - yank
            - ` yi( `: 當游標在()裡,複製()裡的東西
    - open files
        - 用tab開啟資料夾中的所有檔案: ` vim -p * `
        - 關閉tab中所有檔案: ` :qa `  or ` :wqa `
    - ` .vimrc `
        - highlight 搜尋的結果
            - [Highlight all search pattern matches](https://vim.fandom.com/wiki/Highlight_all_search_pattern_matches)
    - register
        - [!Resource](!Resource.md)
            - [Vim registers: The basics and beyond](https://www.brianstorti.com/vim-registers/)
            - [vi - How do I use vim registers? - Stack Overflow](https://stackoverflow.com/questions/1497958/how-do-i-use-vim-registers)
        - how to copy to a named register k: ` "kyy `
        - how to paste from a named register k: ` "kp `
        - after I yank a texts and delete other texts, how to bring back the original one?: vim will save the last yanked item in register ` "0 ` , so press ` "0p `  on the keyboard.

But I got some strange math rendering like below:
image
image

Do you have any clues about solving this problem?
Btw, thanks for the great effort for making this theme and I really love it! <3

For borrowing ideas

Firstly, very nice theme and well put together. First time I’ve seen one that has a dedicated section for daily journal entries. I think that’s a great differentiator and something 99% of blog themes ignore. I’ve been playing around with journal.txt and if that can be integrated into a blog. I have it working and it’s nice just typing into a single txt, committing it and having Github actions build the posts and github pages host it. However, journaltxt doesn’t have many configuration options.

I noticed you talk about integration with Obsidian and I’d also found this theme. Likely you may have too but there could be some good stuff in for helping enjoyment-work along.

Build issue - due to ... potential "[..]Javascript will need refactoring[..]" ?

I'm not deploying in Netlify but in CloudCannon, ... and i'm having a build issue there, i reported them :

Hi CloudCannon,

While importing a (Jekyll) repo i get

...


Generating...

Jekyll Feed: Generating feed for posts

------------------------------------------------
Jekyll 4.0.0 Please append `--trace` to the `build` command for any additional information or backtrace.

------------------------------------------------

x Your build failed, make an update and try again.

Their answer mentions a potential JS cause of... i'm just reproducing it here below:

...
I have taken a look in to your site and the error seems to be coming from an asynchronous function in

assets/js/contextmenu.js

I commented out the async function getRelatedHTML and

function showRelated and the site built. I believe this Javascript will need refactoring and looked in to.

FYI,

ThX !

A Dark Monochromatic Theme

I created a site with your theme and It is the best theme for Jekyll , but it really misses a dark theme. So , a Dark Monochromatic Theme is really needed like in Gwern.net . A theme switch button would be great.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.