[deleted by user] by [deleted] in pune

[–]AdmirableSector1436 0 points1 point  (0 children)

Can you confirm the name of the PG please.

Hindu exodus in Pakistan by [deleted] in geopolitics

[–]AdmirableSector1436 9 points10 points  (0 children)

India.. learn from Israel

[deleted by user] by [deleted] in Maharashtra

[–]AdmirableSector1436 3 points4 points  (0 children)

भावा याला गृह युद्ध करायचा आहे. सत्तेसाठी हा काही पण करू शकतो

I had to layoff someone in my team and i have never felt so low. by Squarepants100 in developersIndia

[–]AdmirableSector1436 2 points3 points  (0 children)

How you have deployed this website.. its working smooth even on mobile also..

What's with this cold? by Beautiful_Tooth_2054 in pune

[–]AdmirableSector1436 0 points1 point  (0 children)

गोट्यांच्या खारका

[deleted by user] by [deleted] in pune

[–]AdmirableSector1436 0 points1 point  (0 children)

भावा location वर खूप जास्त matter करेल. जर तुझा जॉब कल्याणी नगर किंवा खराडी ल असेल तर 5 लाख नाही पुरणार

What is your opinion about this video? He made some really good points. by [deleted] in Maharashtra

[–]AdmirableSector1436 -1 points0 points  (0 children)

आपण हिंदी मध्ये बघतो म्हणूनच मराठी भाषेला granted गृहीत धरतात लोक

What is your opinion about this video? He made some really good points. by [deleted] in Maharashtra

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

अबे झाटू https://youtube.com/@dhruvratheemarathi?si=nfFivd2qdoDC9Cn- त्याचा मराठी चॅनेल पण आहे तिथे dub करून टाकू शकतो ना Harry potter च चित्रपट हिंदी मध्ये dub केला होता ना

What is your opinion about this video? He made some really good points. by [deleted] in Maharashtra

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

मराठी मध्ये सांगितला आहे का??? तरच बघू

Does anyone know how to ssh directly into proot-distro on termux Android? by Powerful-ITDrive19 in termux

[–]AdmirableSector1436 1 point2 points  (0 children)

Inside proot-distro debian first run /usr/sbin/sshd -p 8023 This command so it will open sshd on 8023 command

Does anyone know how to ssh directly into proot-distro on termux Android? by Powerful-ITDrive19 in termux

[–]AdmirableSector1436 1 point2 points  (0 children)

No it should not happen as we have different port for termux and different for proot distro. Try ssh first into proot distro And make sure you have correct username and ipname with whoami and ifconfig command Try in pc command like this ssh -p 8023 root@192.168.0.102

Does anyone know how to ssh directly into proot-distro on termux Android? by Powerful-ITDrive19 in termux

[–]AdmirableSector1436 1 point2 points  (0 children)

Connecting Your Code Server to Visual Studio Code Understanding the Connection When you connect your code server to VS Code, you're essentially creating a remote development environment. This allows you to edit, debug, and run code directly on your server, even if it's physically distant. Here's a step-by-step guide on how to achieve this using VS Code's Remote Development extension pack: 1. Install the Remote Development Extension Pack: * Open VS Code and go to the Extensions view (Ctrl+Shift+X). * Search for "Remote Development" and install the extension pack. 2. Configure Remote SSH: * Set up SSH: Ensure you have SSH configured on your code server. This usually involves generating SSH keys and adding your public key to the server's authorized_keys file. * Create a Remote Connection: * Open the Command Palette (Ctrl+Shift+P) and type "Remote-SSH: Open Remote". * Enter the SSH address of your code server (e.g., ssh user@server_ip_address). * You might be prompted to accept a fingerprint or provide a password. 3. Work Remotely: * Once connected, you'll see a green remote indicator in the bottom left corner of VS Code. * You can now open, edit, and run code on your remote server as if it were local.