We love your input! We want to make contributing to this project as easy and transparent as possible, whether it's:
- Reporting a bug
- Discussing the current state of the code
- Submitting a fix
- Proposing new features
- Becoming a maintainer
![]() |
![]() |
![]() |
![]() |
![]() |
|---|---|---|---|---|
| Latest ✔ | Latest ✔ | 10+ ✔ | Latest ✔ | 6.1+ ✔ |
 |  |  |  |  | |
| const sentimentAnalysis = require('sentiment-analysis'); | |
| /** | |
| * Gets the sentiment of a sentence | |
| * using the sentiment-analysis module | |
| * formats it, and prints to console | |
| */ | |
| function displaySentiment(inputText, sentimentScore){ |
These are my notes on how to set up GPG with the private key stored on the hardware Yubikey. This will reduce the chances of your GPG private key from being stolen, and also allow you to protect other secrets such as SSH private keys.
It's just some notes and a partial worklog for now, but I may turn it into a full blog post later.
| Filter | Description | Example |
|---|---|---|
| allintext | Searches for occurrences of all the keywords given. | allintext:"keyword" |
| intext | Searches for the occurrences of keywords all at once or one at a time. | intext:"keyword" |
| inurl | Searches for a URL matching one of the keywords. | inurl:"keyword" |
| allinurl | Searches for a URL matching all the keywords in the query. | allinurl:"keyword" |
| intitle | Searches for occurrences of keywords in title all or one. | intitle:"keyword" |
| // License: Polyform Non Commercial 1.0.0 | |
| // https://polyformproject.org/licenses/noncommercial/1.0.0/ | |
| const canvasSketch = require('canvas-sketch'); | |
| const Random = require('canvas-sketch-util/random'); | |
| const Color = require('canvas-sketch-util/color'); | |
| const { linspace, lerp } = require('canvas-sketch-util/math'); | |
| const risoColors = require('riso-colors').map(h => h.hex).filter(c => { | |
| const hex = Color.parse(c).hex.toLowerCase(); | |
| return hex !== '#000000' && hex !== '#ffffff' | |
| }); |
| --- | |
| # Page meta info, like heading, footer text and nav links | |
| pageInfo: | |
| title: Dashy | |
| description: Welcome to your new dashboard! | |
| navLinks: | |
| - title: GitHub | |
| path: https://github.com/Lissy93/dashy | |
| - title: Documentation | |
| path: https://dashy.to/docs |