Lorem Picsum - Random images and strings

This page summarizes the projects mentioned and recommended in the original post on /r/neovim

Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
  • picsum-photos

    Lorem Ipsum... but for photos.

  • local function parseInt(str) return str:match("^%-?%d+$") end function appendLoremPicsumUrl() local width = parseInt(vim.fn.input("width: ")) local height = parseInt(vim.fn.input("height: ")) if width and height then local curl = require("plenary.curl") local res = curl.get("https://picsum.photos/" .. width .. "/" .. height, {}) local url = res.headers[3]:sub(11) local cursor = vim.api.nvim_win_get_cursor(0) local line = vim.api.nvim_get_current_line() local nline = line:sub(0, cursor[2] + 1) .. url .. line:sub(cursor[2] + 2) vim.api.nvim_set_current_line(nline) vim.api.nvim_win_set_cursor(0, { cursor[1], cursor[2] + url:len() }) end end vim.cmd("command LoremPicsum silent lua appendLoremPicsumUrl()")

  • WorkOS

    The modern identity platform for B2B SaaS. The APIs are flexible and easy-to-use, supporting authentication, user identity, and complex enterprise features like SSO and SCIM provisioning.

    WorkOS logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts