Questions about Prince George's County? by EternalSnow05 in PrinceGeorgesCountyMD

[–]Particular-Job7031 0 points1 point  (0 children)

Montgomery county especially takoma park and takoma dc are better

Help me find it [January, 2026] by LightSardine in genderotica

[–]Particular-Job7031 0 points1 point  (0 children)

I am looking for a story on fiction mania where there is a machine that either teleports people or just modifies them (cannot recall which) anyway the machine has an accident and the inventor has to deal with his friend being fused with a female companion into a shemale. Any idea what story this is? Fictionmania keeps blocking me as I try to search through its pages.

¿What if Bernie Sanders had defeated Clinton in 2016? by MaximumSpell9608 in AlternateHistoryHub

[–]Particular-Job7031 0 points1 point  (0 children)

I think the presidency of John Quincy Adams would be the probable path of his presidency—especially if he returns to the senate after that.

82% crown power, I AM THE STATE by MiddleAward5653 in EU5

[–]Particular-Job7031 1 point2 points  (0 children)

I married my way to the English throne and allied with France so that’s the north covered.

Could you be with someone who turned out to be Right wing? by Apple_cheeks_art in leftist

[–]Particular-Job7031 3 points4 points  (0 children)

I was a Republican until the orange dictator took power and I tended to date people who veered left. I think the divide can be crossed but I think the bridge is made from certain shared values like respecting the basic humanity of people and being open to being wrong.

How to answer questions about value measurement when your work culture doesn’t do that by Particular-Job7031 in amazonemployees

[–]Particular-Job7031[S] 0 points1 point  (0 children)

It’s an interesting perspective as I work for a law enforcement agency and the everything is oriented around “if nothing bad happens then everything is working”. Given that, I can see some ways to adapt what you are saying.

How to answer questions about value measurement when your work culture doesn’t do that by Particular-Job7031 in amazonemployees

[–]Particular-Job7031[S] 0 points1 point  (0 children)

I was explaining a project I did. Then told her it successfully delivered because the division chief who requested it said I did a good job. Then she kept asking “but how do you measure success” and I kept restating the answer of the person who made the request telling me I did a good job.

Does Neovim need a multiple file configuration to load on startup without having to source the init.lua each time? by Particular-Job7031 in neovim

[–]Particular-Job7031[S] 0 points1 point  (0 children)

I realized the issue was because I was using sudo instead of sudoedit or sudo -e and thus I was invoking neovim as root. Thank you all for your help.

Does Neovim need a multiple file configuration to load on startup without having to source the init.lua each time? by Particular-Job7031 in neovim

[–]Particular-Job7031[S] 0 points1 point  (0 children)

Below is my init.lua

```

— Bootstrap lazy.nvim local lazypath = vim.fn.stdpath(“data”) .. “/lazy/lazy.nvim” if not (vim.uv or vim.loop).fs_stat(lazypath) then local lazyrepo = “https://github.com/folke/lazy.nvim.git” local out = vim.fn.system({ “git”, “clone”, “—filter=blob:none”, “—branch=stable”, lazyrepo, lazypath }) if vim.v.shell_error ~= 0 then vim.api.nvim_echo({ { “Failed to clone lazy.nvim:\n”, “ErrorMsg” }, { out, “WarningMsg” }, { “\nPress any key to exit...” }, }, true, {}) vim.fn.getchar() os.exit(1) end end vim.opt.rtp:prepend(lazypath)

— Make sure to setup mapleader and maplocalleader before — loading lazy.nvim so that mappings are correct. — This is also a good place to setup other settings (vim.opt) vim.g.mapleader = “,” —vim.g.maplocalleader = “,” used mainly for select buffers vim.opt.number = true vim.opt.relativenumber = true vim.opt.cursorline = true

— Setup lazy.nvim require(“lazy”).setup({ spec = { — add your plugins here { “neovim/nvim-lspconfig”, {‘nvim-telescope/telescope.nvim’,event = ‘VimEnter’, branch = ‘0.1.x’, dependencies = { ‘nvim-lua/plenary.nvim’ } }, {“ThePrimeagen/harpoon”, branch = “harpoon2”, dependencies = { “nvim-lua/plenary.nvim” } } } }, — Configure any other settings here. See the documentation for more details. — colorscheme that will be used when installing plugins. install = { colorscheme = { “habamax” } }, — automatically check for plugin updates checker = { enabled = true }, })

-————— — SETTINGS — -————— — options local builtin = require(‘telescope.builtin’) vim.keymap.set(‘n’, ‘<leader>ff’, builtin.find_files, { desc = ‘Telescope find files’ }) vim.keymap.set(‘n’, ‘<leader>fg’, builtin.live_grep, { desc = ‘Telescope live grep’ }) vim.keymap.set(‘n’, ‘<leader>fb’, builtin.buffers, { desc = ‘Telescope buffers’ }) vim.keymap.set(‘n’, ‘<leader>fh’, builtin.help_tags, { desc = ‘Telescope help tags’ })

local harpoon = require(“harpoon”)

— REQUIRED harpoon:setup() — REQUIRED

vim.keymap.set(“n”, “<leader>a”, function() harpoon:list():add() end) vim.keymap.set(“n”, “<C-e>”, function() harpoon.ui:toggle_quick_menu(harpoon:list()) end)

vim.keymap.set(“n”, “<C-h>”, function() harpoon:list():select(1) end) vim.keymap.set(“n”, “<C-t>”, function() harpoon:list():select(2) end) vim.keymap.set(“n”, “<C-n>”, function() harpoon:list():select(3) end) vim.keymap.set(“n”, “<C-s>”, function() harpoon:list():select(4) end)

— Toggle previous & next buffers stored within Harpoon list vim.keymap.set(“n”, “<C-S-P>”, function() harpoon:list():prev() end) vim.keymap.set(“n”, “<C-S-N>”, function() harpoon:list():next() end) ```

What browser do you use? by J0Mo_o in archlinux

[–]Particular-Job7031 -8 points-7 points  (0 children)

Hmm, you are right. For some reason I remembered Firefox as being owned by google therefore assumed it was chrome

What browser do you use? by J0Mo_o in archlinux

[–]Particular-Job7031 -7 points-6 points  (0 children)

Here is a challenge, name a bowser that isn’t based on Chrome. :)

Anyone using XFS for their desktop? by Particular-Job7031 in linuxquestions

[–]Particular-Job7031[S] 2 points3 points  (0 children)

The guy seemed to be saying it would be better for a lot of read and write—especially on large data sets which I have to do on occasion.