List of helpful shortcuts for faster coding
If you have any other helpful shortcuts, feel free to add in the comments of this gist :)
| using System.Security.Cryptography; | |
| public static class BetterPasswordHasher | |
| { | |
| // Always use distinct version IDs for new versions, ideally by incrementing the highest version ID. | |
| private const byte VersionId1 = 0x01; | |
| private const byte VersionId2 = 0x02; | |
| private const byte DefaultVersionId = VersionId2; |
In /usr/share/pulseaudio/alsa-mixer/paths/analog-input-internal-mic.conf and /usr/share/pulseaudio/alsa-mixer/paths/analog-input-mic.conf:
[Element Internal Mic Boost] set volume to zero.[Element Int Mic Boost] set volume to zero.[Element Mic Boost] set volume to zeroFind your source name from the following command; mine is alsa_input.pci-0000_00_1f.3.analog-stereo
$ pacmd list-sources | grep 'name:.*input'
Edit /etc/pulse/default.pa and add the following lines, where INPUT_NAME is name of the input source from above step:
We need to create a virtual env for our app to run in: More Here Run this command in whatever folder you want to create your venv folder
python -m venv ./venv
| SPC | |
| SPC: find file | |
| , switch buffer | |
| . browse files | |
| : MX | |
| ; EX | |
| < switch buffer | |
| ` eval | |
| u universal arg | |
| x pop up scratch |
Code is clean if it can be understood easily – by everyone on the team. Clean code can be read and enhanced by a developer other than its original author. With understandability comes readability, changeability, extensibility and maintainability.
Picking the right architecture = Picking the right battles + Managing trade-offs