Skip to content

Instantly share code, notes, and snippets.

View eiiot's full-sized avatar
👨‍💻

Eliot Hertenstein eiiot

👨‍💻
View GitHub Profile
@eiiot
eiiot / nextra-remote.md
Last active January 23, 2024 22:09
Nextra Remote Markdown

With Next.js, you can load remote content using next-mdx-remote.

For example, this section of the page was generated using a GitHub Gist as the source.

@eiiot
eiiot / quizlet-scraper.js
Created March 27, 2024 06:24 — forked from nodaguti/quizlet-scraper.js
Quizlet to CSV
/**
* Convert a list on Quizlet into CSV-formatted text.
* Usage:
* i) Copy and paste into your browser's console.
* ii) Run it!
*/
(() => {
const terms = document.querySelectorAll('.SetPageTerms-term');
const csv = [];
@eiiot
eiiot / init.lua
Created September 3, 2025 20:20
nvim config
vim.cmd([[set mouse=]])
vim.cmd([[set noswapfile]])
vim.opt.winborder = "rounded"
vim.opt.tabstop = 2
vim.opt.wrap = false
vim.opt.cursorcolumn = false
vim.opt.ignorecase = true
vim.opt.shiftwidth = 2
vim.opt.smartindent = true
vim.opt.number = true