npx npkill
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo chown -R www-data:www-data . | |
| sudo find . -type d -exec chmod 755 {} \; | |
| sudo find . -type f -exec chmod 644 {} \; |
When you receive the warning jsregexp library required for Placeholder-transformations in :checkhealth luasnip, the jsregexp C library needs to be compiled. On modern systems (such as Apple Silicon), this often goes wrong because the library is built for the wrong Lua version.
Neovim uses LuaJIT, which is compatible with Lua 5.1. When you install jsregexp via a standard package manager, it is often built for Lua 5.4 or higher. This results in the error message: dlsym(... luaopen_jsregexp): symbol not found.
- Compile for Lua 5.1 Use LuaRocks to build the module specifically for the Lua 5.1 ABI. This ensures that the binary symbols are compatible with Neovim.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @use "sass:color"; | |
| @use "../mq/mq" as *; | |
| // @use "../settings/settings" as *; | |
| @use "../settings/variables" as *; | |
| html { | |
| cursor: auto; | |
| font-size: 16px; | |
| line-height: 1.5; | |
| -moz-tab-size: 2; |
First install color-convert
npm install color-convertCreate a javaScript file (different require syntax for CommonJs: https://reflectoring.io/nodejs-modules-imports/ , this is Common JS)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php // colophon section which can be edited in WordPress customizer (GeneratePress child-theme) | |
| add_action( 'customize_register', function( $wp_customize ) { | |
| $wp_customize->add_section( 'fia_colophon_section', array( | |
| 'title' => __( 'Colofon Informatie', 'fia-theme' ), | |
| 'priority' => 120, | |
| ) ); | |
| // Velden configuratie | |
| $fields = array( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| gs -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -dPDFSETTINGS=/prepress -dNOPAUSE -dQUIET -dBATCH -sOutputFile=compressed.pdf input.pdf |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* https://codepen.io/editor/chriscoyier/pen/0198772a-a759-7dc4-b8fc-1dfdbed39fdb | |
| ** https://shoptalkshow.com/681/ */ | |
| @layer reset { | |
| html { | |
| color-scheme: light dark; | |
| font: | |
| clamp(1rem, 1rem + 0.5dvw, 2rem) / 1.4 system-ui, | |
| sans-serif; | |
| tab-size: 2; | |
| hanging-punctuation: first allow-end last; |
NewerOlder