├── .gitignore ├── LICENSE.md ├── README.md ├── T-shirt ├── README.md └── files │ ├── 0.99999flag.svg │ ├── big_success.svg │ ├── hackergame-logo-2020.png │ ├── 纪念衫预览-0.99999flag.jpg │ ├── 纪念衫预览-大成功-白.jpg │ └── 纪念衫预览-大成功-黑.jpg ├── archive ├── README.md ├── announcements.md └── core.json ├── behind-the-scenes ├── README.md └── files │ ├── 11.1-昨天的我.jpg │ ├── 2018-writeup-traffic.png │ ├── 2019-writeup-traffic.png │ ├── TLS-1.3.jpg │ ├── 井字棋-百度知道.jpg │ ├── 代黑账号.jpg │ ├── 别人的hg.jpg │ ├── 大成功没flag.jpg │ ├── 开服之后.jpg │ ├── 数理基础-打一顿出题人.jpg │ ├── 数理模拟器-手算两小时.png │ ├── 未来的信-openlug-star.jpg │ ├── 榜一做不动了=AK.jpeg │ ├── 温柔的积分.png │ ├── 满脑子数理基础.jpg │ ├── 激情游戏.png │ ├── 火星文.png │ ├── 火星文ID.jpg │ ├── 爱上火车发布啦.jpeg │ ├── 狗狗银行BRoll.jpg │ ├── 猫咪问答-动物知识.jpg │ ├── 猫咪问答-妮可朋友看停车位.jpg │ ├── 真正的直线上升.jpg │ ├── 签到-2000人.jpg │ ├── 签到-没法给你flag.jpg │ ├── 签到-要多少给多少.jpg │ ├── 这些题都很简单.png │ ├── 零号端口-提问.jpg │ ├── 零号端口-时空穿梭.jpg │ ├── 零号端口-没有.JPG │ └── 零号端口-潜入机房.JPG ├── official ├── 2048 │ ├── README.md │ └── src │ │ ├── Dockerfile │ │ ├── app │ │ ├── main.py │ │ ├── secret.py │ │ ├── static │ │ │ ├── bg.png │ │ │ ├── bootstrap │ │ │ │ ├── css │ │ │ │ │ └── bootstrap.min.css │ │ │ │ └── js │ │ │ │ │ └── bootstrap.min.js │ │ │ ├── error.css │ │ │ ├── jquery.min.js │ │ │ ├── js │ │ │ │ ├── animframe_polyfill.js │ │ │ │ ├── application.js │ │ │ │ ├── bind_polyfill.js │ │ │ │ ├── classlist_polyfill.js │ │ │ │ ├── game_manager.js │ │ │ │ ├── grid.js │ │ │ │ ├── html_actuator.js │ │ │ │ ├── keyboard_input_manager.js │ │ │ │ ├── local_storage_manager.js │ │ │ │ └── tile.js │ │ │ ├── main.css │ │ │ ├── meta │ │ │ │ ├── apple-touch-icon.png │ │ │ │ ├── apple-touch-startup-image-640x1096.png │ │ │ │ └── apple-touch-startup-image-640x920.png │ │ │ └── style │ │ │ │ ├── fonts │ │ │ │ ├── ClearSans-Bold-webfont.eot │ │ │ │ ├── ClearSans-Bold-webfont.svg │ │ │ │ ├── ClearSans-Bold-webfont.woff │ │ │ │ ├── ClearSans-Light-webfont.eot │ │ │ │ ├── ClearSans-Light-webfont.svg │ │ │ │ ├── ClearSans-Light-webfont.woff │ │ │ │ ├── ClearSans-Regular-webfont.eot │ │ │ │ ├── ClearSans-Regular-webfont.svg │ │ │ │ ├── ClearSans-Regular-webfont.woff │ │ │ │ └── clear-sans.css │ │ │ │ ├── helpers.scss │ │ │ │ ├── main.css │ │ │ │ └── main.scss │ │ └── templates │ │ │ ├── error.html │ │ │ └── index.html │ │ └── docker-compose.yml ├── 233 同学的 Docker │ ├── README.md │ └── src │ │ └── Dockerfile ├── 233 同学的字符串工具 │ ├── README.md │ └── src │ │ └── string_tool.py ├── Flag 计算机 │ ├── README.md │ ├── pics │ │ ├── 1.png │ │ ├── 10.png │ │ ├── 11.png │ │ ├── 12.png │ │ ├── 13.png │ │ ├── 14.png │ │ ├── 15.png │ │ ├── 16.png │ │ ├── 17.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ └── 9.png │ └── src │ │ └── get_flag_system │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── README.md │ │ ├── UNLICENSE │ │ ├── alloc.h │ │ ├── com.ld │ │ ├── dosbox.conf │ │ ├── dosdef.c │ │ ├── files │ │ └── get_flag_system.exe │ │ ├── get_flag_system_fixed.exe │ │ ├── init.h │ │ ├── int.h │ │ ├── joystick.h │ │ ├── keyboard.h │ │ ├── math.h │ │ ├── numbers │ │ ├── only_dos.exe │ │ ├── port.h │ │ ├── print.h │ │ ├── rand.h │ │ ├── speaker.h │ │ ├── time.h │ │ ├── tone.h │ │ ├── vga.h │ │ └── vga_font.h ├── 一闪而过的 Flag │ ├── README.md │ ├── files │ │ └── Untitled01.exe │ └── src │ │ └── Untitled01.c ├── 不经意传输 │ ├── README.md │ ├── ot.png │ └── src │ │ ├── Dockerfile │ │ ├── OT.py │ │ └── solve_ot.py ├── 中间人 │ ├── README.md │ ├── files │ │ └── MITM.zip │ └── src │ │ ├── Dockerfile │ │ ├── MITM1.py │ │ ├── MITM2.py │ │ ├── MITM3.py │ │ ├── entry.py │ │ ├── mitm_exp1.py │ │ ├── mitm_exp2.py │ │ ├── mitm_exp3.py │ │ └── utils.py ├── 从零开始的 HTTP 链接 │ └── README.md ├── 从零开始的火星文生活 │ ├── README.md │ ├── files │ │ ├── gibberish_message.txt │ │ └── 常见乱码.jpg │ └── src │ │ └── generate_and_solve.py ├── 从零开始的记账工具人 │ ├── README.md │ └── src │ │ ├── Dockerfile │ │ ├── app │ │ ├── cert.pem │ │ ├── main.py │ │ ├── secret.py │ │ ├── static │ │ │ ├── bootstrap │ │ │ │ ├── css │ │ │ │ │ └── bootstrap.min.css │ │ │ │ └── js │ │ │ │ │ └── bootstrap.min.js │ │ │ ├── error.css │ │ │ ├── jquery.min.js │ │ │ └── main.css │ │ └── templates │ │ │ └── error.html │ │ └── docker-compose.yml ├── 动态链接库检查器 │ ├── README.md │ └── src │ │ └── solution │ │ ├── Makefile │ │ ├── evil.c │ │ ├── evil.script │ │ ├── main.c │ │ ├── make_evil.c │ │ └── shellcode.asm ├── 室友的加密硬盘 │ └── README.md ├── 普通的身份认证器 │ ├── README.md │ └── src │ │ ├── README.md │ │ ├── cert.pem │ │ ├── exp │ │ └── exp.py │ │ ├── index.html │ │ ├── jwt.key │ │ ├── jwt.key.pub │ │ ├── main.py │ │ ├── requirements.txt │ │ └── static │ │ ├── axios.min.js │ │ ├── user.css │ │ └── vue.js ├── 来自一教的图片 │ ├── README.md │ ├── files │ │ └── 4f_system_middle.bmp │ └── pic │ │ ├── 1.png │ │ ├── 2.png │ │ └── 3.bmp ├── 来自未来的信笺 │ ├── README.md │ ├── files │ │ └── frames.zip │ └── src │ │ ├── exp │ │ └── exp.sh │ │ ├── files │ │ ├── COMMITS │ │ ├── META │ │ └── repo │ │ │ └── flag │ │ └── generate_qrcode.sh ├── 永不溢出的计算器 │ ├── README.md │ └── src │ │ ├── Dockerfile │ │ └── server.py ├── 狗狗银行 │ ├── README.md │ └── src │ │ ├── api │ │ ├── .gitignore │ │ ├── package.yaml │ │ ├── src │ │ │ ├── App │ │ │ │ ├── Models.hs │ │ │ │ └── Types.hs │ │ │ └── api.hs │ │ ├── stack.yaml │ │ └── stack.yaml.lock │ │ ├── frontend │ │ ├── .gitignore │ │ ├── package.json │ │ ├── src │ │ │ ├── app.js │ │ │ ├── coin.png │ │ │ ├── index.html │ │ │ ├── index.js │ │ │ └── style.css │ │ ├── webpack.config.js │ │ └── yarn.lock │ │ └── solution.py ├── 猫咪问答++ │ ├── README.md │ └── images │ │ ├── bd.png │ │ ├── rfc1149.png │ │ └── sfd2019.png ├── 生活在博弈树上 │ ├── README.assets │ │ └── 1.png │ ├── README.md │ ├── files │ │ └── tictactoe.zip │ └── src │ │ ├── exp │ │ ├── pwn1.py │ │ └── pwn2.py │ │ ├── tictactoe │ │ └── tictactoe.c ├── 签到 │ ├── README.md │ └── images │ │ ├── numbers_-5_50.png │ │ └── numbers_0_1.5.png ├── 自复读的复读机 │ ├── README.md │ └── src │ │ ├── Dockerfile │ │ ├── checker.py │ │ └── runner.py ├── 证验码 │ ├── README.md │ ├── files │ │ └── shuffle.py │ ├── payload.py │ └── src │ │ ├── Dockerfile │ │ ├── app │ │ ├── main.py │ │ ├── secret.py │ │ ├── static │ │ │ ├── bootstrap │ │ │ │ ├── css │ │ │ │ │ └── bootstrap.min.css │ │ │ │ └── js │ │ │ │ │ └── bootstrap.min.js │ │ │ ├── error.css │ │ │ ├── jquery.min.js │ │ │ └── main.css │ │ ├── templates │ │ │ ├── error.html │ │ │ ├── index.html │ │ │ └── result.html │ │ └── utils │ │ │ ├── SourceCodePro-Light.ttf.placeholder │ │ │ ├── __init__.py │ │ │ └── generator.py │ │ ├── docker-compose.yml │ │ └── files │ │ └── shuffle.py ├── 超基础的数理模拟器 │ ├── README.md │ └── src │ │ ├── docker-compose.yml │ │ ├── generator │ │ ├── Dockerfile │ │ └── gen.sage │ │ └── simulator │ │ ├── Dockerfile │ │ └── app │ │ ├── cert.pem │ │ ├── encrypted_session.py │ │ ├── main.py │ │ ├── static │ │ ├── bootstrap.min.css │ │ ├── favicon.ico │ │ ├── font-awesome.min.css │ │ └── tex-svg.js │ │ └── templates │ │ └── index.html ├── 超安全的代理服务器 │ ├── README.md │ ├── pic │ │ └── pic_1.png │ └── src │ │ └── smart_proxy │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── auth.go │ │ ├── flag.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── internal.go │ │ ├── main.go │ │ ├── proxy.go │ │ ├── qos.go │ │ ├── server.go │ │ ├── template.go │ │ ├── transport.go │ │ └── uuid.go ├── 超简单的世界模拟器 │ ├── README.md │ ├── files │ │ └── comic.png │ └── src │ │ ├── Dockerfile │ │ ├── game.py │ │ └── solve.py ├── 超简易的网盘服务器 │ ├── README.md │ └── src │ │ ├── cloud.conf │ │ ├── docker-compose.yml │ │ ├── dockerfile │ │ ├── flag.txt │ │ ├── htpasswd │ │ ├── nginx.conf │ │ ├── php.ini │ │ ├── start.sh │ │ └── supervisord.conf ├── 超简陋的 OpenGL 小程序 │ ├── README.assets │ │ ├── image-20201102234807655.png │ │ ├── image-20201102235028183.png │ │ └── image-20201102235204811.png │ ├── README.md │ ├── files │ │ └── glHackergame.zip │ └── src │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── cmake │ │ └── modules │ │ │ ├── FindASSIMP.cmake │ │ │ ├── FindGLFW3.cmake │ │ │ └── FindGLM.cmake │ │ ├── dll │ │ └── assimp-vc140-mt.dll │ │ ├── includes │ │ ├── GL │ │ │ ├── glew.h │ │ │ ├── glxew.h │ │ │ └── wglew.h │ │ ├── GLFW │ │ │ ├── glfw3.h │ │ │ └── glfw3native.h │ │ ├── KHR │ │ │ └── khrplatform.h │ │ ├── assimp │ │ │ ├── .editorconfig │ │ │ ├── Compiler │ │ │ │ ├── poppack1.h │ │ │ │ ├── pstdint.h │ │ │ │ └── pushpack1.h │ │ │ ├── DefaultLogger.hpp │ │ │ ├── Exporter.hpp │ │ │ ├── IOStream.hpp │ │ │ ├── IOSystem.hpp │ │ │ ├── Importer.hpp │ │ │ ├── LogStream.hpp │ │ │ ├── Logger.hpp │ │ │ ├── NullLogger.hpp │ │ │ ├── ProgressHandler.hpp │ │ │ ├── ai_assert.h │ │ │ ├── anim.h │ │ │ ├── camera.h │ │ │ ├── cexport.h │ │ │ ├── cfileio.h │ │ │ ├── cimport.h │ │ │ ├── color4.h │ │ │ ├── color4.inl │ │ │ ├── config.h │ │ │ ├── defs.h │ │ │ ├── importerdesc.h │ │ │ ├── light.h │ │ │ ├── material.h │ │ │ ├── material.inl │ │ │ ├── matrix3x3.h │ │ │ ├── matrix3x3.inl │ │ │ ├── matrix4x4.h │ │ │ ├── matrix4x4.inl │ │ │ ├── mesh.h │ │ │ ├── metadata.h │ │ │ ├── port │ │ │ │ └── AndroidJNI │ │ │ │ │ └── AndroidJNIIOSystem.h │ │ │ ├── postprocess.h │ │ │ ├── quaternion.h │ │ │ ├── quaternion.inl │ │ │ ├── scene.h │ │ │ ├── texture.h │ │ │ ├── types.h │ │ │ ├── vector2.h │ │ │ ├── vector2.inl │ │ │ ├── vector3.h │ │ │ ├── vector3.inl │ │ │ └── version.h │ │ ├── glad │ │ │ └── glad.h │ │ ├── glm │ │ │ ├── CMakeLists.txt │ │ │ ├── common.hpp │ │ │ ├── detail │ │ │ │ ├── _features.hpp │ │ │ │ ├── _fixes.hpp │ │ │ │ ├── _noise.hpp │ │ │ │ ├── _swizzle.hpp │ │ │ │ ├── _swizzle_func.hpp │ │ │ │ ├── _vectorize.hpp │ │ │ │ ├── compute_common.hpp │ │ │ │ ├── compute_vector_relational.hpp │ │ │ │ ├── func_common.inl │ │ │ │ ├── func_common_simd.inl │ │ │ │ ├── func_exponential.inl │ │ │ │ ├── func_exponential_simd.inl │ │ │ │ ├── func_geometric.inl │ │ │ │ ├── func_geometric_simd.inl │ │ │ │ ├── func_integer.inl │ │ │ │ ├── func_integer_simd.inl │ │ │ │ ├── func_matrix.inl │ │ │ │ ├── func_matrix_simd.inl │ │ │ │ ├── func_packing.inl │ │ │ │ ├── func_packing_simd.inl │ │ │ │ ├── func_trigonometric.inl │ │ │ │ ├── func_trigonometric_simd.inl │ │ │ │ ├── func_vector_relational.inl │ │ │ │ ├── func_vector_relational_simd.inl │ │ │ │ ├── glm.cpp │ │ │ │ ├── qualifier.hpp │ │ │ │ ├── setup.hpp │ │ │ │ ├── type_float.hpp │ │ │ │ ├── type_half.hpp │ │ │ │ ├── type_half.inl │ │ │ │ ├── type_mat2x2.hpp │ │ │ │ ├── type_mat2x2.inl │ │ │ │ ├── type_mat2x3.hpp │ │ │ │ ├── type_mat2x3.inl │ │ │ │ ├── type_mat2x4.hpp │ │ │ │ ├── type_mat2x4.inl │ │ │ │ ├── type_mat3x2.hpp │ │ │ │ ├── type_mat3x2.inl │ │ │ │ ├── type_mat3x3.hpp │ │ │ │ ├── type_mat3x3.inl │ │ │ │ ├── type_mat3x4.hpp │ │ │ │ ├── type_mat3x4.inl │ │ │ │ ├── type_mat4x2.hpp │ │ │ │ ├── type_mat4x2.inl │ │ │ │ ├── type_mat4x3.hpp │ │ │ │ ├── type_mat4x3.inl │ │ │ │ ├── type_mat4x4.hpp │ │ │ │ ├── type_mat4x4.inl │ │ │ │ ├── type_mat4x4_simd.inl │ │ │ │ ├── type_quat.hpp │ │ │ │ ├── type_quat.inl │ │ │ │ ├── type_quat_simd.inl │ │ │ │ ├── type_vec1.hpp │ │ │ │ ├── type_vec1.inl │ │ │ │ ├── type_vec2.hpp │ │ │ │ ├── type_vec2.inl │ │ │ │ ├── type_vec3.hpp │ │ │ │ ├── type_vec3.inl │ │ │ │ ├── type_vec4.hpp │ │ │ │ ├── type_vec4.inl │ │ │ │ └── type_vec4_simd.inl │ │ │ ├── exponential.hpp │ │ │ ├── ext.hpp │ │ │ ├── ext │ │ │ │ ├── matrix_clip_space.hpp │ │ │ │ ├── matrix_clip_space.inl │ │ │ │ ├── matrix_double2x2.hpp │ │ │ │ ├── matrix_double2x2_precision.hpp │ │ │ │ ├── matrix_double2x3.hpp │ │ │ │ ├── matrix_double2x3_precision.hpp │ │ │ │ ├── matrix_double2x4.hpp │ │ │ │ ├── matrix_double2x4_precision.hpp │ │ │ │ ├── matrix_double3x2.hpp │ │ │ │ ├── matrix_double3x2_precision.hpp │ │ │ │ ├── matrix_double3x3.hpp │ │ │ │ ├── matrix_double3x3_precision.hpp │ │ │ │ ├── matrix_double3x4.hpp │ │ │ │ ├── matrix_double3x4_precision.hpp │ │ │ │ ├── matrix_double4x2.hpp │ │ │ │ ├── matrix_double4x2_precision.hpp │ │ │ │ ├── matrix_double4x3.hpp │ │ │ │ ├── matrix_double4x3_precision.hpp │ │ │ │ ├── matrix_double4x4.hpp │ │ │ │ ├── matrix_double4x4_precision.hpp │ │ │ │ ├── matrix_float2x2.hpp │ │ │ │ ├── matrix_float2x2_precision.hpp │ │ │ │ ├── matrix_float2x3.hpp │ │ │ │ ├── matrix_float2x3_precision.hpp │ │ │ │ ├── matrix_float2x4.hpp │ │ │ │ ├── matrix_float2x4_precision.hpp │ │ │ │ ├── matrix_float3x2.hpp │ │ │ │ ├── matrix_float3x2_precision.hpp │ │ │ │ ├── matrix_float3x3.hpp │ │ │ │ ├── matrix_float3x3_precision.hpp │ │ │ │ ├── matrix_float3x4.hpp │ │ │ │ ├── matrix_float3x4_precision.hpp │ │ │ │ ├── matrix_float4x2.hpp │ │ │ │ ├── matrix_float4x2_precision.hpp │ │ │ │ ├── matrix_float4x3.hpp │ │ │ │ ├── matrix_float4x3_precision.hpp │ │ │ │ ├── matrix_float4x4.hpp │ │ │ │ ├── matrix_float4x4_precision.hpp │ │ │ │ ├── matrix_projection.hpp │ │ │ │ ├── matrix_projection.inl │ │ │ │ ├── matrix_relational.hpp │ │ │ │ ├── matrix_relational.inl │ │ │ │ ├── matrix_transform.hpp │ │ │ │ ├── matrix_transform.inl │ │ │ │ ├── quaternion_common.hpp │ │ │ │ ├── quaternion_common.inl │ │ │ │ ├── quaternion_common_simd.inl │ │ │ │ ├── quaternion_double.hpp │ │ │ │ ├── quaternion_double_precision.hpp │ │ │ │ ├── quaternion_exponential.hpp │ │ │ │ ├── quaternion_exponential.inl │ │ │ │ ├── quaternion_float.hpp │ │ │ │ ├── quaternion_float_precision.hpp │ │ │ │ ├── quaternion_geometric.hpp │ │ │ │ ├── quaternion_geometric.inl │ │ │ │ ├── quaternion_relational.hpp │ │ │ │ ├── quaternion_relational.inl │ │ │ │ ├── quaternion_transform.hpp │ │ │ │ ├── quaternion_transform.inl │ │ │ │ ├── quaternion_trigonometric.hpp │ │ │ │ ├── quaternion_trigonometric.inl │ │ │ │ ├── scalar_common.hpp │ │ │ │ ├── scalar_common.inl │ │ │ │ ├── scalar_constants.hpp │ │ │ │ ├── scalar_constants.inl │ │ │ │ ├── scalar_int_sized.hpp │ │ │ │ ├── scalar_relational.hpp │ │ │ │ ├── scalar_relational.inl │ │ │ │ ├── scalar_uint_sized.hpp │ │ │ │ ├── scalar_ulp.hpp │ │ │ │ ├── scalar_ulp.inl │ │ │ │ ├── vector_bool1.hpp │ │ │ │ ├── vector_bool1_precision.hpp │ │ │ │ ├── vector_bool2.hpp │ │ │ │ ├── vector_bool2_precision.hpp │ │ │ │ ├── vector_bool3.hpp │ │ │ │ ├── vector_bool3_precision.hpp │ │ │ │ ├── vector_bool4.hpp │ │ │ │ ├── vector_bool4_precision.hpp │ │ │ │ ├── vector_common.hpp │ │ │ │ ├── vector_common.inl │ │ │ │ ├── vector_double1.hpp │ │ │ │ ├── vector_double1_precision.hpp │ │ │ │ ├── vector_double2.hpp │ │ │ │ ├── vector_double2_precision.hpp │ │ │ │ ├── vector_double3.hpp │ │ │ │ ├── vector_double3_precision.hpp │ │ │ │ ├── vector_double4.hpp │ │ │ │ ├── vector_double4_precision.hpp │ │ │ │ ├── vector_float1.hpp │ │ │ │ ├── vector_float1_precision.hpp │ │ │ │ ├── vector_float2.hpp │ │ │ │ ├── vector_float2_precision.hpp │ │ │ │ ├── vector_float3.hpp │ │ │ │ ├── vector_float3_precision.hpp │ │ │ │ ├── vector_float4.hpp │ │ │ │ ├── vector_float4_precision.hpp │ │ │ │ ├── vector_int1.hpp │ │ │ │ ├── vector_int1_precision.hpp │ │ │ │ ├── vector_int2.hpp │ │ │ │ ├── vector_int2_precision.hpp │ │ │ │ ├── vector_int3.hpp │ │ │ │ ├── vector_int3_precision.hpp │ │ │ │ ├── vector_int4.hpp │ │ │ │ ├── vector_int4_precision.hpp │ │ │ │ ├── vector_relational.hpp │ │ │ │ ├── vector_relational.inl │ │ │ │ ├── vector_uint1.hpp │ │ │ │ ├── vector_uint1_precision.hpp │ │ │ │ ├── vector_uint2.hpp │ │ │ │ ├── vector_uint2_precision.hpp │ │ │ │ ├── vector_uint3.hpp │ │ │ │ ├── vector_uint3_precision.hpp │ │ │ │ ├── vector_uint4.hpp │ │ │ │ ├── vector_uint4_precision.hpp │ │ │ │ ├── vector_ulp.hpp │ │ │ │ └── vector_ulp.inl │ │ │ ├── fwd.hpp │ │ │ ├── geometric.hpp │ │ │ ├── glm.hpp │ │ │ ├── gtc │ │ │ │ ├── bitfield.hpp │ │ │ │ ├── bitfield.inl │ │ │ │ ├── color_space.hpp │ │ │ │ ├── color_space.inl │ │ │ │ ├── constants.hpp │ │ │ │ ├── constants.inl │ │ │ │ ├── epsilon.hpp │ │ │ │ ├── epsilon.inl │ │ │ │ ├── integer.hpp │ │ │ │ ├── integer.inl │ │ │ │ ├── matrix_access.hpp │ │ │ │ ├── matrix_access.inl │ │ │ │ ├── matrix_integer.hpp │ │ │ │ ├── matrix_inverse.hpp │ │ │ │ ├── matrix_inverse.inl │ │ │ │ ├── matrix_transform.hpp │ │ │ │ ├── matrix_transform.inl │ │ │ │ ├── noise.hpp │ │ │ │ ├── noise.inl │ │ │ │ ├── packing.hpp │ │ │ │ ├── packing.inl │ │ │ │ ├── quaternion.hpp │ │ │ │ ├── quaternion.inl │ │ │ │ ├── quaternion_simd.inl │ │ │ │ ├── random.hpp │ │ │ │ ├── random.inl │ │ │ │ ├── reciprocal.hpp │ │ │ │ ├── reciprocal.inl │ │ │ │ ├── round.hpp │ │ │ │ ├── round.inl │ │ │ │ ├── type_aligned.hpp │ │ │ │ ├── type_precision.hpp │ │ │ │ ├── type_precision.inl │ │ │ │ ├── type_ptr.hpp │ │ │ │ ├── type_ptr.inl │ │ │ │ ├── ulp.hpp │ │ │ │ ├── ulp.inl │ │ │ │ └── vec1.hpp │ │ │ ├── gtx │ │ │ │ ├── associated_min_max.hpp │ │ │ │ ├── associated_min_max.inl │ │ │ │ ├── bit.hpp │ │ │ │ ├── bit.inl │ │ │ │ ├── closest_point.hpp │ │ │ │ ├── closest_point.inl │ │ │ │ ├── color_encoding.hpp │ │ │ │ ├── color_encoding.inl │ │ │ │ ├── color_space.hpp │ │ │ │ ├── color_space.inl │ │ │ │ ├── color_space_YCoCg.hpp │ │ │ │ ├── color_space_YCoCg.inl │ │ │ │ ├── common.hpp │ │ │ │ ├── common.inl │ │ │ │ ├── compatibility.hpp │ │ │ │ ├── compatibility.inl │ │ │ │ ├── component_wise.hpp │ │ │ │ ├── component_wise.inl │ │ │ │ ├── dual_quaternion.hpp │ │ │ │ ├── dual_quaternion.inl │ │ │ │ ├── easing.hpp │ │ │ │ ├── easing.inl │ │ │ │ ├── euler_angles.hpp │ │ │ │ ├── euler_angles.inl │ │ │ │ ├── extend.hpp │ │ │ │ ├── extend.inl │ │ │ │ ├── extended_min_max.hpp │ │ │ │ ├── extended_min_max.inl │ │ │ │ ├── exterior_product.hpp │ │ │ │ ├── exterior_product.inl │ │ │ │ ├── fast_exponential.hpp │ │ │ │ ├── fast_exponential.inl │ │ │ │ ├── fast_square_root.hpp │ │ │ │ ├── fast_square_root.inl │ │ │ │ ├── fast_trigonometry.hpp │ │ │ │ ├── fast_trigonometry.inl │ │ │ │ ├── float_notmalize.inl │ │ │ │ ├── functions.hpp │ │ │ │ ├── functions.inl │ │ │ │ ├── gradient_paint.hpp │ │ │ │ ├── gradient_paint.inl │ │ │ │ ├── handed_coordinate_space.hpp │ │ │ │ ├── handed_coordinate_space.inl │ │ │ │ ├── hash.hpp │ │ │ │ ├── hash.inl │ │ │ │ ├── integer.hpp │ │ │ │ ├── integer.inl │ │ │ │ ├── intersect.hpp │ │ │ │ ├── intersect.inl │ │ │ │ ├── io.hpp │ │ │ │ ├── io.inl │ │ │ │ ├── log_base.hpp │ │ │ │ ├── log_base.inl │ │ │ │ ├── matrix_cross_product.hpp │ │ │ │ ├── matrix_cross_product.inl │ │ │ │ ├── matrix_decompose.hpp │ │ │ │ ├── matrix_decompose.inl │ │ │ │ ├── matrix_factorisation.hpp │ │ │ │ ├── matrix_factorisation.inl │ │ │ │ ├── matrix_interpolation.hpp │ │ │ │ ├── matrix_interpolation.inl │ │ │ │ ├── matrix_major_storage.hpp │ │ │ │ ├── matrix_major_storage.inl │ │ │ │ ├── matrix_operation.hpp │ │ │ │ ├── matrix_operation.inl │ │ │ │ ├── matrix_query.hpp │ │ │ │ ├── matrix_query.inl │ │ │ │ ├── matrix_transform_2d.hpp │ │ │ │ ├── matrix_transform_2d.inl │ │ │ │ ├── mixed_product.hpp │ │ │ │ ├── mixed_product.inl │ │ │ │ ├── norm.hpp │ │ │ │ ├── norm.inl │ │ │ │ ├── normal.hpp │ │ │ │ ├── normal.inl │ │ │ │ ├── normalize_dot.hpp │ │ │ │ ├── normalize_dot.inl │ │ │ │ ├── number_precision.hpp │ │ │ │ ├── number_precision.inl │ │ │ │ ├── optimum_pow.hpp │ │ │ │ ├── optimum_pow.inl │ │ │ │ ├── orthonormalize.hpp │ │ │ │ ├── orthonormalize.inl │ │ │ │ ├── perpendicular.hpp │ │ │ │ ├── perpendicular.inl │ │ │ │ ├── polar_coordinates.hpp │ │ │ │ ├── polar_coordinates.inl │ │ │ │ ├── projection.hpp │ │ │ │ ├── projection.inl │ │ │ │ ├── quaternion.hpp │ │ │ │ ├── quaternion.inl │ │ │ │ ├── range.hpp │ │ │ │ ├── raw_data.hpp │ │ │ │ ├── raw_data.inl │ │ │ │ ├── rotate_normalized_axis.hpp │ │ │ │ ├── rotate_normalized_axis.inl │ │ │ │ ├── rotate_vector.hpp │ │ │ │ ├── rotate_vector.inl │ │ │ │ ├── scalar_multiplication.hpp │ │ │ │ ├── scalar_relational.hpp │ │ │ │ ├── scalar_relational.inl │ │ │ │ ├── spline.hpp │ │ │ │ ├── spline.inl │ │ │ │ ├── std_based_type.hpp │ │ │ │ ├── std_based_type.inl │ │ │ │ ├── string_cast.hpp │ │ │ │ ├── string_cast.inl │ │ │ │ ├── texture.hpp │ │ │ │ ├── texture.inl │ │ │ │ ├── transform.hpp │ │ │ │ ├── transform.inl │ │ │ │ ├── transform2.hpp │ │ │ │ ├── transform2.inl │ │ │ │ ├── type_aligned.hpp │ │ │ │ ├── type_aligned.inl │ │ │ │ ├── type_trait.hpp │ │ │ │ ├── type_trait.inl │ │ │ │ ├── vec_swizzle.hpp │ │ │ │ ├── vector_angle.hpp │ │ │ │ ├── vector_angle.inl │ │ │ │ ├── vector_query.hpp │ │ │ │ ├── vector_query.inl │ │ │ │ ├── wrap.hpp │ │ │ │ └── wrap.inl │ │ │ ├── integer.hpp │ │ │ ├── mat2x2.hpp │ │ │ ├── mat2x3.hpp │ │ │ ├── mat2x4.hpp │ │ │ ├── mat3x2.hpp │ │ │ ├── mat3x3.hpp │ │ │ ├── mat3x4.hpp │ │ │ ├── mat4x2.hpp │ │ │ ├── mat4x3.hpp │ │ │ ├── mat4x4.hpp │ │ │ ├── matrix.hpp │ │ │ ├── packing.hpp │ │ │ ├── simd │ │ │ │ ├── common.h │ │ │ │ ├── exponential.h │ │ │ │ ├── geometric.h │ │ │ │ ├── integer.h │ │ │ │ ├── matrix.h │ │ │ │ ├── packing.h │ │ │ │ ├── platform.h │ │ │ │ ├── trigonometric.h │ │ │ │ └── vector_relational.h │ │ │ ├── trigonometric.hpp │ │ │ ├── vec2.hpp │ │ │ ├── vec3.hpp │ │ │ ├── vec4.hpp │ │ │ └── vector_relational.hpp │ │ └── learnopengl │ │ │ ├── camera.h │ │ │ ├── mesh.h │ │ │ ├── model.h │ │ │ ├── shader.h │ │ │ ├── shader_m.h │ │ │ └── shader_s.h │ │ ├── lib │ │ ├── assimp.lib │ │ ├── glew32s.lib │ │ └── glfw3.lib │ │ ├── main │ │ ├── basic_lighting.fs │ │ ├── basic_lighting.vs │ │ ├── data.bin │ │ ├── glHackergame.cpp │ │ └── glad.c │ │ ├── resource │ │ └── glCTFHappy_Noto_Blocks.blend │ │ └── util │ │ ├── README.md │ │ └── converter.cpp ├── 超精准的宇宙射线模拟器 │ ├── README.md │ ├── files │ │ └── meme.jpg │ └── src │ │ ├── bitflip │ │ ├── flip.c │ │ └── solve_flip.py ├── 超精巧的数字论证器 │ ├── README.md │ └── src │ │ ├── Dockerfile │ │ └── theorem_prover.py ├── 超自动的开箱模拟器 │ ├── README.md │ └── src │ │ ├── Dockerfile │ │ └── unboxing_simulator.py └── 超迷你的挖矿模拟器 │ ├── README.md │ ├── bar.png │ ├── files │ └── screenshot.png │ ├── foo.png │ └── src │ └── MiniMinerSolution.java └── players ├── .gitkeep ├── Albanis └── README.md ├── GalaxySnail ├── 05_从零开始的记账工具人.py ├── 06_超简单的世界模拟器.py ├── 07_从零开始的火星文生活.py ├── 08_自复读的复读机.py ├── 09_233同学的字符串工具.py ├── 16_狗狗银行.py ├── 17_超基础的数理模拟器.py └── README.md ├── Haruka ├── 2048 │ └── readme.md ├── 233 同学的 Docker │ └── readme.md ├── Flag 计算机 │ ├── dosflag.py │ ├── get_flag_system_1.c │ └── readme.md ├── readme.md ├── 一闪而过的 Flag │ └── readme.md ├── 从零开始的 HTTP 链接 │ ├── in.py │ ├── out.py │ └── readme.md ├── 从零开始的记账工具人 │ ├── cn_num.py │ └── readme.md ├── 动态链接库检查器 │ └── readme.md ├── 室友的加密硬盘 │ └── readme.md ├── 来自一教的图片 │ └── readme.md ├── 来自未来的信笺 │ └── readme.md ├── 狗狗银行 │ └── readme.md ├── 猫咪问答++ │ └── readme.md ├── 生活在博弈树上 │ └── readme.md ├── 签到 │ └── readme.md ├── 超基础的数理模拟器 │ └── readme.md ├── 超简陋的 OpenGL 小程序 │ └── readme.md └── 超精准的宇宙射线模拟器 │ └── readme.md ├── Hykilpikonna ├── KotlinProject │ ├── build.gradle │ ├── gradle.properties │ ├── settings.gradle │ └── src │ │ └── main │ │ └── kotlin │ │ └── org │ │ └── hydev │ │ └── experiment │ │ ├── CTF114514.kt │ │ ├── CTFDoggyBank.kt │ │ ├── CTFIntegrals.kt │ │ ├── CTFMiniMiner.kt │ │ ├── CTFQR.kt │ │ └── ClipboardTools.kt ├── README.md └── images │ └── 15-result.png ├── NaiveTomcat ├── 2020-11-07-dockerWP.md ├── 2020-11-07-字符串工具WP.md ├── 2020-11-07-狗狗银行WP.md └── 2020-11-07-超简陋的OpenGL小程序WP.md ├── NanoApe └── writeup.md ├── NekomuraAoi ├── 0.png ├── 1.png ├── 2.png ├── 3.png └── writeup.md ├── ProfFan ├── solver_files │ ├── solver_5_1.png │ ├── solver_5_1.svg │ ├── solver_6_0.png │ └── solver_6_0.svg └── writeup.md ├── README.md ├── WEGFan └── 超简陋的 OpenGL 小程序 │ ├── README.md │ ├── assets │ ├── 3d-viewer-flag.png │ ├── hex-editor-1.png │ ├── hex-editor-2.png │ └── matplot-flag.png │ └── writeup.py ├── WaterKing201030 └── writeup.md ├── a-wing └── writeup.md ├── chuangzhu └── README.md ├── gousaiyang └── writeup.md ├── hsfzxjy ├── 从零开始的 HTTP 链接 │ └── README.md ├── 永不溢出的计算器 │ └── README.md └── 超基础的数理模拟器 │ └── README.md ├── hzqmwne └── README.md ├── lawvs ├── README.md └── images │ ├── decode.jpg │ ├── fft.png │ └── opengl.png ├── mcfx ├── writeup.md └── writeup.pdf ├── met └── readme.md ├── ranwen ├── wp.md └── wp.pdf ├── renbaoshuo ├── README.md └── images │ ├── 1.png │ ├── 10.png │ ├── 11.png │ ├── 12.png │ ├── 13.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ └── 9.png ├── sparkcyf ├── writeup.md └── 从零开始的记账工具人-convert.xlsx ├── stefan0us └── writeup.md └── yssickjgd ├── 1.png ├── 12.1.png ├── 12.2.png ├── 5.xlsx ├── 6.1.png ├── 6.2.png └── writeup-for-beginners.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea/ 3 | *.iml 4 | .gradle/ 5 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/README.md -------------------------------------------------------------------------------- /T-shirt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/T-shirt/README.md -------------------------------------------------------------------------------- /T-shirt/files/0.99999flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/T-shirt/files/0.99999flag.svg -------------------------------------------------------------------------------- /T-shirt/files/big_success.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/T-shirt/files/big_success.svg -------------------------------------------------------------------------------- /T-shirt/files/hackergame-logo-2020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/T-shirt/files/hackergame-logo-2020.png -------------------------------------------------------------------------------- /T-shirt/files/纪念衫预览-0.99999flag.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/T-shirt/files/纪念衫预览-0.99999flag.jpg -------------------------------------------------------------------------------- /T-shirt/files/纪念衫预览-大成功-白.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/T-shirt/files/纪念衫预览-大成功-白.jpg -------------------------------------------------------------------------------- /T-shirt/files/纪念衫预览-大成功-黑.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/T-shirt/files/纪念衫预览-大成功-黑.jpg -------------------------------------------------------------------------------- /archive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/archive/README.md -------------------------------------------------------------------------------- /archive/announcements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/archive/announcements.md -------------------------------------------------------------------------------- /archive/core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/archive/core.json -------------------------------------------------------------------------------- /behind-the-scenes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/behind-the-scenes/README.md -------------------------------------------------------------------------------- /behind-the-scenes/files/11.1-昨天的我.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/behind-the-scenes/files/11.1-昨天的我.jpg -------------------------------------------------------------------------------- /behind-the-scenes/files/2018-writeup-traffic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/behind-the-scenes/files/2018-writeup-traffic.png -------------------------------------------------------------------------------- /behind-the-scenes/files/2019-writeup-traffic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/behind-the-scenes/files/2019-writeup-traffic.png -------------------------------------------------------------------------------- /behind-the-scenes/files/TLS-1.3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/behind-the-scenes/files/TLS-1.3.jpg -------------------------------------------------------------------------------- /behind-the-scenes/files/井字棋-百度知道.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/behind-the-scenes/files/井字棋-百度知道.jpg -------------------------------------------------------------------------------- /behind-the-scenes/files/代黑账号.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/behind-the-scenes/files/代黑账号.jpg -------------------------------------------------------------------------------- /behind-the-scenes/files/别人的hg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/behind-the-scenes/files/别人的hg.jpg -------------------------------------------------------------------------------- /behind-the-scenes/files/大成功没flag.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/behind-the-scenes/files/大成功没flag.jpg -------------------------------------------------------------------------------- /behind-the-scenes/files/开服之后.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/behind-the-scenes/files/开服之后.jpg -------------------------------------------------------------------------------- /behind-the-scenes/files/数理基础-打一顿出题人.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/behind-the-scenes/files/数理基础-打一顿出题人.jpg -------------------------------------------------------------------------------- /behind-the-scenes/files/数理模拟器-手算两小时.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/behind-the-scenes/files/数理模拟器-手算两小时.png -------------------------------------------------------------------------------- /behind-the-scenes/files/未来的信-openlug-star.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/behind-the-scenes/files/未来的信-openlug-star.jpg -------------------------------------------------------------------------------- /behind-the-scenes/files/榜一做不动了=AK.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/behind-the-scenes/files/榜一做不动了=AK.jpeg -------------------------------------------------------------------------------- /behind-the-scenes/files/温柔的积分.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/behind-the-scenes/files/温柔的积分.png -------------------------------------------------------------------------------- /behind-the-scenes/files/满脑子数理基础.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/behind-the-scenes/files/满脑子数理基础.jpg -------------------------------------------------------------------------------- /behind-the-scenes/files/激情游戏.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/behind-the-scenes/files/激情游戏.png -------------------------------------------------------------------------------- /behind-the-scenes/files/火星文.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/behind-the-scenes/files/火星文.png -------------------------------------------------------------------------------- /behind-the-scenes/files/火星文ID.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/behind-the-scenes/files/火星文ID.jpg -------------------------------------------------------------------------------- /behind-the-scenes/files/爱上火车发布啦.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/behind-the-scenes/files/爱上火车发布啦.jpeg -------------------------------------------------------------------------------- /behind-the-scenes/files/狗狗银行BRoll.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/behind-the-scenes/files/狗狗银行BRoll.jpg -------------------------------------------------------------------------------- /behind-the-scenes/files/猫咪问答-动物知识.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/behind-the-scenes/files/猫咪问答-动物知识.jpg -------------------------------------------------------------------------------- /behind-the-scenes/files/猫咪问答-妮可朋友看停车位.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/behind-the-scenes/files/猫咪问答-妮可朋友看停车位.jpg -------------------------------------------------------------------------------- /behind-the-scenes/files/真正的直线上升.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/behind-the-scenes/files/真正的直线上升.jpg -------------------------------------------------------------------------------- /behind-the-scenes/files/签到-2000人.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/behind-the-scenes/files/签到-2000人.jpg -------------------------------------------------------------------------------- /behind-the-scenes/files/签到-没法给你flag.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/behind-the-scenes/files/签到-没法给你flag.jpg -------------------------------------------------------------------------------- /behind-the-scenes/files/签到-要多少给多少.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/behind-the-scenes/files/签到-要多少给多少.jpg -------------------------------------------------------------------------------- /behind-the-scenes/files/这些题都很简单.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/behind-the-scenes/files/这些题都很简单.png -------------------------------------------------------------------------------- /behind-the-scenes/files/零号端口-提问.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/behind-the-scenes/files/零号端口-提问.jpg -------------------------------------------------------------------------------- /behind-the-scenes/files/零号端口-时空穿梭.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/behind-the-scenes/files/零号端口-时空穿梭.jpg -------------------------------------------------------------------------------- /behind-the-scenes/files/零号端口-没有.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/behind-the-scenes/files/零号端口-没有.JPG -------------------------------------------------------------------------------- /behind-the-scenes/files/零号端口-潜入机房.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/behind-the-scenes/files/零号端口-潜入机房.JPG -------------------------------------------------------------------------------- /official/2048/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/2048/README.md -------------------------------------------------------------------------------- /official/2048/src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/2048/src/Dockerfile -------------------------------------------------------------------------------- /official/2048/src/app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/2048/src/app/main.py -------------------------------------------------------------------------------- /official/2048/src/app/secret.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/2048/src/app/secret.py -------------------------------------------------------------------------------- /official/2048/src/app/static/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/2048/src/app/static/bg.png -------------------------------------------------------------------------------- /official/2048/src/app/static/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/2048/src/app/static/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /official/2048/src/app/static/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/2048/src/app/static/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /official/2048/src/app/static/error.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/2048/src/app/static/error.css -------------------------------------------------------------------------------- /official/2048/src/app/static/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/2048/src/app/static/jquery.min.js -------------------------------------------------------------------------------- /official/2048/src/app/static/js/animframe_polyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/2048/src/app/static/js/animframe_polyfill.js -------------------------------------------------------------------------------- /official/2048/src/app/static/js/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/2048/src/app/static/js/application.js -------------------------------------------------------------------------------- /official/2048/src/app/static/js/bind_polyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/2048/src/app/static/js/bind_polyfill.js -------------------------------------------------------------------------------- /official/2048/src/app/static/js/classlist_polyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/2048/src/app/static/js/classlist_polyfill.js -------------------------------------------------------------------------------- /official/2048/src/app/static/js/game_manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/2048/src/app/static/js/game_manager.js -------------------------------------------------------------------------------- /official/2048/src/app/static/js/grid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/2048/src/app/static/js/grid.js -------------------------------------------------------------------------------- /official/2048/src/app/static/js/html_actuator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/2048/src/app/static/js/html_actuator.js -------------------------------------------------------------------------------- /official/2048/src/app/static/js/keyboard_input_manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/2048/src/app/static/js/keyboard_input_manager.js -------------------------------------------------------------------------------- /official/2048/src/app/static/js/local_storage_manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/2048/src/app/static/js/local_storage_manager.js -------------------------------------------------------------------------------- /official/2048/src/app/static/js/tile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/2048/src/app/static/js/tile.js -------------------------------------------------------------------------------- /official/2048/src/app/static/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/2048/src/app/static/main.css -------------------------------------------------------------------------------- /official/2048/src/app/static/meta/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/2048/src/app/static/meta/apple-touch-icon.png -------------------------------------------------------------------------------- /official/2048/src/app/static/style/fonts/clear-sans.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/2048/src/app/static/style/fonts/clear-sans.css -------------------------------------------------------------------------------- /official/2048/src/app/static/style/helpers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/2048/src/app/static/style/helpers.scss -------------------------------------------------------------------------------- /official/2048/src/app/static/style/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/2048/src/app/static/style/main.css -------------------------------------------------------------------------------- /official/2048/src/app/static/style/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/2048/src/app/static/style/main.scss -------------------------------------------------------------------------------- /official/2048/src/app/templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/2048/src/app/templates/error.html -------------------------------------------------------------------------------- /official/2048/src/app/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/2048/src/app/templates/index.html -------------------------------------------------------------------------------- /official/2048/src/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/2048/src/docker-compose.yml -------------------------------------------------------------------------------- /official/233 同学的 Docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/233 同学的 Docker/README.md -------------------------------------------------------------------------------- /official/233 同学的 Docker/src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/233 同学的 Docker/src/Dockerfile -------------------------------------------------------------------------------- /official/233 同学的字符串工具/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/233 同学的字符串工具/README.md -------------------------------------------------------------------------------- /official/233 同学的字符串工具/src/string_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/233 同学的字符串工具/src/string_tool.py -------------------------------------------------------------------------------- /official/Flag 计算机/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/Flag 计算机/README.md -------------------------------------------------------------------------------- /official/Flag 计算机/pics/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/Flag 计算机/pics/1.png -------------------------------------------------------------------------------- /official/Flag 计算机/pics/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/Flag 计算机/pics/10.png -------------------------------------------------------------------------------- /official/Flag 计算机/pics/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/Flag 计算机/pics/11.png -------------------------------------------------------------------------------- /official/Flag 计算机/pics/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/Flag 计算机/pics/12.png -------------------------------------------------------------------------------- /official/Flag 计算机/pics/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/Flag 计算机/pics/13.png -------------------------------------------------------------------------------- /official/Flag 计算机/pics/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/Flag 计算机/pics/14.png -------------------------------------------------------------------------------- /official/Flag 计算机/pics/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/Flag 计算机/pics/15.png -------------------------------------------------------------------------------- /official/Flag 计算机/pics/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/Flag 计算机/pics/16.png -------------------------------------------------------------------------------- /official/Flag 计算机/pics/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/Flag 计算机/pics/17.png -------------------------------------------------------------------------------- /official/Flag 计算机/pics/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/Flag 计算机/pics/2.png -------------------------------------------------------------------------------- /official/Flag 计算机/pics/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/Flag 计算机/pics/3.png -------------------------------------------------------------------------------- /official/Flag 计算机/pics/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/Flag 计算机/pics/4.png -------------------------------------------------------------------------------- /official/Flag 计算机/pics/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/Flag 计算机/pics/5.png -------------------------------------------------------------------------------- /official/Flag 计算机/pics/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/Flag 计算机/pics/6.png -------------------------------------------------------------------------------- /official/Flag 计算机/pics/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/Flag 计算机/pics/7.png -------------------------------------------------------------------------------- /official/Flag 计算机/pics/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/Flag 计算机/pics/8.png -------------------------------------------------------------------------------- /official/Flag 计算机/pics/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/Flag 计算机/pics/9.png -------------------------------------------------------------------------------- /official/Flag 计算机/src/get_flag_system/.gitignore: -------------------------------------------------------------------------------- 1 | *.com 2 | *.o 3 | -------------------------------------------------------------------------------- /official/Flag 计算机/src/get_flag_system/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/Flag 计算机/src/get_flag_system/Makefile -------------------------------------------------------------------------------- /official/Flag 计算机/src/get_flag_system/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/Flag 计算机/src/get_flag_system/README.md -------------------------------------------------------------------------------- /official/Flag 计算机/src/get_flag_system/UNLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/Flag 计算机/src/get_flag_system/UNLICENSE -------------------------------------------------------------------------------- /official/Flag 计算机/src/get_flag_system/alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/Flag 计算机/src/get_flag_system/alloc.h -------------------------------------------------------------------------------- /official/Flag 计算机/src/get_flag_system/com.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/Flag 计算机/src/get_flag_system/com.ld -------------------------------------------------------------------------------- /official/Flag 计算机/src/get_flag_system/dosbox.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/Flag 计算机/src/get_flag_system/dosbox.conf -------------------------------------------------------------------------------- /official/Flag 计算机/src/get_flag_system/dosdef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/Flag 计算机/src/get_flag_system/dosdef.c -------------------------------------------------------------------------------- /official/Flag 计算机/src/get_flag_system/files/get_flag_system.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/Flag 计算机/src/get_flag_system/files/get_flag_system.exe -------------------------------------------------------------------------------- /official/Flag 计算机/src/get_flag_system/get_flag_system_fixed.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/Flag 计算机/src/get_flag_system/get_flag_system_fixed.exe -------------------------------------------------------------------------------- /official/Flag 计算机/src/get_flag_system/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/Flag 计算机/src/get_flag_system/init.h -------------------------------------------------------------------------------- /official/Flag 计算机/src/get_flag_system/int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/Flag 计算机/src/get_flag_system/int.h -------------------------------------------------------------------------------- /official/Flag 计算机/src/get_flag_system/joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/Flag 计算机/src/get_flag_system/joystick.h -------------------------------------------------------------------------------- /official/Flag 计算机/src/get_flag_system/keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/Flag 计算机/src/get_flag_system/keyboard.h -------------------------------------------------------------------------------- /official/Flag 计算机/src/get_flag_system/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/Flag 计算机/src/get_flag_system/math.h -------------------------------------------------------------------------------- /official/Flag 计算机/src/get_flag_system/numbers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/Flag 计算机/src/get_flag_system/numbers -------------------------------------------------------------------------------- /official/Flag 计算机/src/get_flag_system/only_dos.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/Flag 计算机/src/get_flag_system/only_dos.exe -------------------------------------------------------------------------------- /official/Flag 计算机/src/get_flag_system/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/Flag 计算机/src/get_flag_system/port.h -------------------------------------------------------------------------------- /official/Flag 计算机/src/get_flag_system/print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/Flag 计算机/src/get_flag_system/print.h -------------------------------------------------------------------------------- /official/Flag 计算机/src/get_flag_system/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/Flag 计算机/src/get_flag_system/rand.h -------------------------------------------------------------------------------- /official/Flag 计算机/src/get_flag_system/speaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/Flag 计算机/src/get_flag_system/speaker.h -------------------------------------------------------------------------------- /official/Flag 计算机/src/get_flag_system/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/Flag 计算机/src/get_flag_system/time.h -------------------------------------------------------------------------------- /official/Flag 计算机/src/get_flag_system/tone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/Flag 计算机/src/get_flag_system/tone.h -------------------------------------------------------------------------------- /official/Flag 计算机/src/get_flag_system/vga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/Flag 计算机/src/get_flag_system/vga.h -------------------------------------------------------------------------------- /official/Flag 计算机/src/get_flag_system/vga_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/Flag 计算机/src/get_flag_system/vga_font.h -------------------------------------------------------------------------------- /official/一闪而过的 Flag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/一闪而过的 Flag/README.md -------------------------------------------------------------------------------- /official/一闪而过的 Flag/files/Untitled01.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/一闪而过的 Flag/files/Untitled01.exe -------------------------------------------------------------------------------- /official/一闪而过的 Flag/src/Untitled01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/一闪而过的 Flag/src/Untitled01.c -------------------------------------------------------------------------------- /official/不经意传输/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/不经意传输/README.md -------------------------------------------------------------------------------- /official/不经意传输/ot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/不经意传输/ot.png -------------------------------------------------------------------------------- /official/不经意传输/src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/不经意传输/src/Dockerfile -------------------------------------------------------------------------------- /official/不经意传输/src/OT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/不经意传输/src/OT.py -------------------------------------------------------------------------------- /official/不经意传输/src/solve_ot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/不经意传输/src/solve_ot.py -------------------------------------------------------------------------------- /official/中间人/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/中间人/README.md -------------------------------------------------------------------------------- /official/中间人/files/MITM.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/中间人/files/MITM.zip -------------------------------------------------------------------------------- /official/中间人/src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/中间人/src/Dockerfile -------------------------------------------------------------------------------- /official/中间人/src/MITM1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/中间人/src/MITM1.py -------------------------------------------------------------------------------- /official/中间人/src/MITM2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/中间人/src/MITM2.py -------------------------------------------------------------------------------- /official/中间人/src/MITM3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/中间人/src/MITM3.py -------------------------------------------------------------------------------- /official/中间人/src/entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/中间人/src/entry.py -------------------------------------------------------------------------------- /official/中间人/src/mitm_exp1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/中间人/src/mitm_exp1.py -------------------------------------------------------------------------------- /official/中间人/src/mitm_exp2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/中间人/src/mitm_exp2.py -------------------------------------------------------------------------------- /official/中间人/src/mitm_exp3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/中间人/src/mitm_exp3.py -------------------------------------------------------------------------------- /official/中间人/src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/中间人/src/utils.py -------------------------------------------------------------------------------- /official/从零开始的 HTTP 链接/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/从零开始的 HTTP 链接/README.md -------------------------------------------------------------------------------- /official/从零开始的火星文生活/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/从零开始的火星文生活/README.md -------------------------------------------------------------------------------- /official/从零开始的火星文生活/files/gibberish_message.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/从零开始的火星文生活/files/gibberish_message.txt -------------------------------------------------------------------------------- /official/从零开始的火星文生活/files/常见乱码.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/从零开始的火星文生活/files/常见乱码.jpg -------------------------------------------------------------------------------- /official/从零开始的火星文生活/src/generate_and_solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/从零开始的火星文生活/src/generate_and_solve.py -------------------------------------------------------------------------------- /official/从零开始的记账工具人/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/从零开始的记账工具人/README.md -------------------------------------------------------------------------------- /official/从零开始的记账工具人/src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/从零开始的记账工具人/src/Dockerfile -------------------------------------------------------------------------------- /official/从零开始的记账工具人/src/app/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/从零开始的记账工具人/src/app/cert.pem -------------------------------------------------------------------------------- /official/从零开始的记账工具人/src/app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/从零开始的记账工具人/src/app/main.py -------------------------------------------------------------------------------- /official/从零开始的记账工具人/src/app/secret.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/从零开始的记账工具人/src/app/secret.py -------------------------------------------------------------------------------- /official/从零开始的记账工具人/src/app/static/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/从零开始的记账工具人/src/app/static/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /official/从零开始的记账工具人/src/app/static/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/从零开始的记账工具人/src/app/static/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /official/从零开始的记账工具人/src/app/static/error.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/从零开始的记账工具人/src/app/static/error.css -------------------------------------------------------------------------------- /official/从零开始的记账工具人/src/app/static/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/从零开始的记账工具人/src/app/static/jquery.min.js -------------------------------------------------------------------------------- /official/从零开始的记账工具人/src/app/static/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/从零开始的记账工具人/src/app/static/main.css -------------------------------------------------------------------------------- /official/从零开始的记账工具人/src/app/templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/从零开始的记账工具人/src/app/templates/error.html -------------------------------------------------------------------------------- /official/从零开始的记账工具人/src/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/从零开始的记账工具人/src/docker-compose.yml -------------------------------------------------------------------------------- /official/动态链接库检查器/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/动态链接库检查器/README.md -------------------------------------------------------------------------------- /official/动态链接库检查器/src/solution/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/动态链接库检查器/src/solution/Makefile -------------------------------------------------------------------------------- /official/动态链接库检查器/src/solution/evil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/动态链接库检查器/src/solution/evil.c -------------------------------------------------------------------------------- /official/动态链接库检查器/src/solution/evil.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/动态链接库检查器/src/solution/evil.script -------------------------------------------------------------------------------- /official/动态链接库检查器/src/solution/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/动态链接库检查器/src/solution/main.c -------------------------------------------------------------------------------- /official/动态链接库检查器/src/solution/make_evil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/动态链接库检查器/src/solution/make_evil.c -------------------------------------------------------------------------------- /official/动态链接库检查器/src/solution/shellcode.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/动态链接库检查器/src/solution/shellcode.asm -------------------------------------------------------------------------------- /official/室友的加密硬盘/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/室友的加密硬盘/README.md -------------------------------------------------------------------------------- /official/普通的身份认证器/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/普通的身份认证器/README.md -------------------------------------------------------------------------------- /official/普通的身份认证器/src/README.md: -------------------------------------------------------------------------------- 1 | 测试 token: `233333:MEUCIQDTTJu25fXbAgKcF+MDCGp1OSTd+4OwvNmTn/DhZryCiAIgDQXsmAHvLrAe2BSwaoSZO+ml6as+Aj0N51PI3e6Befs=`。 2 | -------------------------------------------------------------------------------- /official/普通的身份认证器/src/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/普通的身份认证器/src/cert.pem -------------------------------------------------------------------------------- /official/普通的身份认证器/src/exp/exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/普通的身份认证器/src/exp/exp.py -------------------------------------------------------------------------------- /official/普通的身份认证器/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/普通的身份认证器/src/index.html -------------------------------------------------------------------------------- /official/普通的身份认证器/src/jwt.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/普通的身份认证器/src/jwt.key -------------------------------------------------------------------------------- /official/普通的身份认证器/src/jwt.key.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/普通的身份认证器/src/jwt.key.pub -------------------------------------------------------------------------------- /official/普通的身份认证器/src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/普通的身份认证器/src/main.py -------------------------------------------------------------------------------- /official/普通的身份认证器/src/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/普通的身份认证器/src/requirements.txt -------------------------------------------------------------------------------- /official/普通的身份认证器/src/static/axios.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/普通的身份认证器/src/static/axios.min.js -------------------------------------------------------------------------------- /official/普通的身份认证器/src/static/user.css: -------------------------------------------------------------------------------- 1 | .text-block { 2 | white-space: pre; 3 | } -------------------------------------------------------------------------------- /official/普通的身份认证器/src/static/vue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/普通的身份认证器/src/static/vue.js -------------------------------------------------------------------------------- /official/来自一教的图片/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/来自一教的图片/README.md -------------------------------------------------------------------------------- /official/来自一教的图片/files/4f_system_middle.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/来自一教的图片/files/4f_system_middle.bmp -------------------------------------------------------------------------------- /official/来自一教的图片/pic/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/来自一教的图片/pic/1.png -------------------------------------------------------------------------------- /official/来自一教的图片/pic/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/来自一教的图片/pic/2.png -------------------------------------------------------------------------------- /official/来自一教的图片/pic/3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/来自一教的图片/pic/3.bmp -------------------------------------------------------------------------------- /official/来自未来的信笺/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/来自未来的信笺/README.md -------------------------------------------------------------------------------- /official/来自未来的信笺/files/frames.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/来自未来的信笺/files/frames.zip -------------------------------------------------------------------------------- /official/来自未来的信笺/src/exp/exp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/来自未来的信笺/src/exp/exp.sh -------------------------------------------------------------------------------- /official/来自未来的信笺/src/files/COMMITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/来自未来的信笺/src/files/COMMITS -------------------------------------------------------------------------------- /official/来自未来的信笺/src/files/META: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/来自未来的信笺/src/files/META -------------------------------------------------------------------------------- /official/来自未来的信笺/src/files/repo/flag: -------------------------------------------------------------------------------- 1 | flag{HELL0_from_Arct1c!} -------------------------------------------------------------------------------- /official/来自未来的信笺/src/generate_qrcode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/来自未来的信笺/src/generate_qrcode.sh -------------------------------------------------------------------------------- /official/永不溢出的计算器/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/永不溢出的计算器/README.md -------------------------------------------------------------------------------- /official/永不溢出的计算器/src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/永不溢出的计算器/src/Dockerfile -------------------------------------------------------------------------------- /official/永不溢出的计算器/src/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/永不溢出的计算器/src/server.py -------------------------------------------------------------------------------- /official/狗狗银行/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/狗狗银行/README.md -------------------------------------------------------------------------------- /official/狗狗银行/src/api/.gitignore: -------------------------------------------------------------------------------- 1 | .stack-work/ 2 | *.cabal 3 | /db 4 | -------------------------------------------------------------------------------- /official/狗狗银行/src/api/package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/狗狗银行/src/api/package.yaml -------------------------------------------------------------------------------- /official/狗狗银行/src/api/src/App/Models.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/狗狗银行/src/api/src/App/Models.hs -------------------------------------------------------------------------------- /official/狗狗银行/src/api/src/App/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/狗狗银行/src/api/src/App/Types.hs -------------------------------------------------------------------------------- /official/狗狗银行/src/api/src/api.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/狗狗银行/src/api/src/api.hs -------------------------------------------------------------------------------- /official/狗狗银行/src/api/stack.yaml: -------------------------------------------------------------------------------- 1 | resolver: lts-16.5 2 | -------------------------------------------------------------------------------- /official/狗狗银行/src/api/stack.yaml.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/狗狗银行/src/api/stack.yaml.lock -------------------------------------------------------------------------------- /official/狗狗银行/src/frontend/.gitignore: -------------------------------------------------------------------------------- 1 | /dist/ 2 | -------------------------------------------------------------------------------- /official/狗狗银行/src/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/狗狗银行/src/frontend/package.json -------------------------------------------------------------------------------- /official/狗狗银行/src/frontend/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/狗狗银行/src/frontend/src/app.js -------------------------------------------------------------------------------- /official/狗狗银行/src/frontend/src/coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/狗狗银行/src/frontend/src/coin.png -------------------------------------------------------------------------------- /official/狗狗银行/src/frontend/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/狗狗银行/src/frontend/src/index.html -------------------------------------------------------------------------------- /official/狗狗银行/src/frontend/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/狗狗银行/src/frontend/src/index.js -------------------------------------------------------------------------------- /official/狗狗银行/src/frontend/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/狗狗银行/src/frontend/src/style.css -------------------------------------------------------------------------------- /official/狗狗银行/src/frontend/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/狗狗银行/src/frontend/webpack.config.js -------------------------------------------------------------------------------- /official/狗狗银行/src/frontend/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/狗狗银行/src/frontend/yarn.lock -------------------------------------------------------------------------------- /official/狗狗银行/src/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/狗狗银行/src/solution.py -------------------------------------------------------------------------------- /official/猫咪问答++/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/猫咪问答++/README.md -------------------------------------------------------------------------------- /official/猫咪问答++/images/bd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/猫咪问答++/images/bd.png -------------------------------------------------------------------------------- /official/猫咪问答++/images/rfc1149.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/猫咪问答++/images/rfc1149.png -------------------------------------------------------------------------------- /official/猫咪问答++/images/sfd2019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/猫咪问答++/images/sfd2019.png -------------------------------------------------------------------------------- /official/生活在博弈树上/README.assets/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/生活在博弈树上/README.assets/1.png -------------------------------------------------------------------------------- /official/生活在博弈树上/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/生活在博弈树上/README.md -------------------------------------------------------------------------------- /official/生活在博弈树上/files/tictactoe.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/生活在博弈树上/files/tictactoe.zip -------------------------------------------------------------------------------- /official/生活在博弈树上/src/exp/pwn1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/生活在博弈树上/src/exp/pwn1.py -------------------------------------------------------------------------------- /official/生活在博弈树上/src/exp/pwn2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/生活在博弈树上/src/exp/pwn2.py -------------------------------------------------------------------------------- /official/生活在博弈树上/src/tictactoe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/生活在博弈树上/src/tictactoe -------------------------------------------------------------------------------- /official/生活在博弈树上/src/tictactoe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/生活在博弈树上/src/tictactoe.c -------------------------------------------------------------------------------- /official/签到/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/签到/README.md -------------------------------------------------------------------------------- /official/签到/images/numbers_-5_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/签到/images/numbers_-5_50.png -------------------------------------------------------------------------------- /official/签到/images/numbers_0_1.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/签到/images/numbers_0_1.5.png -------------------------------------------------------------------------------- /official/自复读的复读机/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/自复读的复读机/README.md -------------------------------------------------------------------------------- /official/自复读的复读机/src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/自复读的复读机/src/Dockerfile -------------------------------------------------------------------------------- /official/自复读的复读机/src/checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/自复读的复读机/src/checker.py -------------------------------------------------------------------------------- /official/自复读的复读机/src/runner.py: -------------------------------------------------------------------------------- 1 | exec(input()) 2 | -------------------------------------------------------------------------------- /official/证验码/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/证验码/README.md -------------------------------------------------------------------------------- /official/证验码/files/shuffle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/证验码/files/shuffle.py -------------------------------------------------------------------------------- /official/证验码/payload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/证验码/payload.py -------------------------------------------------------------------------------- /official/证验码/src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/证验码/src/Dockerfile -------------------------------------------------------------------------------- /official/证验码/src/app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/证验码/src/app/main.py -------------------------------------------------------------------------------- /official/证验码/src/app/secret.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/证验码/src/app/secret.py -------------------------------------------------------------------------------- /official/证验码/src/app/static/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/证验码/src/app/static/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /official/证验码/src/app/static/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/证验码/src/app/static/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /official/证验码/src/app/static/error.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/证验码/src/app/static/error.css -------------------------------------------------------------------------------- /official/证验码/src/app/static/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/证验码/src/app/static/jquery.min.js -------------------------------------------------------------------------------- /official/证验码/src/app/static/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/证验码/src/app/static/main.css -------------------------------------------------------------------------------- /official/证验码/src/app/templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/证验码/src/app/templates/error.html -------------------------------------------------------------------------------- /official/证验码/src/app/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/证验码/src/app/templates/index.html -------------------------------------------------------------------------------- /official/证验码/src/app/templates/result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/证验码/src/app/templates/result.html -------------------------------------------------------------------------------- /official/证验码/src/app/utils/SourceCodePro-Light.ttf.placeholder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/证验码/src/app/utils/SourceCodePro-Light.ttf.placeholder -------------------------------------------------------------------------------- /official/证验码/src/app/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/证验码/src/app/utils/__init__.py -------------------------------------------------------------------------------- /official/证验码/src/app/utils/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/证验码/src/app/utils/generator.py -------------------------------------------------------------------------------- /official/证验码/src/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/证验码/src/docker-compose.yml -------------------------------------------------------------------------------- /official/证验码/src/files/shuffle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/证验码/src/files/shuffle.py -------------------------------------------------------------------------------- /official/超基础的数理模拟器/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超基础的数理模拟器/README.md -------------------------------------------------------------------------------- /official/超基础的数理模拟器/src/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超基础的数理模拟器/src/docker-compose.yml -------------------------------------------------------------------------------- /official/超基础的数理模拟器/src/generator/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超基础的数理模拟器/src/generator/Dockerfile -------------------------------------------------------------------------------- /official/超基础的数理模拟器/src/generator/gen.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超基础的数理模拟器/src/generator/gen.sage -------------------------------------------------------------------------------- /official/超基础的数理模拟器/src/simulator/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超基础的数理模拟器/src/simulator/Dockerfile -------------------------------------------------------------------------------- /official/超基础的数理模拟器/src/simulator/app/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超基础的数理模拟器/src/simulator/app/cert.pem -------------------------------------------------------------------------------- /official/超基础的数理模拟器/src/simulator/app/encrypted_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超基础的数理模拟器/src/simulator/app/encrypted_session.py -------------------------------------------------------------------------------- /official/超基础的数理模拟器/src/simulator/app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超基础的数理模拟器/src/simulator/app/main.py -------------------------------------------------------------------------------- /official/超基础的数理模拟器/src/simulator/app/static/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超基础的数理模拟器/src/simulator/app/static/bootstrap.min.css -------------------------------------------------------------------------------- /official/超基础的数理模拟器/src/simulator/app/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超基础的数理模拟器/src/simulator/app/static/favicon.ico -------------------------------------------------------------------------------- /official/超基础的数理模拟器/src/simulator/app/static/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超基础的数理模拟器/src/simulator/app/static/font-awesome.min.css -------------------------------------------------------------------------------- /official/超基础的数理模拟器/src/simulator/app/static/tex-svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超基础的数理模拟器/src/simulator/app/static/tex-svg.js -------------------------------------------------------------------------------- /official/超基础的数理模拟器/src/simulator/app/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超基础的数理模拟器/src/simulator/app/templates/index.html -------------------------------------------------------------------------------- /official/超安全的代理服务器/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超安全的代理服务器/README.md -------------------------------------------------------------------------------- /official/超安全的代理服务器/pic/pic_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超安全的代理服务器/pic/pic_1.png -------------------------------------------------------------------------------- /official/超安全的代理服务器/src/smart_proxy/LICENSE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /official/超安全的代理服务器/src/smart_proxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超安全的代理服务器/src/smart_proxy/Makefile -------------------------------------------------------------------------------- /official/超安全的代理服务器/src/smart_proxy/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超安全的代理服务器/src/smart_proxy/auth.go -------------------------------------------------------------------------------- /official/超安全的代理服务器/src/smart_proxy/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超安全的代理服务器/src/smart_proxy/flag.go -------------------------------------------------------------------------------- /official/超安全的代理服务器/src/smart_proxy/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超安全的代理服务器/src/smart_proxy/go.mod -------------------------------------------------------------------------------- /official/超安全的代理服务器/src/smart_proxy/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超安全的代理服务器/src/smart_proxy/go.sum -------------------------------------------------------------------------------- /official/超安全的代理服务器/src/smart_proxy/internal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超安全的代理服务器/src/smart_proxy/internal.go -------------------------------------------------------------------------------- /official/超安全的代理服务器/src/smart_proxy/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超安全的代理服务器/src/smart_proxy/main.go -------------------------------------------------------------------------------- /official/超安全的代理服务器/src/smart_proxy/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超安全的代理服务器/src/smart_proxy/proxy.go -------------------------------------------------------------------------------- /official/超安全的代理服务器/src/smart_proxy/qos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超安全的代理服务器/src/smart_proxy/qos.go -------------------------------------------------------------------------------- /official/超安全的代理服务器/src/smart_proxy/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超安全的代理服务器/src/smart_proxy/server.go -------------------------------------------------------------------------------- /official/超安全的代理服务器/src/smart_proxy/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超安全的代理服务器/src/smart_proxy/template.go -------------------------------------------------------------------------------- /official/超安全的代理服务器/src/smart_proxy/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超安全的代理服务器/src/smart_proxy/transport.go -------------------------------------------------------------------------------- /official/超安全的代理服务器/src/smart_proxy/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超安全的代理服务器/src/smart_proxy/uuid.go -------------------------------------------------------------------------------- /official/超简单的世界模拟器/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简单的世界模拟器/README.md -------------------------------------------------------------------------------- /official/超简单的世界模拟器/files/comic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简单的世界模拟器/files/comic.png -------------------------------------------------------------------------------- /official/超简单的世界模拟器/src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简单的世界模拟器/src/Dockerfile -------------------------------------------------------------------------------- /official/超简单的世界模拟器/src/game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简单的世界模拟器/src/game.py -------------------------------------------------------------------------------- /official/超简单的世界模拟器/src/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简单的世界模拟器/src/solve.py -------------------------------------------------------------------------------- /official/超简易的网盘服务器/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简易的网盘服务器/README.md -------------------------------------------------------------------------------- /official/超简易的网盘服务器/src/cloud.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简易的网盘服务器/src/cloud.conf -------------------------------------------------------------------------------- /official/超简易的网盘服务器/src/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简易的网盘服务器/src/docker-compose.yml -------------------------------------------------------------------------------- /official/超简易的网盘服务器/src/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简易的网盘服务器/src/dockerfile -------------------------------------------------------------------------------- /official/超简易的网盘服务器/src/flag.txt: -------------------------------------------------------------------------------- 1 | flag{super_secure_cloud} -------------------------------------------------------------------------------- /official/超简易的网盘服务器/src/htpasswd: -------------------------------------------------------------------------------- 1 | h5ai:$apr1$hzUYny/A$/p0/ZFcTOxeFtO97llMN41 2 | -------------------------------------------------------------------------------- /official/超简易的网盘服务器/src/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简易的网盘服务器/src/nginx.conf -------------------------------------------------------------------------------- /official/超简易的网盘服务器/src/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简易的网盘服务器/src/php.ini -------------------------------------------------------------------------------- /official/超简易的网盘服务器/src/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简易的网盘服务器/src/start.sh -------------------------------------------------------------------------------- /official/超简易的网盘服务器/src/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简易的网盘服务器/src/supervisord.conf -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/README.assets/image-20201102234807655.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/README.assets/image-20201102234807655.png -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/README.assets/image-20201102235028183.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/README.assets/image-20201102235028183.png -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/README.assets/image-20201102235204811.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/README.assets/image-20201102235204811.png -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/README.md -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/files/glHackergame.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/files/glHackergame.zip -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/ 2 | .vs/ 3 | build/ 4 | out/ -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/CMakeLists.txt -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/README.md -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/cmake/modules/FindASSIMP.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/cmake/modules/FindASSIMP.cmake -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/cmake/modules/FindGLFW3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/cmake/modules/FindGLFW3.cmake -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/cmake/modules/FindGLM.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/cmake/modules/FindGLM.cmake -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/dll/assimp-vc140-mt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/dll/assimp-vc140-mt.dll -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/GL/glew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/GL/glew.h -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/GL/glxew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/GL/glxew.h -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/GL/wglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/GL/wglew.h -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/GLFW/glfw3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/GLFW/glfw3.h -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/GLFW/glfw3native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/GLFW/glfw3native.h -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/KHR/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/KHR/khrplatform.h -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/assimp/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/assimp/.editorconfig -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/assimp/Compiler/poppack1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/assimp/Compiler/poppack1.h -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/assimp/Compiler/pstdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/assimp/Compiler/pstdint.h -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/assimp/Compiler/pushpack1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/assimp/Compiler/pushpack1.h -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/assimp/DefaultLogger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/assimp/DefaultLogger.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/assimp/Exporter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/assimp/Exporter.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/assimp/IOStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/assimp/IOStream.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/assimp/IOSystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/assimp/IOSystem.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/assimp/Importer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/assimp/Importer.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/assimp/LogStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/assimp/LogStream.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/assimp/Logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/assimp/Logger.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/assimp/NullLogger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/assimp/NullLogger.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/assimp/ProgressHandler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/assimp/ProgressHandler.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/assimp/ai_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/assimp/ai_assert.h -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/assimp/anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/assimp/anim.h -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/assimp/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/assimp/camera.h -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/assimp/cexport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/assimp/cexport.h -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/assimp/cfileio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/assimp/cfileio.h -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/assimp/cimport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/assimp/cimport.h -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/assimp/color4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/assimp/color4.h -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/assimp/color4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/assimp/color4.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/assimp/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/assimp/config.h -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/assimp/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/assimp/defs.h -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/assimp/importerdesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/assimp/importerdesc.h -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/assimp/light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/assimp/light.h -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/assimp/material.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/assimp/material.h -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/assimp/material.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/assimp/material.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/assimp/matrix3x3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/assimp/matrix3x3.h -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/assimp/matrix3x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/assimp/matrix3x3.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/assimp/matrix4x4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/assimp/matrix4x4.h -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/assimp/matrix4x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/assimp/matrix4x4.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/assimp/mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/assimp/mesh.h -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/assimp/metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/assimp/metadata.h -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/assimp/postprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/assimp/postprocess.h -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/assimp/quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/assimp/quaternion.h -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/assimp/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/assimp/quaternion.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/assimp/scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/assimp/scene.h -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/assimp/texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/assimp/texture.h -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/assimp/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/assimp/types.h -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/assimp/vector2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/assimp/vector2.h -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/assimp/vector2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/assimp/vector2.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/assimp/vector3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/assimp/vector3.h -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/assimp/vector3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/assimp/vector3.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/assimp/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/assimp/version.h -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glad/glad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glad/glad.h -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/CMakeLists.txt -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/common.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/detail/_features.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/detail/_features.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/detail/_fixes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/detail/_fixes.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/detail/_noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/detail/_noise.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/detail/_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/detail/_swizzle.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/detail/_swizzle_func.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/detail/_swizzle_func.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/detail/_vectorize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/detail/_vectorize.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/detail/func_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/detail/func_common.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/detail/func_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/detail/func_integer.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/detail/func_matrix.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/detail/func_matrix.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/detail/func_packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/detail/func_packing.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/detail/func_trigonometric_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/detail/glm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/detail/glm.cpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/detail/qualifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/detail/qualifier.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/detail/setup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/detail/setup.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/detail/type_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/detail/type_float.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/detail/type_half.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/detail/type_half.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/detail/type_half.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/detail/type_half.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/detail/type_mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/detail/type_mat2x2.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/detail/type_mat2x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/detail/type_mat2x2.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/detail/type_mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/detail/type_mat2x3.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/detail/type_mat2x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/detail/type_mat2x3.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/detail/type_mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/detail/type_mat2x4.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/detail/type_mat2x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/detail/type_mat2x4.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/detail/type_mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/detail/type_mat3x2.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/detail/type_mat3x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/detail/type_mat3x2.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/detail/type_mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/detail/type_mat3x3.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/detail/type_mat3x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/detail/type_mat3x3.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/detail/type_mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/detail/type_mat3x4.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/detail/type_mat3x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/detail/type_mat3x4.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/detail/type_mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/detail/type_mat4x2.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/detail/type_mat4x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/detail/type_mat4x2.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/detail/type_mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/detail/type_mat4x3.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/detail/type_mat4x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/detail/type_mat4x3.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/detail/type_mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/detail/type_mat4x4.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/detail/type_mat4x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/detail/type_mat4x4.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/detail/type_quat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/detail/type_quat.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/detail/type_quat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/detail/type_quat.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/detail/type_vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/detail/type_vec1.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/detail/type_vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/detail/type_vec1.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/detail/type_vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/detail/type_vec2.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/detail/type_vec2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/detail/type_vec2.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/detail/type_vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/detail/type_vec3.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/detail/type_vec3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/detail/type_vec3.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/detail/type_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/detail/type_vec4.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/detail/type_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/detail/type_vec4.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/exponential.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/ext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/ext.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/ext/matrix_double2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/ext/matrix_double2x2.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/ext/matrix_double2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/ext/matrix_double2x3.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/ext/matrix_double2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/ext/matrix_double2x4.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/ext/matrix_double3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/ext/matrix_double3x2.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/ext/matrix_double3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/ext/matrix_double3x3.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/ext/matrix_double3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/ext/matrix_double3x4.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/ext/matrix_double4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/ext/matrix_double4x2.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/ext/matrix_double4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/ext/matrix_double4x3.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/ext/matrix_double4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/ext/matrix_double4x4.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/ext/matrix_float2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/ext/matrix_float2x2.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/ext/matrix_float2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/ext/matrix_float2x3.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/ext/matrix_float2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/ext/matrix_float2x4.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/ext/matrix_float3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/ext/matrix_float3x2.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/ext/matrix_float3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/ext/matrix_float3x3.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/ext/matrix_float3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/ext/matrix_float3x4.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/ext/matrix_float4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/ext/matrix_float4x2.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/ext/matrix_float4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/ext/matrix_float4x3.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/ext/matrix_float4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/ext/matrix_float4x4.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/ext/matrix_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/ext/matrix_transform.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/ext/matrix_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/ext/matrix_transform.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/ext/quaternion_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/ext/quaternion_float.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/ext/scalar_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/ext/scalar_common.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/ext/scalar_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/ext/scalar_common.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/ext/scalar_constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/ext/scalar_constants.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/ext/scalar_constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/ext/scalar_constants.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/ext/scalar_int_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/ext/scalar_int_sized.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/ext/scalar_ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/ext/scalar_ulp.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/ext/scalar_ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/ext/scalar_ulp.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/ext/vector_bool1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/ext/vector_bool1.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/ext/vector_bool2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/ext/vector_bool2.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/ext/vector_bool3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/ext/vector_bool3.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/ext/vector_bool4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/ext/vector_bool4.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/ext/vector_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/ext/vector_common.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/ext/vector_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/ext/vector_common.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/ext/vector_double1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/ext/vector_double1.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/ext/vector_double2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/ext/vector_double2.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/ext/vector_double3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/ext/vector_double3.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/ext/vector_double4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/ext/vector_double4.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/ext/vector_float1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/ext/vector_float1.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/ext/vector_float2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/ext/vector_float2.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/ext/vector_float3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/ext/vector_float3.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/ext/vector_float4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/ext/vector_float4.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/ext/vector_int1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/ext/vector_int1.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/ext/vector_int2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/ext/vector_int2.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/ext/vector_int3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/ext/vector_int3.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/ext/vector_int4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/ext/vector_int4.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/ext/vector_uint1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/ext/vector_uint1.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/ext/vector_uint2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/ext/vector_uint2.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/ext/vector_uint3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/ext/vector_uint3.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/ext/vector_uint4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/ext/vector_uint4.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/ext/vector_ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/ext/vector_ulp.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/ext/vector_ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/ext/vector_ulp.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/fwd.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/geometric.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/glm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/glm.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/bitfield.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/bitfield.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/bitfield.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/bitfield.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/color_space.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/color_space.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/constants.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/constants.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/epsilon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/epsilon.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/epsilon.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/epsilon.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/integer.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/integer.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/matrix_access.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/matrix_access.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/matrix_access.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/matrix_access.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/matrix_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/matrix_integer.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/matrix_inverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/matrix_inverse.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/matrix_inverse.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/matrix_inverse.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/matrix_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/matrix_transform.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/matrix_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/matrix_transform.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/noise.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/noise.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/packing.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/packing.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/quaternion.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/quaternion.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/quaternion_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/random.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/random.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/random.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/reciprocal.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/reciprocal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/reciprocal.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/round.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/round.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/round.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/round.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/type_aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/type_aligned.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/type_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/type_precision.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/type_precision.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_precision 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/type_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/type_ptr.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/type_ptr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/type_ptr.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/ulp.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/ulp.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_ulp 2 | /// 3 | 4 | -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtc/vec1.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/bit.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/bit.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/bit.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/closest_point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/closest_point.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/closest_point.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/closest_point.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/color_encoding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/color_encoding.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/color_encoding.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/color_encoding.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/color_space.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/color_space.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/common.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/common.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/compatibility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/compatibility.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/compatibility.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/compatibility.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/component_wise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/component_wise.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/component_wise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/component_wise.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/dual_quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/dual_quaternion.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/dual_quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/dual_quaternion.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/easing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/easing.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/easing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/easing.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/euler_angles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/euler_angles.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/euler_angles.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/euler_angles.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/extend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/extend.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/extend.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/extend.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/extended_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/extended_min_max.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/functions.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/functions.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/functions.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/gradient_paint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/gradient_paint.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/gradient_paint.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/gradient_paint.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/hash.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/hash.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/hash.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/integer.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/integer.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/intersect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/intersect.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/intersect.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/intersect.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/io.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/io.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/io.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/log_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/log_base.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/log_base.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/log_base.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/matrix_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/matrix_query.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/matrix_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/matrix_query.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/mixed_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/mixed_product.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/mixed_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/mixed_product.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/norm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/norm.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/norm.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/norm.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/normal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/normal.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/normal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/normal.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/normalize_dot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/normalize_dot.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/normalize_dot.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/normalize_dot.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/number_precision.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_number_precision 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/optimum_pow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/optimum_pow.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/optimum_pow.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/optimum_pow.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/orthonormalize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/orthonormalize.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/orthonormalize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/orthonormalize.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/perpendicular.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/perpendicular.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/perpendicular.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/perpendicular.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/projection.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/projection.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/quaternion.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/quaternion.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/range.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/raw_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/raw_data.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/raw_data.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_raw_data 2 | 3 | -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/rotate_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/rotate_vector.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/rotate_vector.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/rotate_vector.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/spline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/spline.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/spline.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/spline.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/std_based_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/std_based_type.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/std_based_type.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_std_based_type 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/string_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/string_cast.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/string_cast.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/string_cast.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/texture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/texture.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/texture.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/texture.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/transform.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/transform.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/transform2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/transform2.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/transform2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/transform2.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/type_aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/type_aligned.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/type_aligned.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_type_aligned 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/type_trait.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/type_trait.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/type_trait.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/type_trait.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/vec_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/vec_swizzle.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/vector_angle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/vector_angle.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/vector_angle.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/vector_angle.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/vector_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/vector_query.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/vector_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/vector_query.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/wrap.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/wrap.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/gtx/wrap.inl -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/integer.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/mat2x2.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/mat2x3.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/mat2x4.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/mat3x2.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/mat3x3.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/mat3x4.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/mat4x2.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/mat4x3.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/mat4x4.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/matrix.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/packing.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/simd/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/simd/common.h -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/simd/exponential.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/simd/exponential.h -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/simd/geometric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/simd/geometric.h -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/simd/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/simd/integer.h -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/simd/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/simd/matrix.h -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/simd/packing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/simd/packing.h -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/simd/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/simd/platform.h -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/simd/trigonometric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/simd/trigonometric.h -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/trigonometric.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/vec2.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/vec3.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/vec4.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/glm/vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/glm/vector_relational.hpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/learnopengl/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/learnopengl/camera.h -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/learnopengl/mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/learnopengl/mesh.h -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/learnopengl/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/learnopengl/model.h -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/learnopengl/shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/learnopengl/shader.h -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/learnopengl/shader_m.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/learnopengl/shader_m.h -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/includes/learnopengl/shader_s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/includes/learnopengl/shader_s.h -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/lib/assimp.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/lib/assimp.lib -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/lib/glew32s.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/lib/glew32s.lib -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/lib/glfw3.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/lib/glfw3.lib -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/main/basic_lighting.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/main/basic_lighting.fs -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/main/basic_lighting.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/main/basic_lighting.vs -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/main/data.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/main/data.bin -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/main/glHackergame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/main/glHackergame.cpp -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/main/glad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/main/glad.c -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/util/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/util/README.md -------------------------------------------------------------------------------- /official/超简陋的 OpenGL 小程序/src/util/converter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超简陋的 OpenGL 小程序/src/util/converter.cpp -------------------------------------------------------------------------------- /official/超精准的宇宙射线模拟器/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超精准的宇宙射线模拟器/README.md -------------------------------------------------------------------------------- /official/超精准的宇宙射线模拟器/files/meme.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超精准的宇宙射线模拟器/files/meme.jpg -------------------------------------------------------------------------------- /official/超精准的宇宙射线模拟器/src/bitflip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超精准的宇宙射线模拟器/src/bitflip -------------------------------------------------------------------------------- /official/超精准的宇宙射线模拟器/src/flip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超精准的宇宙射线模拟器/src/flip.c -------------------------------------------------------------------------------- /official/超精准的宇宙射线模拟器/src/solve_flip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超精准的宇宙射线模拟器/src/solve_flip.py -------------------------------------------------------------------------------- /official/超精巧的数字论证器/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超精巧的数字论证器/README.md -------------------------------------------------------------------------------- /official/超精巧的数字论证器/src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超精巧的数字论证器/src/Dockerfile -------------------------------------------------------------------------------- /official/超精巧的数字论证器/src/theorem_prover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超精巧的数字论证器/src/theorem_prover.py -------------------------------------------------------------------------------- /official/超自动的开箱模拟器/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超自动的开箱模拟器/README.md -------------------------------------------------------------------------------- /official/超自动的开箱模拟器/src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超自动的开箱模拟器/src/Dockerfile -------------------------------------------------------------------------------- /official/超自动的开箱模拟器/src/unboxing_simulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超自动的开箱模拟器/src/unboxing_simulator.py -------------------------------------------------------------------------------- /official/超迷你的挖矿模拟器/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超迷你的挖矿模拟器/README.md -------------------------------------------------------------------------------- /official/超迷你的挖矿模拟器/bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超迷你的挖矿模拟器/bar.png -------------------------------------------------------------------------------- /official/超迷你的挖矿模拟器/files/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超迷你的挖矿模拟器/files/screenshot.png -------------------------------------------------------------------------------- /official/超迷你的挖矿模拟器/foo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超迷你的挖矿模拟器/foo.png -------------------------------------------------------------------------------- /official/超迷你的挖矿模拟器/src/MiniMinerSolution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/official/超迷你的挖矿模拟器/src/MiniMinerSolution.java -------------------------------------------------------------------------------- /players/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /players/Albanis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/Albanis/README.md -------------------------------------------------------------------------------- /players/GalaxySnail/05_从零开始的记账工具人.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/GalaxySnail/05_从零开始的记账工具人.py -------------------------------------------------------------------------------- /players/GalaxySnail/06_超简单的世界模拟器.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/GalaxySnail/06_超简单的世界模拟器.py -------------------------------------------------------------------------------- /players/GalaxySnail/07_从零开始的火星文生活.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/GalaxySnail/07_从零开始的火星文生活.py -------------------------------------------------------------------------------- /players/GalaxySnail/08_自复读的复读机.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/GalaxySnail/08_自复读的复读机.py -------------------------------------------------------------------------------- /players/GalaxySnail/09_233同学的字符串工具.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/GalaxySnail/09_233同学的字符串工具.py -------------------------------------------------------------------------------- /players/GalaxySnail/16_狗狗银行.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/GalaxySnail/16_狗狗银行.py -------------------------------------------------------------------------------- /players/GalaxySnail/17_超基础的数理模拟器.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/GalaxySnail/17_超基础的数理模拟器.py -------------------------------------------------------------------------------- /players/GalaxySnail/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/GalaxySnail/README.md -------------------------------------------------------------------------------- /players/Haruka/2048/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/Haruka/2048/readme.md -------------------------------------------------------------------------------- /players/Haruka/233 同学的 Docker/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/Haruka/233 同学的 Docker/readme.md -------------------------------------------------------------------------------- /players/Haruka/Flag 计算机/dosflag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/Haruka/Flag 计算机/dosflag.py -------------------------------------------------------------------------------- /players/Haruka/Flag 计算机/get_flag_system_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/Haruka/Flag 计算机/get_flag_system_1.c -------------------------------------------------------------------------------- /players/Haruka/Flag 计算机/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/Haruka/Flag 计算机/readme.md -------------------------------------------------------------------------------- /players/Haruka/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/Haruka/readme.md -------------------------------------------------------------------------------- /players/Haruka/一闪而过的 Flag/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/Haruka/一闪而过的 Flag/readme.md -------------------------------------------------------------------------------- /players/Haruka/从零开始的 HTTP 链接/in.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/Haruka/从零开始的 HTTP 链接/in.py -------------------------------------------------------------------------------- /players/Haruka/从零开始的 HTTP 链接/out.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/Haruka/从零开始的 HTTP 链接/out.py -------------------------------------------------------------------------------- /players/Haruka/从零开始的 HTTP 链接/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/Haruka/从零开始的 HTTP 链接/readme.md -------------------------------------------------------------------------------- /players/Haruka/从零开始的记账工具人/cn_num.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/Haruka/从零开始的记账工具人/cn_num.py -------------------------------------------------------------------------------- /players/Haruka/从零开始的记账工具人/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/Haruka/从零开始的记账工具人/readme.md -------------------------------------------------------------------------------- /players/Haruka/动态链接库检查器/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/Haruka/动态链接库检查器/readme.md -------------------------------------------------------------------------------- /players/Haruka/室友的加密硬盘/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/Haruka/室友的加密硬盘/readme.md -------------------------------------------------------------------------------- /players/Haruka/来自一教的图片/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/Haruka/来自一教的图片/readme.md -------------------------------------------------------------------------------- /players/Haruka/来自未来的信笺/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/Haruka/来自未来的信笺/readme.md -------------------------------------------------------------------------------- /players/Haruka/狗狗银行/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/Haruka/狗狗银行/readme.md -------------------------------------------------------------------------------- /players/Haruka/猫咪问答++/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/Haruka/猫咪问答++/readme.md -------------------------------------------------------------------------------- /players/Haruka/生活在博弈树上/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/Haruka/生活在博弈树上/readme.md -------------------------------------------------------------------------------- /players/Haruka/签到/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/Haruka/签到/readme.md -------------------------------------------------------------------------------- /players/Haruka/超基础的数理模拟器/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/Haruka/超基础的数理模拟器/readme.md -------------------------------------------------------------------------------- /players/Haruka/超简陋的 OpenGL 小程序/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/Haruka/超简陋的 OpenGL 小程序/readme.md -------------------------------------------------------------------------------- /players/Haruka/超精准的宇宙射线模拟器/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/Haruka/超精准的宇宙射线模拟器/readme.md -------------------------------------------------------------------------------- /players/Hykilpikonna/KotlinProject/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/Hykilpikonna/KotlinProject/build.gradle -------------------------------------------------------------------------------- /players/Hykilpikonna/KotlinProject/gradle.properties: -------------------------------------------------------------------------------- 1 | kotlin.code.style=official -------------------------------------------------------------------------------- /players/Hykilpikonna/KotlinProject/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'Hackergame2020' 2 | 3 | -------------------------------------------------------------------------------- /players/Hykilpikonna/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/Hykilpikonna/README.md -------------------------------------------------------------------------------- /players/Hykilpikonna/images/15-result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/Hykilpikonna/images/15-result.png -------------------------------------------------------------------------------- /players/NaiveTomcat/2020-11-07-dockerWP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/NaiveTomcat/2020-11-07-dockerWP.md -------------------------------------------------------------------------------- /players/NaiveTomcat/2020-11-07-字符串工具WP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/NaiveTomcat/2020-11-07-字符串工具WP.md -------------------------------------------------------------------------------- /players/NaiveTomcat/2020-11-07-狗狗银行WP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/NaiveTomcat/2020-11-07-狗狗银行WP.md -------------------------------------------------------------------------------- /players/NaiveTomcat/2020-11-07-超简陋的OpenGL小程序WP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/NaiveTomcat/2020-11-07-超简陋的OpenGL小程序WP.md -------------------------------------------------------------------------------- /players/NanoApe/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/NanoApe/writeup.md -------------------------------------------------------------------------------- /players/NekomuraAoi/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/NekomuraAoi/0.png -------------------------------------------------------------------------------- /players/NekomuraAoi/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/NekomuraAoi/1.png -------------------------------------------------------------------------------- /players/NekomuraAoi/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/NekomuraAoi/2.png -------------------------------------------------------------------------------- /players/NekomuraAoi/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/NekomuraAoi/3.png -------------------------------------------------------------------------------- /players/NekomuraAoi/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/NekomuraAoi/writeup.md -------------------------------------------------------------------------------- /players/ProfFan/solver_files/solver_5_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/ProfFan/solver_files/solver_5_1.png -------------------------------------------------------------------------------- /players/ProfFan/solver_files/solver_5_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/ProfFan/solver_files/solver_5_1.svg -------------------------------------------------------------------------------- /players/ProfFan/solver_files/solver_6_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/ProfFan/solver_files/solver_6_0.png -------------------------------------------------------------------------------- /players/ProfFan/solver_files/solver_6_0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/ProfFan/solver_files/solver_6_0.svg -------------------------------------------------------------------------------- /players/ProfFan/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/ProfFan/writeup.md -------------------------------------------------------------------------------- /players/README.md: -------------------------------------------------------------------------------- 1 | 本文件夹收录来自选手的非官方题解。 2 | -------------------------------------------------------------------------------- /players/WEGFan/超简陋的 OpenGL 小程序/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/WEGFan/超简陋的 OpenGL 小程序/README.md -------------------------------------------------------------------------------- /players/WEGFan/超简陋的 OpenGL 小程序/assets/3d-viewer-flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/WEGFan/超简陋的 OpenGL 小程序/assets/3d-viewer-flag.png -------------------------------------------------------------------------------- /players/WEGFan/超简陋的 OpenGL 小程序/assets/hex-editor-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/WEGFan/超简陋的 OpenGL 小程序/assets/hex-editor-1.png -------------------------------------------------------------------------------- /players/WEGFan/超简陋的 OpenGL 小程序/assets/hex-editor-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/WEGFan/超简陋的 OpenGL 小程序/assets/hex-editor-2.png -------------------------------------------------------------------------------- /players/WEGFan/超简陋的 OpenGL 小程序/assets/matplot-flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/WEGFan/超简陋的 OpenGL 小程序/assets/matplot-flag.png -------------------------------------------------------------------------------- /players/WEGFan/超简陋的 OpenGL 小程序/writeup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/WEGFan/超简陋的 OpenGL 小程序/writeup.py -------------------------------------------------------------------------------- /players/WaterKing201030/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/WaterKing201030/writeup.md -------------------------------------------------------------------------------- /players/a-wing/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/a-wing/writeup.md -------------------------------------------------------------------------------- /players/chuangzhu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/chuangzhu/README.md -------------------------------------------------------------------------------- /players/gousaiyang/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/gousaiyang/writeup.md -------------------------------------------------------------------------------- /players/hsfzxjy/从零开始的 HTTP 链接/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/hsfzxjy/从零开始的 HTTP 链接/README.md -------------------------------------------------------------------------------- /players/hsfzxjy/永不溢出的计算器/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/hsfzxjy/永不溢出的计算器/README.md -------------------------------------------------------------------------------- /players/hsfzxjy/超基础的数理模拟器/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/hsfzxjy/超基础的数理模拟器/README.md -------------------------------------------------------------------------------- /players/hzqmwne/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/hzqmwne/README.md -------------------------------------------------------------------------------- /players/lawvs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/lawvs/README.md -------------------------------------------------------------------------------- /players/lawvs/images/decode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/lawvs/images/decode.jpg -------------------------------------------------------------------------------- /players/lawvs/images/fft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/lawvs/images/fft.png -------------------------------------------------------------------------------- /players/lawvs/images/opengl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/lawvs/images/opengl.png -------------------------------------------------------------------------------- /players/mcfx/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/mcfx/writeup.md -------------------------------------------------------------------------------- /players/mcfx/writeup.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/mcfx/writeup.pdf -------------------------------------------------------------------------------- /players/met/readme.md: -------------------------------------------------------------------------------- 1 | # MET 2 | 3 | 记录一个零cs基础的菜鸡化学苟的解题思路 4 | 5 | (所以解法都比较直球) 6 | 7 | [传送门](https://github.com/MetLee/hackergame2020-writeups) -------------------------------------------------------------------------------- /players/ranwen/wp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/ranwen/wp.md -------------------------------------------------------------------------------- /players/ranwen/wp.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/ranwen/wp.pdf -------------------------------------------------------------------------------- /players/renbaoshuo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/renbaoshuo/README.md -------------------------------------------------------------------------------- /players/renbaoshuo/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/renbaoshuo/images/1.png -------------------------------------------------------------------------------- /players/renbaoshuo/images/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/renbaoshuo/images/10.png -------------------------------------------------------------------------------- /players/renbaoshuo/images/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/renbaoshuo/images/11.png -------------------------------------------------------------------------------- /players/renbaoshuo/images/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/renbaoshuo/images/12.png -------------------------------------------------------------------------------- /players/renbaoshuo/images/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/renbaoshuo/images/13.png -------------------------------------------------------------------------------- /players/renbaoshuo/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/renbaoshuo/images/2.png -------------------------------------------------------------------------------- /players/renbaoshuo/images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/renbaoshuo/images/3.png -------------------------------------------------------------------------------- /players/renbaoshuo/images/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/renbaoshuo/images/4.png -------------------------------------------------------------------------------- /players/renbaoshuo/images/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/renbaoshuo/images/5.png -------------------------------------------------------------------------------- /players/renbaoshuo/images/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/renbaoshuo/images/6.png -------------------------------------------------------------------------------- /players/renbaoshuo/images/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/renbaoshuo/images/7.png -------------------------------------------------------------------------------- /players/renbaoshuo/images/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/renbaoshuo/images/8.png -------------------------------------------------------------------------------- /players/renbaoshuo/images/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/renbaoshuo/images/9.png -------------------------------------------------------------------------------- /players/sparkcyf/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/sparkcyf/writeup.md -------------------------------------------------------------------------------- /players/sparkcyf/从零开始的记账工具人-convert.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/sparkcyf/从零开始的记账工具人-convert.xlsx -------------------------------------------------------------------------------- /players/stefan0us/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/stefan0us/writeup.md -------------------------------------------------------------------------------- /players/yssickjgd/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/yssickjgd/1.png -------------------------------------------------------------------------------- /players/yssickjgd/12.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/yssickjgd/12.1.png -------------------------------------------------------------------------------- /players/yssickjgd/12.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/yssickjgd/12.2.png -------------------------------------------------------------------------------- /players/yssickjgd/5.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/yssickjgd/5.xlsx -------------------------------------------------------------------------------- /players/yssickjgd/6.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/yssickjgd/6.1.png -------------------------------------------------------------------------------- /players/yssickjgd/6.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/yssickjgd/6.2.png -------------------------------------------------------------------------------- /players/yssickjgd/writeup-for-beginners.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Hackergame/hackergame2020-writeups/HEAD/players/yssickjgd/writeup-for-beginners.md --------------------------------------------------------------------------------