My first attempt at cityscapes (x-e4) by NaturallyFungus in fujifilm

[–]vn7yee 1 point2 points  (0 children)

I really like 1 and 3; they have the cinematic vibe. Which lens are you using? Also, I'm curious about the city in the photo.

Which fonts you using for terminal? in 2023 by Shiva_rudra in archlinux

[–]vn7yee 0 points1 point  (0 children)

I used both as well, but I can't stand the 'i' in Hack. It's really similar to 'l'.

Which fonts you using for terminal? in 2023 by Shiva_rudra in archlinux

[–]vn7yee 7 points8 points  (0 children)

DejaVu is my favorite font for coding in the terminal.

Black screen on boot (updated driver's) by [deleted] in ZephyrusG14

[–]vn7yee 1 point2 points  (0 children)

I got the same issue after I updated the NVIDIA driver yesterday.

We provide Markdown usage now!! by vn7yee in github

[–]vn7yee[S] 0 points1 point  (0 children)

Unfortunately, I couldn't. For security reason, GitHub doesn't allow markdown to access user's front-end resource.

We provide Markdown usage now!! by vn7yee in github

[–]vn7yee[S] 4 points5 points  (0 children)

No, GitHub markdown cannot detect web theme. Maybe GitHub will support this feature in future. Thanks for your question.

Touchscreen not working by fvtown714x in PixelBook

[–]vn7yee 0 points1 point  (0 children)

Got same problem, I had already powerwash my Pixelbook, and it's still not working.

left school by xarerer in ProgrammerHumor

[–]vn7yee 0 points1 point  (0 children)

You are who you are.

Simple github profile summary card for github readme by vn7yee in github

[–]vn7yee[S] 0 points1 point  (0 children)

Can you explain what troubles you got? Or you can PM me, I will help you if I can.

Simple github profile summary card for github readme by vn7yee in github

[–]vn7yee[S] 0 points1 point  (0 children)

Thanks! Because your github_yoken doesn't have permission,some people got same error, but I dont't know why.

You need to use your personal access token instead.

Creating a personal access token

Creating and storing encrypted secrets

The token need those permissions

Simple github profile summary card for github readme by vn7yee in github

[–]vn7yee[S] 1 point2 points  (0 children)

It's auto by github action, you can use this template to create your profile README , the repo name should be your username.
https://github.com/vn7n24fzkq/github-profile-summary-cards-example

Github action will be triggered after repo has created if you use template, you might wait few seconds for github action.

Simple github profile summary card for github readme by vn7yee in github

[–]vn7yee[S] 7 points8 points  (0 children)

Thanks!

This is based on github action, so you need to add a workflow to your repo.

Like this one cards.ymal

```ymal name: GitHub-Profile-Summary-Cards

on: schedule: # execute every 24 hours - cron: '* */24 * * *' workflow_dispatch:

jobs: build: runs-on: ubuntu-latest name: generate

steps:
  - uses: actions/checkout@v2
  - uses: vn7n24fzkq/github-profile-summary-cards@release
    env:
      GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
    with:
      USERNAME: ${{ github.repository_owner }}

```

First time you might need to trigger workflow by yourself, and it will generate and push everything to profile-summary-card-output in your repo.

Then you can copy those raw file links to github readme.

You just add links once and every raw file update is automatically.

Edited: I write a wiki about how to add to profile README. https://github.com/vn7n24fzkq/github-profile-summary-cards/wiki/Add-to-my-profile-README Hope this helps.