joshcangit
joshcangit
Using `make`, I can use the ` -C` option to set the working directory. ~~No such option exists for `cmake` as far as I know.~~ https://github.com/rui314/mold/pull/571#issuecomment-1185305032
Looking forward to when mold will support LTO. I was thinking maybe use gold as the LTO fallback for gcc but maybe bfd is better for compatibility. I just realized...
I've got a _Bash_ function to extract URLs of **up-to-date** [Ubuntu mirrors](https://launchpad.net/ubuntu/+archivemirrors) below. ```bash ubuntu_mirror() { local url="https://launchpad.net/ubuntu/+archivemirrors" local xpath1="//table/tbody/tr[td/span[@class='distromirrorstatusUP']]/td/a[starts-with(@href,'" local xpath2="${xpath1}$1" local xpath="${xpath2}')]/@href" wget -qO- $url | xmllint --html...
> How do you use this function after adding it to .profile? Sorry, forgot to fix it. I'm still unsure to keep it as is or make it not as...
> So this part also goes into .profile? Actually, both parts.
> Then we export MIRRORS(?): > export MIRRORS I now don't think that's needed. You can use it if it works for you.
Bun now supports Linux aarch64. From oven-sh/bun#75. However, downloading and using it results in error. ``` bash: ./bun: No such file or directory ``` That's because it will need to...
Rust **1.64** will be released this Thursday. So will `rust-analyzer` be included?
> Yes: [rust-lang/blog.rust-lang.org#1027 (files)](https://github.com/rust-lang/blog.rust-lang.org/pull/1027/files#r973713201) ~~No, it does not I've just updated to 1.64.~~ ~~`rls` is still downloaded.~~ ~~`rust-analyzer` not downloaded.~~
This adds changes from #262 except pyperclip. I couldn't get Suplemon to work with pyperclip. This isn't tested on Windows or WSL but I think it should work. Also, I...