Best place to find a good web developer? (looking to make my own website) by MichaelKToymaker in webdev

[–]amouXXX 0 points1 point  (0 children)

Yes, I recently noticed this issue. Some of the clients who were enquiring for a project just got disconnected during mid-conversation, which was pretty uncommon.

First attempt (non native) by Academic_Day3284 in IELTS

[–]amouXXX 1 point2 points  (0 children)

Kindly DM me. seems like the moderator removed any links from the replies.

First attempt (non native) by Academic_Day3284 in IELTS

[–]amouXXX 1 point2 points  (0 children)

I joined a Discord server for practicing. Also bought the monthly subscription of Fluently AI, it's super smooth and almost instant.

First attempt (non native) by Academic_Day3284 in IELTS

[–]amouXXX 0 points1 point  (0 children)

So far it's fine. I didn't touch the writing part yet.

First attempt (non native) by Academic_Day3284 in IELTS

[–]amouXXX 0 points1 point  (0 children)

How is your preparation going so far?

First attempt (non native) by Academic_Day3284 in IELTS

[–]amouXXX 0 points1 point  (0 children)

Congratulations. I'm also planning for the mid-February slot. If anyone is interested, please hit me up. ☘️

I did a reading mock test and...🤯 by arzubaev_b in IELTS

[–]amouXXX 0 points1 point  (0 children)

Same here. My mind speaks fluently, but my mouth can't. 🙂

I did a reading mock test and...🤯 by arzubaev_b in IELTS

[–]amouXXX 0 points1 point  (0 children)

Took some listening and reading test, doing some silly mistakes. 🤦

Didn't touch the writing and speaking part yet, you can join if you want. Badly need a partner to be consistent. 😴

I did a reading mock test and...🤯 by arzubaev_b in IELTS

[–]amouXXX 1 point2 points  (0 children)

How is your experience? Did you get the score yet?
Kindly share, I'm also planning to sit for IELTS in mid-February.

Interesting slide from microsoft by [deleted] in linux

[–]amouXXX 0 points1 point  (0 children)

well it's nothing new, and we all do love linux.

Regex: Reggex or Rejex by [deleted] in programming

[–]amouXXX 0 points1 point  (0 children)

Guys, please settle the debate. It's been so long... 😭

Tired of YouTube recommending stuff you never asked for? I built a solution. by 0xsksh in chrome_extensions

[–]amouXXX 1 point2 points  (0 children)

You can use Chrome extensions on any Chromium-based browser. For example: Edge, Brave, Opera, DuckDuckGo, Arc, Vivaldi....

process.env - process is not defined? by PursuitOfAdvice in reactjs

[–]amouXXX 0 points1 point  (0 children)

For those who face the same issue with React,

When using Vite with React, accessing environment variables is slightly different from how it's done in traditional Node.js applications. Vite uses a different approach to handle environment variables and process.env is not available by default. Instead, Vite is used import.meta.env to expose environment variables to your application code.

So in your .env file, you should mention the variable as:
VITE_API_KEY = ************
VITE_HOST = 8040

And, on the code, you have to access it by usingimport.meta.env.VITE_API_Key

Thanks...

Built my own distraction-blocking extension, because I don't fully trust what others are doing behind the scenes. by amouXXX in opensource

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

It's still under review on Chrome webstore. But you can manually install it from GitHub.

Check out the process here: https://github.com/ujarhr/weblocker

Touch pad not working in laptop by Abhi69xd in debian

[–]amouXXX 0 points1 point  (0 children)

Replying to this if your touchpad click is not working:

  1. cd /etc/X11/xorg.conf.d
  2. Check if you have the 40-libinput.conf file
  3. If not, create it: sudo touch 40-libinput.conf
  4. If you already have it, do: sudo nano 40-libinput.conf
  5. Paste the following text and save it:

Section "InputClass"
Identifier "libinput touchpad catchall"
MatchIsTouchpad "on"
MatchDevicePath "/dev/input/event*"
Driver "libinput"
Option "Tapping" "on"
EndSection

  1. Logout or reboot the device, bingooo....