- https://superuser.com/questions/1660150/change-screen-resolution-of-ubuntu-vm-in-hyper-v
- https://dev.to/samerickson/-improving-performance-with-linux-boxes-in-hyper-v-3chb
- https://askubuntu.com/questions/1263977/ubuntu-on-hyper-v-sluggish-slow-ui-experience
- https://superuser.com/questions/1539900/slow-ubuntu-remote-desktop-using-xrdp
- https://superuser.com/questions/518484/how-can-i-increase-the-hyper-v-display-resolution
- https://superuser.com/a/1505724
- https://superuser.com/a/1598852
- https://superuser.com/questions/1728001/arch-install-hangs-on-windows-11-hyper-v-vm
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Credits | |
| # https://c-nergy.be/blog/?p=13655 | |
| # https://askubuntu.com/questions/844245/how-to-compile-latest-pulseaudio-with-webrtc-in-ubuntu-16-04 | |
| # https://askubuntu.com/questions/496549/error-you-must-put-some-source-uris-in-your-sources-list | |
| # https://unix.stackexchange.com/questions/65167/enable-udev-and-speex-support-for-pulseaudio | |
| # https://rudd-o.com/linux-and-free-software/how-to-make-pulseaudio-run-once-at-boot-for-all-your-users | |
| # https://gist.github.com/rkttu/35ecab5604c9ddc356b0af4644d5a226 | |
| # Installation and Enhanced session | |
| # follow steps on the post below, I installed Ubuntu 22.04 on a Windows 11 machine |
Get the metadata and content of all files in a given GitHub repo using the GraphQL API
You might want to get a tree summary of files in a repo without downloading the repo, or maybe you want to lookup the contents of a file again without download the whole repo.
The approach here is to query data from GitHub using the Github V4 GraphQL API.
I use pandoc to convert masses of Word documents to markdown. Still working on a generic script, but for now here's the "gist" of what I type into the terminal:
$ myfilename="example"
$ pandoc \
-t markdown_strict \
--extract-media='./attachments/$myfilename' \
$myfilename.docx \
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env -S bash -xeuo pipefail | |
| set -xeuo pipefail | |
| pkg install pacman patchelf \ | |
| which time ldd tree | |
| echo | |
| echo |
OlderNewer