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 Copy a title and an URL to a clipboard. (Alt + c) | |
| // @namespace https://github.com/tmash06 | |
| // @version 0.1 | |
| // @description Copy a title and an URL to a clipboard. (Alt + c) | |
| // @author tmash06 | |
| // @match *://*/* | |
| // @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
| http://www.atmarkit.co.jp/ait/kw/scraping_mobile.html | |
| https://software.intel.com/en-us/blogs/2014/07/15/an-investigation-of-fast-real-time-gpu-based-image-blur-algorithms | |
| http://www.viva64.com/en/b/0249/#ID0EMOBG | |
| http://developer.cybozu.co.jp/tech/?p=8567 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import android.media.MediaCodecInfo; | |
| import android.media.MediaCodecInfo.CodecCapabilities; | |
| import android.media.MediaCodecInfo.CodecProfileLevel; | |
| import android.media.MediaCodecList; | |
| public class CodecCapabilitiesReader { | |
| private static String colorFormatToString(int colorFormat) { | |
| String ret = "not found(" + colorFormat + ")"; | |
| switch (colorFormat) { | |
| case CodecCapabilities.COLOR_Format12bitRGB444: |