




















malloc_consolidate(): unaligned fastbin chunk detected





































Hacker News • 2023-04-05 18:48:25Z 


























n will change the command and an echo to tell urself which one is it currently, and m will execute it.


































































NET_CTRLMSG_CONNECTACCEPT to take its place. The connection
buildup looks like this (as before):
```
-> CONNECT
<- ACCEPT
-> first data packet or KEEPALIVE due to tim...














def foo():
return 8 * 8@Learath2 leratooooooooooooo!!!
daily python trivia!!!!!!!!!!!!!!!!!!!do you pay for for the 8 * 8 multiplication at runtime?


def foo():
return 8 * 8@Learath2 leratooooooooooooo!!!
daily python trivia!!!!!!!!!!!!!!!!!!!do you pay for for the 8 * 8 multiplication at runtime? 


>>> import dis
>>> def foo():
... return 8 * 8
...
>>> foo()
64
>>> dis.dis(foo)
2 0 LOAD_CONST 1 (64)
2 RETURN_VALUE
>>> 


>>> import dis
>>> def foo():
... return 8 * 8
...
>>> foo()
64
>>> dis.dis(foo)
2 0 LOAD_CONST 1 (64)
2 RETURN_VALUE
>>> 





def foo():
a = 2
return a * a@Ryozuki you reached level 2 of daily lerato.py trivia!
same question new code



>>> def foo():
... a = 2
... return a * a
...
>>> foo()
4
>>> import dis
>>> dis.dis(foo)
2 0 LOAD_CONST 1 (2)
2 STORE_FAST 0 (a)
3 4 LOAD_FAST 0 (a)
6 LOAD_FAST 0 (a)
8 BINARY_MULTIPLY
10 RETURN_VALUE
>>> 





















f4c3fee Use ShowFileDialogError instead of ShowPopupMessage - Robyt3
3d343c8 Remove unnecessary popup debug message - Robyt3
caac7b0 Fix static usage of POPEVENT_* enum literals - Robyt3
c6d14e5 Move all editor popup function definitions to popups.cpp - Robyt3
df91bb9 Refactor layer properties functions - Robyt3
c1ffc8b Refactor CEditor::PopupMenuFile - Robyt3
eda808e Refactor CEditor::PopupGroup - Robyt3
9f5de0c Refactor CEditor::PopupLayer - Robyt3
2146d7b Refactor CEditor::PopupQuad - Robyt3
5cfecdb Refactor CEditor::PopupSource - Robyt3
141571c Refactor CEditor::PopupNewFolder and improve layout - Robyt3
04d9e2b Refactor CEditor::PopupMapInfo and improve layout - Robyt3
e09a771 Refactor CEditor::PopupPoint - Robyt3
7289f7d Refactor CEditor::PopupImage - Robyt3
91ce99b Refactor CEditor::PopupSound - Robyt3
b20cf78 Refactor CEditor::PopupEvent and improve layout - Robyt3
f3f44ca Refactor CEditor::PopupSelectImage - Robyt3
c730cd4 Refactor CEditor::PopupSelectSound - Robyt3
03e7cfc Refactor CEditor::PopupSelectGametileOp - Robyt3
04c1e06 Refactor CEditor::PopupSelectConfigAutoMap - Robyt3
b839c68 Refactor CEditor::PopupSpeedup - Robyt3
c4b2531 Refactor CEditor::PopupSwitch - Robyt3
d5a24d7 Refactor CEditor::PopupTune - Robyt3
8bdf2cf Refactor CEditor::PopupGoto - Robyt3
9391155 Refactor CEditor::PopupColorPicker - Robyt3
3c841f7 Refactor CEditor::PopupEntities - Robyt3
b4c1144 Merge #6492 - bors[bot]