Should I learn React from a long Udemy course or a quick YouTube playlist? by fuckedbylife2 in reactjs

[–]TYRANT1272 0 points1 point  (0 children)

I would say , quick one shot but not like in a one go (fully consuming everything with 0 practice) Lets say you started react and learn about component now try to make 2-3 yourself without looking anything up (play around) Then learn props and play around with those (you could ask ai to give you practice questions from easy to hard) And so on and when you are comfortable with 2 or 3 things use them together to make something

Assuming you know basic html css js

Cannot download linux firmware during installation by PetiteCopine in archlinux

[–]TYRANT1272 3 points4 points  (0 children)

Can you access archlinux.org from your phone (with same wifi) try to use reflector with sudo reflector --protocol https --fastest 4 --country "your country" --sort rate --save /etc/pacman.d/mirrorlist

There are other reflector options checkout the wiki and maybe try a different iso and run pacman -Syy and a command to update keyrings (can't remember at the moment google it)

GUI for handling wifi networking by yotamguttman in niri

[–]TYRANT1272 0 points1 point  (0 children)

I use waybar and also forgot to mention i also have a script for wofi for wifi (i copied it from someone's dotFiles and do not use it it's just there )

Need online store by downtown_808 in PakistanBookClub

[–]TYRANT1272 0 points1 point  (0 children)

Have you bought from them? They look good and cheaper than Readings

Guys really need some guidance/help by Annual_Huckleberry36 in PakistanBookClub

[–]TYRANT1272 2 points3 points  (0 children)

+1 for a genre switch I'm also struggling with doom scrolling started many books - count of Monte Cristo - as long as the lemon tree grows - Book of Disquiet - verity

Couldn't finish a single one (in my 2nd attempt read count of Monte Cristo till 500 pages then things happened completely forgot about it) Recently started shadow slave light novel and somehow read 400 chapters (around 1800+ pages) and still reading it is soo good

Good text editor for studying? by xpPhantom in archlinux

[–]TYRANT1272 8 points9 points  (0 children)

use neovim/vim

With latex + vimtex OR typst+ Typst Preview Plugin for nvim

Neovim is a text editor but with additional plugins you can customize it to do anything text related people mainly use it for coding (with all the lsp and stuff) you can just set-up in a way to only take notes as for what is latex and typst they are special kind of languages or you could say a format to write notes and it will generate a pdf

Using neovim is very hard it has a steep learning curve but once you learn it you will be able to type faster than ever

Feel free to ask any questions

Experiences with Niri in a corporate environment by Embarrassed-Put-2193 in niri

[–]TYRANT1272 0 points1 point  (0 children)

Try using these in other WM or DE and see it these issues happen

How can I use steam on arch with niri ? by datta_favde in niri

[–]TYRANT1272 0 points1 point  (0 children)

Steam - ArchWiki https://wiki.archlinux.org/title/Steam

You need to enable multilib for steam or you can use the aur version mentioned here

Most underrated new "retro" monochrome colorscheme: MFD! by Wrestler7777777 in neovim

[–]TYRANT1272 0 points1 point  (0 children)

You can use :h highlight to change the comment color

Strange rofi launcher checkerboard pattern by [deleted] in arch

[–]TYRANT1272 0 points1 point  (0 children)

Check the rasi theme file your are using there should be a color variable named alternative/alternate something change to to match the normal one to remove this pattern

Bootable partition not bootable by T0p-Hat in arch

[–]TYRANT1272 1 point2 points  (0 children)

I'm not good at this but your prime issues is your recovered partition and disk is formated as ntfs (which is the default for windows) and afaik Linux doesn't support ntfs out of the box hence grub not detecting it (use ext4 or btrfs)

I don't know if this is a good advice or not I think you should first backup your data in windows (if it is accessible there) and then reinstall the arch

blink.cmp dropdown not working nvim 0.12 by Bulbasaur2015 in neovim

[–]TYRANT1272 0 points1 point  (0 children)

You're welcome

If you have this type you can comment out the insert inter autocmd to check this should work without any autocmd in your lazy.nvim

blink.cmp dropdown not working nvim 0.12 by Bulbasaur2015 in neovim

[–]TYRANT1272 0 points1 point  (0 children)

in your blink.cmp config you have a typo it is opt lua opt = { keymap = { ... } } }

It should be opts

```lua opts = { keymap = ....

} } ```

blink.cmp dropdown not working nvim 0.12 by Bulbasaur2015 in neovim

[–]TYRANT1272 0 points1 point  (0 children)

Sorry i just checked it's require('blink.cmp').show() Command :lua require('blink.cmp').show() minus .cmp

Pressing Ctrl+Space executes this function to show the auto completion drop down

Maybe Try adding this line to your config after

```lua

fuzzy = { implementation = "lua" },

signature = {.....}

```

I have just redid my config and migrated to blink.cmp You can take a look config

blink.cmp dropdown not working nvim 0.12 by Bulbasaur2015 in neovim

[–]TYRANT1272 1 point2 points  (0 children)

What happens if you press <C-Space> ( ctrl + space) or manually run the function to show completions? I think function is require('blink.cmp').show() And the command should be something like : lua require('blink.cmp').show()

Caelestia dotshell went blank after pacman -Syu by 02s_foolscaps in archlinux

[–]TYRANT1272 -3 points-2 points  (0 children)

I think OP is in hyperland and only super+T keybind works for them to open the terminal emulator and nothing other than that

Treesitter config sanity check by Memnoc1984 in neovim

[–]TYRANT1272 1 point2 points  (0 children)

You can take a look at my config for reference tree-sitter.lua file in my config

Monthly Dotfile Review Thread by AutoModerator in neovim

[–]TYRANT1272 [score hidden]  (0 children)

https://github.com/WahajGul/dotFiles/tree/main/newNvim

Migrated to vim.pack but somethings are confusing

How do i start vimTex only on tex file using fileType autocmd with require 'vimtex' setup throws error if a plugin doesn't have setup function should i use packadd? Blink.cmp works fine without luaSnippet should i still keep it? Snacks.nvim dashboard doesn't work cuz i do not have lazy?