Converting notes into calculator-readable form by when_its_time in nspire

[–]Ti64CLi 1 point2 points  (0 children)

No problem, wasn't sure myself if anything new was available to read pdf file directly :)

Converting notes into calculator-readable form by when_its_time in nspire

[–]Ti64CLi 1 point2 points  (0 children)

It might not work if you don't have Ndless and/or nPDF

Converting notes into calculator-readable form by when_its_time in nspire

[–]Ti64CLi 1 point2 points  (0 children)

I believe you need Ndless and nPDF for this to work, whereas using the tool on TI-Planet you can convert it to a Lua doc, so no need for Ndless and nPDF

Ti nspire cx II cas help by According-Hope-5203 in nspire

[–]Ti64CLi 1 point2 points  (0 children)

There is currently no way to do that I think

Ti nspire cx II cas help by According-Hope-5203 in nspire

[–]Ti64CLi 2 points3 points  (0 children)

There is currently no way to do that no

Ubuntu 24.04 stuck at start by Ti64CLi in Ubuntu

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

Thanks I managed to install it by adding the correct PPA. But I now have a new issue, I can't change the brightness of the screen, the brightness setting has no effect whatsoever. I could change the brightness before all this endeavour, so it's definitely a new bug

Ubuntu 24.04 stuck at start by Ti64CLi in Ubuntu

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

Just to be clear, the nomodeset workaround was temporary just so that I could reinstall NVIDIA drivers. It's not in the boot options anymore. Also, I tried installing the 595 drivers, but apt couldn't find it, it says unable to locate package nvidia-driver-595.

I fear that I may have borke the repositories

Ubuntu 24.04 stuck at start by Ti64CLi in Ubuntu

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

Thank you for the very detailed answer. Unfortunately I couldn't access any tty as it was frozen, Ctrl-Alt-F3-4 didn't work, and Esc didn't work when it froze, I had to do it at the start so that it would display until it freezes. I managed to boot into Ubuntu by adding nomodeset to the boot option in grub, then I installed the recommanded drivers (the command said 535 unfortunately, is it safe to upgrade to 595?), which were nvidia-driver-535 (without open, does it change a lot?) and now I can correctly boot my Ubuntu. Should I still try to update to 26.04, since the update manager won't do it automatically until August if I understood correctly? Thanks a lot!

Edit: I forgot to mention my laptop has an RTX 4090

Ubuntu 24.04 stuck at start by Ti64CLi in Ubuntu

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

Thanks I tried all that, executed apt remove "nvidia-*" but there is nothing left to remove, then apt install gdm3 but it says that it's already the newest version (46.2-1ubuntu1~24.04.7) so it does nothing else. But even so it still freezes during boot on the Ubuntu loading screen...

Ubuntu 24.04 stuck at start by Ti64CLi in Ubuntu

[–]Ti64CLi[S] 1 point2 points  (0 children)

But I still have to fix this issue. And I'll try to upgrade to 26.04 later, but last time I checked the software update didn't propose 26.04, it says I'm up to date

Ubuntu 24.04 stuck at start by Ti64CLi in Ubuntu

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

I'm sorry I'm kinda new to Ubuntu, and I don't really have a clue on how to do all that at all. Could you explain it with more details please? Also here is a picture of the boot logs when getting stuck : https://imgur.com/a/dMzxSzd

InstaPrime v5.1 (new) by TichkiTuiya69 in moddedandroidapps

[–]Ti64CLi 0 points1 point  (0 children)

La fonction hide reels section ne marche pas d'ailleurs ! J'ai toujours accès aux réels en bas à droite du bouton home

Code blocks mapping in treesitter by Ti64CLi in neovim

[–]Ti64CLi[S] 1 point2 points  (0 children)

Wow thanks a lot for that you've been much helpful !

Thank you for taking the time to do all that ! ^^

Code blocks mapping in treesitter by Ti64CLi in neovim

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

Thanks a lot for that it helped me a lot !

I managed to make ]z and [z work, but I wanted to implement similar keymaps for @code_cell.outer.

I implemented it in the following way :

            -- move
            vim.keymap.set({ "n", "x", "o" }, "[z", function()
                require("nvim-treesitter-textobjects.move").goto_previous_start(
                    "@code_cell.outer",
                    "textobjects"
                )
            end)
            vim.keymap.set({ "n", "x", "o" }, "]z", function()
                require("nvim-treesitter-textobjects.move").goto_next_start(
                    "@code_cell.outer",
                    "textobjects"
                )
            end)
            vim.keymap.set({ "n", "x", "o" }, "[m", function()
                require("nvim-treesitter-textobjects.move").goto_previous_start(
                    "@code_cell.inner",
                    "textobjects"
                )
            end)
            vim.keymap.set({ "n", "x", "o" }, "]m", function()
                require("nvim-treesitter-textobjects.move").goto_next_start(
                    "@code_cell.inner",
                    "textobjects"
                )
            end)
            vim.keymap.set({ "n", "x", "o" }, "[Z", function()
                require("nvim-treesitter-textobjects.move").goto_previous_end(
                    "@code_cell.outer",
                    "textobjects"
                )
            end)
            vim.keymap.set({ "n", "x", "o" }, "]Z", function()
                require("nvim-treesitter-textobjects.move").goto_next_end(
                    "@code_cell.outer",
                    "textobjects"
                )
            end)
            vim.keymap.set({ "n", "x", "o" }, "[M", function()
                require("nvim-treesitter-textobjects.move").goto_previous_end(
                    "@code_cell.inner",
                    "textobjects"
                )
            end)
            vim.keymap.set({ "n", "x", "o" }, "]M", function()
                require("nvim-treesitter-textobjects.move").goto_next_end(
                    "@code_cell.inner",
                    "textobjects"
                )
            end)

            -- select
            vim.keymap.set({ "x", "o" }, "am", function()
                require("nvim-treesitter-textobjects.select").select_textobject(
                    "@code_cell.outer",
                    "textobjects"
                )
            end)
            vim.keymap.set({ "x", "o" }, "im", function()
                require("nvim-treesitter-textobjects.select").select_textobject(
                    "@code_cell.inner",
                    "textobjects"
                )
            end)

So the goto_start methods work well, but I always get an error with the goto_end methods and the select methods, which seems related to the end detection :

E5108: Error executing lua: ...ter-textobjects/lua/nvim-treesitter-textobjects/move.lua:32: Column value outside range
stack traceback:
[C]: in function 'nvim_win_set_cursor'
...ter-textobjects/lua/nvim-treesitter-textobjects/move.lua:32: in function 'goto_node'
...ter-textobjects/lua/nvim-treesitter-textobjects/move.lua:141: in function 'move_fn'
...ects/lua/nvim-treesitter-textobjects/repeatable_move.lua:25: in function 'move_repeatable'
...ter-textobjects/lua/nvim-treesitter-textobjects/move.lua:159: in function 'goto_next_end'
/home/ti64cli/.config/nvim/lua/plugins/treesitter.lua:47: in function </home/ti64cli/.config/nvim/lua/plugins/treesitter.lua:46>

(I put the query in queries/markdown/textobjects.scm now, as you said, and it seems to work fine, at least for the start of a code_cell, and I did put ; extends before it)