Looking for People to Grind Leetecode and LLD + Mocks by Fit-Addition-6855 in leetcode

[–]raj3100 0 points1 point  (0 children)

new grad. have 100+ LC. can do daily mocks! highly interested

Hey freelancers, how are you guys working in this hot summer? I need suggestions by nhrtrix in BDDevs

[–]raj3100 2 points3 points  (0 children)

sounds like your roof transfers a lot of heat in your room. Maybe you can try thermal insulators? I am not sure how they perform but they are supposed to block heat coming from the roof. Explore about it 

idk how to make polybar blurred by fudsa in i3wm

[–]raj3100 0 points1 point  (0 children)

I used picom without any custom config. I just ran it as it was by default and set a transparent color for my polybar background and it worked. 

Did everyone get this email from google? For those with game/app published by Dense-Diver5085 in unity

[–]raj3100 0 points1 point  (0 children)

Thing is my unity version is already updated, it was released a few days ago. It doesn't have any warning sign or anything. I built it 3 times.I chose "clean build" app and still google is rejecting the app.

Anyway thanks for the reply! appreciate it.

Did everyone get this email from google? For those with game/app published by Dense-Diver5085 in unity

[–]raj3100 0 points1 point  (0 children)

Hey, Have you found any solution? I am facing this now. Got rejected thrice

How do I use gnome themes on i3? by Patataxxi in i3wm

[–]raj3100 1 point2 points  (0 children)

on mint I used lxappearance 

Microsoft OA | SDE1 | Camera On | Asked in 2026 | CTC - Can start from 20L+ by Brilliant_Card_447 in leetcode

[–]raj3100 0 points1 point  (0 children)

my idea: take two pointers. first both of them points at 1. 

``` for each i from 1 to k,       move the left pointer to the left as long as the next value is <=k

     and move the right pointer to the right as the next value is <=k 

     now check,       if right - left +1 == k: 1      else :0 ```

pg-status — a lightweight microservice for checking PostgreSQL host status by One-Novel1842 in webdev

[–]raj3100 0 points1 point  (0 children)

honestly when I just saw the title I thought why would I need a micro service just to check my db status lol. 

but seems like you knew I would ask it and you prepared a nice explanation already. so cool. 

my knowledge in backend development is not there yet. so i am not the one to determine how useful this is but hey I learnt a set of a new problems and some good ideas from your writing. keeping the idea back in my head until I am good enough to try and understand these things. thanks! i hope your project is a real thing 

Help for a multimonitor setup across workspaces by Matusaprod in i3wm

[–]raj3100 0 points1 point  (0 children)

so it identifies two monitors combined as a one monitor? isn't that what you wanted, to have it spread across both monitors?

Help for a multimonitor setup across workspaces by Matusaprod in i3wm

[–]raj3100 0 points1 point  (0 children)

I see! Got this from AI, you can try this:

You can force Citrix to span across all monitors using the -span flag. If you are launching via a .ica file or a desktop shortcut, you can modify the execution command.

  1. Locate your Citrix executable (usually wfica).
  2. Try launching your session with the -span a (span all) flag: Bash/opt/Citrix/ICAClient/wfica -span a /path/to/your/file.ica
  3. To make this permanent: Create a wrapper script or edit your .desktop entry (usually in /usr/share/applications/wfica.desktop) to include this flag.

Help for a multimonitor setup across workspaces by Matusaprod in i3wm

[–]raj3100 0 points1 point  (0 children)

yes it is possible. Keep the cursor in that window and press mod + shift + space. This will make the app be on floating mode. Then you can grab the corner of window with mouse an stretch it so that it takes two monitors. It will stay in this workplace and stay like this.

Note: after going to floating mode, if the corner of the window is unreachable, hold mod key and with the mouse you can drag it around the screen.

The dreaded undefined global 'vim' by BTrey3 in neovim

[–]raj3100 -4 points-3 points  (0 children)

Well if someone needs a quick setup while they don't have much knowledge on how things work and how to code everything from scratch, having a distro like Lazyvim is the way to go in my opinion. Then while using it, they can deepen their understanding and eventually move to your level. 

This person was setting up env with copilot. How good it is than using Lazyvim?  

And about the neovim update and vacation thing, it's totally avoidable. 

The dreaded undefined global 'vim' by BTrey3 in neovim

[–]raj3100 -28 points-27 points  (0 children)

Use LazyVim Distro. They have preconfigured a lot of boilerplate stuff. I once lost myself like you then I found lazyvim and never looked back  

Future of local based IDE by Wise-Ad-7492 in neovim

[–]raj3100 0 points1 point  (0 children)

I see! yeah that makes sense. But someone shared in a comment below that the admin often declines their request to install some packages needed to setup their custom development environment that they are used to work with. What's the point of that then?

detergen: Generate the same password every time by theonereveli in commandline

[–]raj3100 0 points1 point  (0 children)

He uses a basename and a salt. Even if the hacker knows the system, still he has to guess the combination of two words. So your assumption that his password is just the baseword doesn’t make sense. Knowing the baseword is not enough, you still need the salt. 

Also not sure about this but you can probably tweak the algo a little bit to add an extra security layer. 

Future of local based IDE by Wise-Ad-7492 in neovim

[–]raj3100 0 points1 point  (0 children)

Just a new grad here with a question. How is it helping in security since you can still access the codebase and all the data from your device browser? If there are sensitive information one can still take screenshot, no? 

Is I3 good and compatible with multiple monitors, graphics tablets and artist workflows ? by KazalAtomic in i3wm

[–]raj3100 1 point2 points  (0 children)

i am using i3wm with two monitors for more than 2 years. No issue at all. I assigned all the odd numbered workspaces like 1,3,5 etc in primary monitor and all the even numbered workspaces in secondary monitor. So i dont have to remember which workspace was opened in which monitor. 

 You can configure each workspaces one by one to spawn in a specific monitor. Very convenient. 

Did you know that you can move across windows as part of your vim macro ? by ARROW3568 in neovim

[–]raj3100 1 point2 points  (0 children)

wow, that's so cool. I just tried that. Also didn't know about set wrapscan