Skip to content

Instantly share code, notes, and snippets.

Faster multi-line jumps in VSCode-Vim

One of the things that bothered me with VSCode-Vim was with how slow it was to use (number)(arrow) (eg, 42(down)) to move multiple lines down. In the screencast below, notice how it goes line-by-line rather than skipping ahead instantly.

☝ Figure 1: VSCode scrolls slooowly line-by-line when pressing 42(down).

Update (March 2023)

⭐ This post is best experienced in my blog: https://ricostacruz.com/posts/javascript-in-rails-7

JavaScript in Rails 7

JavaScript in Rails 7 will be different: Webpacker is retired, and there are 2 new gems to manage frontend files.

Situation

  • 🛌 Webpacker is retired — Webpacker 5 will be the last version, as announced on Jan 2022. The Webpacker 6 release candidate is now going to be community-maintained under a new name. (github.com: webpacker readme)
Base: (* = ctrl on hold)

    q*  w   e   r   t      y   u   i   o   p
    a   s   d   f   g      h   j   k   l  bks
    z   x   c   v   b      n   m   ,   .  ent*
           gui SYM sft    spc NAV alt

SYM layer (symbols)
@rstacruz
rstacruz / Arch Linux ARM on Crostini.md
Last active March 16, 2023 05:22
Arch Linux ARM on Crostini

Arch Linux ARM on Crostini

Screenshot

I got Arch Linux ARM installed on a Lenovo Chromebook Duet! I mostly used the instructions from the Arch Wiki as reference.

0. Before we begin

@rstacruz
rstacruz / README.md
Last active March 16, 2023 05:23
Next.js: loading a list of articles for a blog

Next.js: loading a list of articles for a blog

A blog might need a list of articles on its index page. Here's now I did it with Next.js.

Article files

@rstacruz
rstacruz / settings.js
Last active July 28, 2020 23:35
My VSCode settings
{
// --------------------------------------------------------------------------------
// Font settings
// --------------------------------------------------------------------------------
// Fonts
"editor.fontFamily": "Victor Mono, Iosevka, monospace", // 15/18 or 16/18
"editor.fontWeight": "600",
"editor.letterSpacing": 0,
"editor.lineHeight": 17,

Cloudflare worker example

This worker modifies the response HTML.

CloudFlare worker example

Sample CloudFlare worker that does redirects and rewrites.