In a move to counter Anthrophic Mythos ApenAI claims it can generate the source code for binaries, with GPT-5.4-Cyber.
Of course, just like Mythos, it is only given to selected companies.
So... from now on, all software is implicitly open source.
>>>ITwacht<<<
In a move to counter Anthrophic Mythos ApenAI claims it can generate the source code for binaries, with GPT-5.4-Cyber.
Of course, just like Mythos, it is only given to selected companies.
So... from now on, all software is implicitly open source.
Some Windows cmd equivalents for common Unix commands and settings for my onw reference
| unix | cmd |
powershell |
|
|---|---|---|---|
| echo $variable | echo %variable% | $variable $env:variable //environment variable |
|
| ~ | %USERPROFILE% | $env:USERPROFILE | |
| variable=value | %variable%=value | $variable=value | |
| cp source target | copy source target | ||
| cp -r source target |
xcopy source target /e/h |
||
| find -name '*.txt' |
dir /s *.txt | ||
| grep text |
findstr text | ||
| ls -a | dir /a | ||
| rm file | del file | ||
| rm -rf directory | rmdir /s /q directory | ||
| which command |
where command | (gcm command).Path |