Thursday, 28 January 2021
python' is not recognized as an internal or external command, !!!
If you are getting the error
""" 'python' is not recognized as an internal or external command,
operable program or batch file. """
Locate you python installed directory,
Then Open Environment Variables and
Select Path , double click on it
add new path then paste here the new path
you are done
HaseebAbbasi00.blog.cot.com
Wednesday, 27 January 2021
Monday, 25 January 2021
White noise from headphone jack.
I have the Dell Latitude E5540 with Ubuntu 20.04 and whenever I use headphones that plug onto audio jack I hear a hissing/static sound. I hear the same sounds using the speakers.
Solution
Verify how is your sound card's
power_saveparameter:cat /sys/module/snd_hda_intel/parameters/power_saveIf it returns
1, do the following to change it temporally:echo "0" | sudo tee /sys/module/snd_hda_intel/parameters/power_saveIf the previous step worked for you, persist that configuration (otherwise the problem will continue after reboot):
echo "options snd_hda_intel power_save=0" | sudo tee -a /etc/modprobe.d/audio_disable_powersave.conf(Optional) You can also do the same for
power_save_controllerparameter following the steps 1, 2 and 3 replacingpower_savebypower_save_controlleralso changing0toN.Note: using the first step will probably return
Yfor this parameter, instead of1.
Thursday, 21 January 2021
Thursday, 14 January 2021
Contribution on GitHub
1. Fork repository of that User
2. Help him/her in code
3. Commit changes in code
4. Push your changes
5 Create Pull Request with a message
