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
| # effectively stolen from https://github.com/godot-extended-libraries/godot-debug-menu credit to Calinou :D | |
| # frametime_* is in milliseconds | |
| # fps_* is in frames per second (what else) | |
| var viewport_rid = get_viewport().get_viewport_rid() | |
| var frametime_cpu: int = RenderingServer.viewport_get_measured_render_time_cpu(viewport_rid) + RenderingServer.get_frame_setup_time_cpu() | |
| var frametime_gpu: int = RenderingServer.viewport_get_measured_render_time_gpu(viewport_rid) | |
| var fps_real: float = delta # assuming this is in _process, returns actual frame rate, capped at display refresh rate | |
| var fps_theo: float = 1000 / max(frametime_cpu, frametime_gpu) # frame rate that could be attained if there was no FPS cap |
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
| import sys | |
| HELP = """ | |
| python3 algorithm1.py -h | |
| show this very help page | |
| python3 algorithm1.py | |
| work out what's special about 495 | |
| python3 algorithm1.py <number> | |
| run the algorithm on <number> | |
| """ |
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
| scons: Reading SConscript files ... | |
| Enabling ALSA | |
| Enabling PulseAudio | |
| YASM is necessary for WebM SIMD optimizations. | |
| WebM SIMD optimizations are disabled. Check if your CPU architecture, CPU bits or platform are supported! | |
| Checking for C header file mntent.h... yes | |
| scons: done reading SConscript files. | |
| scons: Building targets ... | |
| run(["core/method_bind.gen.inc", "core/method_bind_ext.gen.inc"], ["core/make_binders.py"]) | |
| Compiling ==> platform/x11/godot_x11.cpp |
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
| import os | |
| import time | |
| import pygame | |
| from pygame.locals import * | |
| pygame.init() | |
| scr_w = 500 | |
| scr_h = 500 |
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
| "xkcd scream cipher implementation" | |
| import string | |
| As = ['\u0041', '\u00c0', '\u00c1', '\u00c2', '\u00c3', '\u00c4', '\u00c5', '\u0100', '\u0102', '\u0104', '\u01cd', '\u01de', '\u01e0', '\u01fa', '\u0200', '\u0202', | |
| '\u0226', '\u023a', '\u1e00', '\u1ea0', '\u1ea2', '\u1ea4', '\u1ea6', '\u1ea8', '\u1eaa', '\u1eac', '\u1eae', '\u1eb0', '\u1eb2', '\u1eb4', '\u1eb6' | |
| ] | |
| letters = [c for c in ',.()-'] + [c for c in string.ascii_lowercase] | |
| def encrypt(s: str) -> str: | |
| r = '' |