| 23 Feb 2025 |
Tristan Ross | Yeah, I think we can slowly move there with equals vs like a isNative function. | 02:03:14 |
Tristan Ross | I know there's canExecute but I think that's more of emulated included | 02:03:43 |
Tristan Ross | So isNative would check more of whether the platforms are truly binary compatible | 02:04:20 |
emily | no, hasEmulator is distinct from canExecute | 02:15:42 |
Tristan Ross | I didn't know hasEmulator exists and I didn't bring it up. | 02:18:25 |
emily | canExecute doesn't include emulators | 02:33:34 |
emily | it's purely for e.g. i686 / x86_64 | 02:33:45 |
emily | (also it's emulatorAvailable actually, whoops) | 02:34:09 |
| 26 Feb 2025 |
| lzcunt changed their display name from sananatheskenana to lzcunt. | 18:20:36 |
| 7 Mar 2025 |
| Qyriad changed their display name from Qyriad to qyriad. | 16:36:03 |
| 8 Mar 2025 |
| Qyriad changed their display name from qyriad to Qyriad. | 21:41:03 |
| 9 Mar 2025 |
Find me at aleksana:qaq.li | I just got some really confusing differences in bash output between linux and darwin | 12:46:16 |
Find me at aleksana:qaq.li | bash-5.2$ bash --version
GNU bash, version 5.2.37(1)-release (aarch64-apple-darwin24.3.0)
Copyright (C) 2022 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software; you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
bash-5.2$ re='\bx\b'; [[ "x" =~ $re ]] && echo "yes!" || echo "no!"
no!
| 12:46:41 |
Find me at aleksana:qaq.li |
[aleksana@Aleksana-Laptop:~]$ bash --version
GNU bash, version 5.2.37(1)-release (x86_64-pc-linux-gnu)
Copyright (C) 2022 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software; you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
[aleksana@Aleksana-Laptop:~]$ re='\bx\b'; [[ "x" =~ $re ]] && echo "yes!" || echo "no!"
yes!
| 12:47:29 |