This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from threading import Event | |
from manager import Manager | |
if __name__ == "__main__": | |
done: Event = Event() | |
manager: Manager = Manager.alloc().init() | |
manager.advertize() | |
done.wait() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
axes.titlesize : 24 | |
axes.labelsize : 14 | |
axes.spines.top : False | |
axes.spines.right : False | |
axes.linewidth: 2.5 | |
lines.linewidth : 2 | |
lines.markersize : 10 | |
xtick.labelsize : 16 | |
xtick.major.size : 8 | |
xtick.major.width: 2.5 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Remove html comments | |
function delete_html(elem) | |
if elem.format == "html" then | |
return {} | |
end | |
return elem | |
end | |
-- Remove multiple softbreaks in a row | |
local prev_elem = pandoc.Str("") |