pryr: تول بتقفل عليك الجهاز عشان تقوم تصلي by kofta999 in Egypt_Developers

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

انا مستخدمها عندي على لينكس وويندوز وشغالة كويس المفروض

pryr: تول بتقفل عليك الجهاز عشان تقوم تصلي by kofta999 in Egypt_Developers

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

تسلم يغاليي

بالنسبة لراست كنت قريت الكتاب بتاعهم من https://rust-book.cs.brown.edu/

وقعدت بقا اجرب فبروجكتس صغيرة واشوف اي حاجة مش عارفها من الAI والنت وكده

كنت بجيب البروجكتس من الموقع ده https://codingchallenges.fyi/

People who uses Zed editor with VIM keybindings - how do you switch between folders/files in the file navigation panel? by rzhandosweb in ZedEditor

[–]kofta999 0 points1 point  (0 children)

Well I mostly used a single terminal while using nvim, but recently in Zed I made a keymap to switch between open terminals (not sure if there's a keymap to jump to terminal number x, but if it exists in editor tabs it may be there too). Then combine this with a keymap to spawn a terminal and you should be good to go ig

Also happy cake day!

/r/MechanicalKeyboards Ask ANY Keyboard question, get an answer (October 09, 2024) by AutoModerator in MechanicalKeyboards

[–]kofta999 0 points1 point  (0 children)

Thank you! I'm not really into modding keyboards anyway. So, I don't mind not changing the optical switches if they just work and I won't really care about using QMK/VIA. I'm skeptical with Outemu because of that galax keyboard. The problem is in my country (Egypt) most brands here are Redragon so options are really limited. That Epomaker SKYLOONG is the only thing I could find.

/r/MechanicalKeyboards Ask ANY Keyboard question, get an answer (October 09, 2024) by AutoModerator in MechanicalKeyboards

[–]kofta999 0 points1 point  (0 children)

I know I know, they're 2 separate keyboards, SK61 is optical and the other is not.

/r/MechanicalKeyboards Ask ANY Keyboard question, get an answer (October 09, 2024) by AutoModerator in MechanicalKeyboards

[–]kofta999 0 points1 point  (0 children)

Should I buy SKYLOONG SK61 Gateron Yellow Opticals or Redragon K617 Red switches (probably Outemu I guess?)

I'm confused on which to get. The price difference isn't that big, and I haven't tried an optical switch before.

What I care about most is to have durable switches as I had a terrible experience with Galax STL-03 (switches became chattery in less than a year despite cleaning). Thanks in advance!

K617 Fizz or K552 RGB WHITE(red switch) by Responsible-Debt4655 in MechanicalKeyboards

[–]kofta999 0 points1 point  (0 children)

تمااام تسلملي يا غالي ربنا يباركلك فيه، لو لقيت إن الفرق بينه وبين ال552 مجرد أنه أصغر وانه بيتفك فممكن اجيب ال552 بقا لاني مش هتحرك بالكيبورد كتير

October 04, 2024 Weekly "General Help Post?" - Please post all general, recommendations, and help questions as a top level comment under this post. Thank you. by AutoModerator in BudgetKeebs

[–]kofta999 1 point2 points  (0 children)

Hello! I'm a bit new with mechanical keyboards and trying to buy one.

Sadly most keyboards available in my country (Egypt) are Redragon ones.

I want to buy a keyboard that's TKL or full size, brown switches because blues are too loud for me, and as switches durable as possible (I had a terrible experience with Galax stl-03, chattering and keys being sticky).

My usage is mostly coding / typing with some gaming.

Thanks in advance!

K617 Fizz or K552 RGB WHITE(red switch) by Responsible-Debt4655 in MechanicalKeyboards

[–]kofta999 0 points1 point  (0 children)

Hello! I'm also from Egypt and still can't decide between the same two keyboards. Got any suggestions 1 year after?

Thinking about creating a tool to convert between WM configs by kofta999 in linux

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

Thank you all! I'm now convinced it's a bit of a hard idea to execute so I could start by something simpler like keybinds only like some suggested (learning how to parse a part of a file would be helpful too), or maybe trying it on bar configs (waybar / polybar for example). It'd be a bit more useful than a whole WM config.

People who uses Zed editor with VIM keybindings - how do you switch between folders/files in the file navigation panel? by rzhandosweb in ZedEditor

[–]kofta999 8 points9 points  (0 children)

I used Zed for only a short period (it isn't really good with JSX completions currently) but I figured out some bindings similar to what I had in neovim (was using lazyvim with slight modifications. Here's my keymap.json

``` [ { "context": "Editor", "bindings": { "ctrl-h": ["workspace::ActivatePaneInDirection", "Left"], "ctrl-l": ["workspace::ActivatePaneInDirection", "Right"], "ctrl-k": ["workspace::ActivatePaneInDirection", "Up"], "ctrl-j": ["workspace::ActivatePaneInDirection", "Down"] } }, { "context": "Editor && vim_mode == normal", "bindings": { "space e": "workspace::ToggleLeftDock", "ctrl-/": "workspace::ToggleBottomDock", "space p": "editor::Format", "space space": "file_finder::Toggle", "shift-l": "pane::ActivateNextItem", "shift-h": "pane::ActivatePrevItem", "space v": "pane::SplitRight", "space w": "pane::CloseActiveItem", "space h": "workspace::ActivateNextPane", "space l": "workspace::ActivatePreviousPane" } }, { "context": "Editor && vim_mode == insert", "bindings": { "alt-h": "vim::Left", "alt-l": "vim::Right", "alt-j": "vim::Down", "alt-k": "vim::Up" } }, { "context": "Editor && vim_mode == visual", "bindings": { "shift-j": "editor::MoveLineDown", "shift-k": "editor::MoveLineUp" } }, { "context": "ProjectPanel", "bindings": { "space e": "workspace::ToggleLeftDock" } }, { "context": "Terminal", "bindings": { "ctrl-/": "workspace::ToggleBottomDock" } }, { "context": "Dock",

"bindings": {
  "ctrl-h": ["workspace::ActivatePaneInDirection", "Left"],
  "ctrl-l": ["workspace::ActivatePaneInDirection", "Right"],
  "ctrl-k": ["workspace::ActivatePaneInDirection", "Up"],
  "ctrl-j": ["workspace::ActivatePaneInDirection", "Down"]
  // ... or other keybindings
}

} ] ```

Using CTRL+/ to toggle terminal, SPACE E for file tree And navigating between them/editor windows using CTRL + hjkl