This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#################################### | |
# from generate-common-build-props | |
# These properties identify this partition image. | |
#################################### | |
ro.product.vendor.brand=Redmi | |
ro.product.vendor.device=spes | |
ro.product.vendor.manufacturer=Xiaomi | |
ro.product.vendor.model=Redmi Note 11 | |
ro.product.vendor.name=aospa_spes | |
ro.vendor.product.cpu.abilist=arm64-v8a,armeabi-v7a,armeabi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name DLSite to HVDB | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Add link to HVDB in DLSite product pages | |
// @author z411 | |
// @match https://www.dlsite.com/maniax/work/=/product_id/* | |
// @grant none | |
// ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# Short script that loads a Trackma anime list and converts it | |
# to a MyAnimeList XML file. This way you can import your list | |
# in sites that support this format. | |
# | |
# Usage: | |
# ./trackma_export.py ~/.trackma/<user>.mal/anime.list | |
# | |
# It saves it as mal.xml in the working directory. |