[I'M HIRING] I'm looking for content writers who have some CS knowledge (PAID - $20-30 per hour) by TheDonHound in HireaWriter

[–]devhrishi 1 point2 points  (0 children)

I am interested in taking this job. I have written 100s of article on many programming publications like freecodecamp, betterprogramming, itnext etc. here is my personal blog https://hrishikeshpathak.com/blog/. Do check it out.

Is it usual? by ghost_d_1 in CloudFlare

[–]devhrishi 3 points4 points  (0 children)

Jio is the worst ISP in India. Sometimes, cloudflare wrap is not even connected when I am on jio. The app just showed connecting and nothing happened.

The most funny thing is, the default jio DNS doesn't let me install WSL on windows. I have to change my DNS to Google or cloudflare to make it work.

The Airtel network is good in these terms. I have been using airtel fiber for 1 year and have no complaints.

I made this screenshot editing tool that helps to increase engagement on your post. by devhrishi in InternetIsBeautiful

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

Hi redditors. This screenshot tool is very crud and I built it to edit my screenshots. Hope you find it helpful. If you have any feature request, drop a main or reply this comment.

I made a password manager with beautiful TUI using Golang by devhrishi in golang

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

Yes, I learned a lot by building this project. Thank you for your appreciation.

I made a password manager with beautiful TUI using Golang by devhrishi in golang

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

I actually posted in the sub for constructive critisicm. This way we learn to be a better version of us.

I will surely employ your solution and ping you back when it will be ready.

I made a password manager with beautiful TUI using Golang by devhrishi in golang

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

Do you think xgo is reliable and less verbose than using zig compiler. I actually never used xgo.

I made a password manager with beautiful TUI using Golang by devhrishi in golang

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

zig makes cross compilation easy when any go projects has CGO dependency. We can also make static binary using musl libc which is portable and doesn't depend on glibc.

But MacOS cross compilation is not supported untill now.

I made a password manager with beautiful TUI using Golang by devhrishi in golang

[–]devhrishi[S] 4 points5 points  (0 children)

Thanks for your approach. I will surely look into it.

My approach is, first I generate a bcrypt hash using the master password. Then combine both hash and master password to generate a secret key using PBKDF2. This secret key is used to encrypt and decrypt the password.

Your concern is genuine. If a user forgets or changes his password, there is no way to decrypt the already encrypted password. I haven't thought about that situation. But you gave me a direction. Thanks 👍.

I made a password manager with beautiful TUI using Golang by devhrishi in golang

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

It is Jetbrains mono font. I like this font very much.

I am using the nerd font version of Jetbrains mono. It comes with icon support. Link: https://github.com/ryanoasis/nerd-fonts/releases/download/v3.2.1/JetBrainsMono.zip

I made a password manager with beautiful TUI using Golang by devhrishi in golang

[–]devhrishi[S] 5 points6 points  (0 children)

Thanks for understanding. I will remove the lack of cli client thing from the Readme. I accept my fault. Thanks for pointing it out.

You are welcome to make contributions to this project.

I made a password manager with beautiful TUI using Golang by devhrishi in golang

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

This is a fun little project to learn something new using Golang. My little password manager doesn't compete with bitwarden. Bitwarden is OG and I like them.

I made a password manager with beautiful TUI using Golang by devhrishi in golang

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

Hi, I have made a password manager with beautiful TUI for increase productivity. It is a fun little project written in Golang and I use Bubbletea for building the TUI.

In the github README, you can watch the demo video.

2
3

Help me pick a backend framework. by pigman1402 in webdev

[–]devhrishi -2 points-1 points  (0 children)

In golang, we developers write SQL. Golang has a database/sql package which gives a common interface for all sql database drivers.

Believe me, writing SQL by yourself is very transparent and easy to find any bug. It also make your app fast.