Amber Shen (@whosamberella)
한 사용자가 에이전트 스킬을 공개했습니다. 긴 유튜브 영상(1시간)을 자동으로 요약해 슬라이드로 변환해주는 도구로, 설치는 npx add ambershen/youtube-to-slides로 간단합니다. TLDW(Too Long; Didn't Watch) 형식의 강연·팟캐스트에 유용하며, 작성자는 Da Vinci 스타일의 슬라이드 샘플을 공유했습니다.
Amber Shen (@whosamberella)
한 사용자가 에이전트 스킬을 공개했습니다. 긴 유튜브 영상(1시간)을 자동으로 요약해 슬라이드로 변환해주는 도구로, 설치는 npx add ambershen/youtube-to-slides로 간단합니다. TLDW(Too Long; Didn't Watch) 형식의 강연·팟캐스트에 유용하며, 작성자는 Da Vinci 스타일의 슬라이드 샘플을 공유했습니다.
Feix gehört zu den vielen mysteriösen, aber weniger erfreulichen Erscheinungen in der Griesmoorrgeion. Man sagt, dass es sich bei ihm (oder ihnen) um eine welke Fee handelt, der sich aus der Haut von Toten eine Hülle baut, die er bewohnen und steuern kann. Er versucht, Kinder in Gefahren zu locken, bis sie ängstlich genug sind, dass er sie fressen kann. Im Camp wurde er jedoch noch nie gesehen, da er die Nähe zu Wirrlichtern nicht ertragen kann.
#fee #feebruar #rollenspiel #demon #dämon #npx
Just found an effective critical css generator: https://w3speedup.com/tools/critical-css-generator/
Great for boosting page speed / load times. I used https://www.npmjs.com/package/critical in the past and it's not as good.
#blogging #webdev #criticalcss #websiteperformance #css #npx
Mastering npx: A Cheatsheet for npm and Node.js Power Users, by (not on Mastodon or Bluesky):
📊 Automated performance audits - run performance traces, analyze results, and investigate specific issues like high #LCP numbers for faster loading
⚙️ Easy setup with single #MCP client config entry using #npx chrome-devtools-mcp@latest command for instant integration
🔗 Open source standard connecting #LLM models to external tools and data sources for enhanced debugging capabilities
Woah very cool, I just tried using #Pagefind indexer with #NodeJS for the first time to add #search functionality to my current #Hugotheme that doesn't have it built-in. https://github.com/hugo-theme-anubis2/hugo-theme-anubis2
Still customizing... it was amazing to see the indexing and being able to search for any keyword immediately!
I really do love learning about #Hugo #SSG. Despite more code, it makes more sense to me than clunky #WordPress' GUI and backend that's not required for basic blogs like mine. #npm #npx #node
At the first glance, both npm and npx looks similar tools as they both deal with the package installation in our apps. But if we dig deeper we see they both servers the different purpose.
Read Full Blog
https://programmingly.dev/npm-vs-npx-which-one-is-better/
I enjoy NPX for what it is but it's not super conducive to musical theatre. And I'm not quite sure how to fix that, especially when it comes to works in development. Cold reading a musical is so much more difficult than reading a play.
Maybe there's a new format that can be explored. Hyperlinking demos might be a start. It would be nice to have some sort of built-in media player as well.
#playwriting #musicaltheatre #NPX #musical #Musicals #Theatre #theater
How to Install and Use NPX in Linux
#Linux #NPX #NPM #NodeJs #Programming #Coding
https://linuxtldr.com/npx-package-runner/
How to Install and Use NPX on Ubuntu (Ultimate Guide)
#NPX #Node #Programming #Coding #Linux #Ubuntu
https://ubuntushell.com/install-npx/
How to Install and Use NPX in Linux: A Step-by-Step Guide
#Linux #NodeJS #Development #Programming #NPX #Coding #Tech
https://linuxtldr.com/npx-package-runner/
Heard about a new “package manager” called #pkgx yesterday, that more or less works like #npx, so it does not pollute your own system and installs itself in the guts of your machine.
I gave it a try and it works well. I had a pretty low brew footprint, due to the new machine, anyways, but now I am down to #ddev, #pkgx itself (for now) and two commands I really love called trash and z.
Both of them do not exist as a pkgx package, so I think I will try to create them for the community.
If I had a Euro for every node package manager in existence, I wouldn't have to write software anymore.
✍️ #TIL | Avoid NPX install prompt
Using npx (Node Package Runner) in a GitHub Action can be difficult, because for security reasons the command requires to type YES at a prompt if the package is not present in the local project dependencies. This can be suppressed by providing --yes in version 7. But there is a workaround for v6 and above, by passing yes via environment variable: npm_config_yes=true npx ...