- https://www.teeworlds.com/
- https://github.com/ddnet/
- https://timakro.de/
- https://forum.ddnet.tw/viewtopic.php?f=29&t=6821
- https://ddnet.tw/status/
- https://www.howtogeek.com/223144/how-to-set-your-default-apps-in-windows-10/
- https://ddnet.tw/downloads/
- https://github.com/ddnet/ddnet/compare/12.0.1...12.1
- https://ddnet.tw/status/records/feed/
- https://ddnet.tw/releases/
- https://ddnet.tw/releases/feed/
- https://ddnet.tw/news/
- https://ddnet.tw/feed/
- https://qshar.com/
- https://ddnet.tw/players/-9479--187-M-237-M-171--9479-/
- https://github.com/ddnet/ddnet/compare/11.9...12.0.1
- https://ddnet.tw/stats/
- https://ddnet.tw/ranks/dummy/#map-Dummy_Chamber_3
- https://ddnet.tw/mappers/Im-32--39-corneum/
- https://en.wikipedia.org/wiki/Portal_(series)
- https://ddnet.tw/ranks/dummy/#map-Caventure_IV
- https://ddnet.tw/mappers/Meliodafu/
- https://github.com/ddnet/ddnet/pulse
- https://forum.ddnet.tw/viewtopic.php?f=94&t=6715
- https://forum.ddnet.tw/viewtopic.php?f=94&t=6711
- https://forum.ddnet.tw/viewtopic.php?f=94&t=6712
- https://forum.ddnet.tw/viewtopic.php?f=94&t=6713
- https://forum.ddnet.tw/viewtopic.php?f=94&t=6714
- https://aur.archlinux.org/packages/ddnet/
- https://github.com/ddnet/ddnet/graphs/contributors?from=2018-01-01&to=2018-12-10&type=c
After the rust string overview of its internal substructures, let's see if c++ QString storage is more light, but first we'r going to take a look to the c++ standard string object: At first sight we can see the allocation and deallocation created by the clang++ compiler, and the DAT_00400d34 is the string. If we use same algorithm than the rust code but in c++: We have a different decompilation layout. Note that the Ghidra scans very fast the c++ binaries, and with rust binaries gets crazy for a while. Locating main is also very simple in a c++ compiled binary, indeed is more low-level than rust. The byte array is initialized with a simply move instruction: 00400c4b 48 b8 68 MOV RAX,0x6f77206f6c6c6568 And basic_string generates the string, in the case of rust this was carazy endless set of calls, detected by ghidra as a runtime, but nevertheless the basic_str...
Comments