「アニメソングの歌詞ならここにおまかせ?」(2017年1月31日に閉鎖) で公開されていた楽曲データの一覧を収集し、CSV 形式に変換したものです。
15,932
| /* | |
| * An implementation of C11 stdatomic.h directly borrowed from FreeBSD | |
| * (original copyright follows), with minor modifications for | |
| * portability to other systems. Works for recent Clang (that | |
| * implement the feature c_atomic) and GCC 4.7+; includes | |
| * compatibility for GCC below 4.7 but I wouldn't recommend it. | |
| * | |
| * Caveats and limitations: | |
| * - Only the ``_Atomic parentheses'' notation is implemented, while | |
| * the ``_Atomic space'' one is not. |
| /* | |
| * Random-Number Utilities (randutil) | |
| * Addresses common issues with C++11 random number generation. | |
| * Makes good seeding easier, and makes using RNGs easy while retaining | |
| * all the power. | |
| * | |
| * The MIT License (MIT) | |
| * | |
| * Copyright (c) 2015-2022 Melissa E. O'Neill | |
| * |
| // ==UserScript== | |
| // @name Reddit: Highlight New Comments v3 | |
| // @description Highlights comments on Reddit that are new since your last visit. | |
| // @author Chris H (Zren / Shade), Nathan Sweet | |
| // @icon https://reddit.com/favicon.ico | |
| // @namespace http://xshade.ca | |
| // @version 1 | |
| // @include /https?:\/\/((www|pay|[a-z]{2})\.)?reddit\.com\/r\/[a-zA-Z0-9]+\/comments\/.*/ | |
| // @grant GM_addStyle | |
| // ==/UserScript== |
「アニメソングの歌詞ならここにおまかせ?」(2017年1月31日に閉鎖) で公開されていた楽曲データの一覧を収集し、CSV 形式に変換したものです。
15,932
| #!/usr/bin/python | |
| """ | |
| Androguard decompilation script. | |
| Feed it an APK and an output directory and it will dump the source for you. | |
| I used this script to learn some androguard skillz. | |
| by k3170makan | |
| """ | |
| from sys import argv | |
| from sys import exit |
Control Flow Guard is a security mitigation that verifies the target address of indirect calls. It works by having the compiler insert a check at indirect call sites to verify the validity of the call target, and also the linker write the necessary data and flags into the PE/COFF image to enable the feature on Windows' end.