This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# cmake -B build -DCMAKE_INSTALL_PREFIX=out | |
# cmake --build build --config RelWithDebInfo | |
# cmake --install build --config RelWithDebInfo | |
cmake_minimum_required(VERSION 3.24) | |
project(lua VERSION 5.4.6 LANGUAGES C) | |
set(CMAKE_C_STANDARD 11) | |
set(CMAKE_C_STANDARD_REQUIRED ON) | |
set(LUA_LIBRARY_SOURCE_FILES |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
# 2022-04-28 it works | |
# gem install faraday | |
require 'faraday' | |
require 'json' | |
require 'fileutils' | |
root_dir = 'download' | |
res = Faraday.get 'https://api-static.mihoyo.com/takumi/misc/api/emoticon_set' |