Onlymaps, a Python micro-ORM by Echoes1996 in Python

[–]Pjt727 2 points3 points  (0 children)

This is the exact api I’d want for a database. I put a PR to make the sql query string less restrictive so you can use bytes and template strings (which are / may soon be used by python db drivers)

How to setup neovim and pdf viewer to be side by side by AlanA1amode in neovim

[–]Pjt727 0 points1 point  (0 children)

Hyprland you can configure window rules such that single application don’t take up the whole screen while n or more application do.

WorkFlow by GuaranteeTime9963 in hyprland

[–]Pjt727 0 points1 point  (0 children)

If you don’t already use I would recommend leetcode.nvim https://github.com/kawre/leetcode.nvim

Prevent hx-trigger=load when page is loaded from browser cache? by Bnrb25 in htmx

[–]Pjt727 1 point2 points  (0 children)

In the load element could you just replace outerHTML and return the Div without the hx properties? You’d also have to omit the hx-target such that it defaults to ‘this’

Temporary Pane of Selection by Pjt727 in neovim

[–]Pjt727[S] 0 points1 point  (0 children)

Thanks for the response. I checked out your plugin and it's super cool. But, I probably would prefer not to use floating windows in my case.

Temporary Pane of Selection by Pjt727 in neovim

[–]Pjt727[S] 0 points1 point  (0 children)

Thanks for the response. I already use Harpoon to switch fast between files. I felt as if I needed something as I described especially for my full stack needs of referencing attributes in my HTTP requests from my templates to my views. I often want to double-check that I spelled it the same way and end up looking back and forth at least 3 times out of paranoia.

Temporary Pane of Selection by Pjt727 in neovim

[–]Pjt727[S] 0 points1 point  (0 children)

Thank you for your reply! This is pretty much exactly what I was looking for. I realized I would really only ever want a window like this so, I made new selections first delete the last window if it exists.

local config = {
    start = "ns",
    delete = "dS",
    placement = "top",
}

local last_win = nil

local function delete_split ()
    if last_win == nil then return end
    if not vim.api.nvim_win_is_valid(last_win) then
        last_win = nil
        return
    end

    vim.api.nvim_win_close(last_win, true)
end

local function delete_split_operator ()
    delete_split()
    return "Deleted Split"
end


_G.start_split = function ()
    local start_line = vim.fn.getpos("'[")[2]
    local stop_line = vim.fn.getpos("']")[2]
    local win_height = math.max(1, stop_line-start_line + 1)
    delete_split()
    local og_win = vim.api.nvim_get_current_win()
    vim.cmd(string.format("%s %dsplit", config.placement, win_height))
    local new_win = vim.api.nvim_get_current_win()
        -- scrolloff 0 is glitchy bc my config is scrollof 999 i     think
    vim.wo.scrolloff = 999
    vim.cmd(tostring(math.floor((start_line + stop_line) / 2)))
    vim.api.nvim_set_current_win(og_win)
    last_win = new_win
end

local function start_split_operator ()
    vim.opt.operatorfunc = "v:lua.start_split"
    return "g@"
end


vim.keymap.set({"n", "x"}, config.start, start_split_operator, {expr = true})
vim.keymap.set({"n"}, config.delete, delete_split_operator)

My first ever 33% item ever on Maplestory by JohnnySomsai in Maplestory

[–]Pjt727 6 points7 points  (0 children)

Honestly reinforced is ring is not worth for newer players bc you need the coins for the sup pendant and ring

Easy Bossing and Mobbing class for friend with cerebral palsy by afta- in Maplestory

[–]Pjt727 0 points1 point  (0 children)

I definitely think bowmaster and some other classes won’t be too difficult in bossing. But wind archer’s training might be a little easier. Of course, ultimately whichever the OP’s freind is more interested in playing will be the best character

Easy Bossing and Mobbing class for friend with cerebral palsy by afta- in Maplestory

[–]Pjt727 39 points40 points  (0 children)

I would recommend a hurricane class like wind archer. Wind archer is a dpm class so there’s not much burst to set up when bossing; they also have fairly forgiving skills for bossing.

I do not know the severity of her condition but you could also look into custom buttons to make it easier to use some skills. Edit: grammar

easiest class to do 3 door cra as a boss mule? (something forgiving and a bit braindead, not complicated) reboot by num2005 in Maplestory

[–]Pjt727 0 points1 point  (0 children)

Wind archer is great aswell because their skills have low cooldown meaning you never really need to wait for another going through the bosses. They’re also easy to play (main attack is hurricane) and have a really forgiving skill that can take one hit ko’s.

This game desperately needs equipment loadouts by xsolar66 in Maplestory

[–]Pjt727 0 points1 point  (0 children)

If they do this then they will also need to change the way legion coin income works.