- Landscape photography
- Street photography
- Bust-up Portrait
- realistic photography
- digital illustration
- Detailing oil painting
- Action painting
- anime key visual
- profile view
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
package main | |
import ( | |
"os" | |
"fmt" | |
"regexp" | |
) | |
func main() { | |
txt := os.Args[1] |
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
<?xml version="1.0" encoding="utf-8"?> | |
<opml version="1.0"> | |
<head> | |
<title>Liferea Feed List Export</title> | |
</head> | |
<body> | |
<outline title="Art" text="Art" description="Art" type="folder"> | |
<outline title="Photo" text="Photo" description="Photo" type="folder"> | |
<outline title="デジカメ Watch" text="デジカメ Watch" description="デジカメ Watch" type="rss" xmlUrl="https://dc.watch.impress.co.jp/data/rss/1.0/dcw/feed.rdf" htmlUrl="https://dc.watch.impress.co.jp"/> | |
<outline title="Pentax Rumors" text="Pentax Rumors" description="Pentax Rumors" type="rss" xmlUrl="https://pentaxrumors.com/feed/" htmlUrl="https://pentaxrumors.com/"/> |
- build libaom aom - Git at Google
- build libdav1d VideoLAN / dav1d · GitLab
- build libyuv libyuv/libyuv - Git at Google
- build libavif include avifenc and avifdec AOMediaCodec/libavif: libavif - Library for encoding and decoding .avif files
4.1. set option(AVIF_CODEC_AOM "Use the AOM codec for encoding/decoding (see AVIF_CODEC_AOM_DECODE/AVIF_CODEC_AOM_ENCODE)" ON)
4.2. set option(AVIF_CODEC_DAV1D "Use the dav1d codec for decoding" ON)
4.3. set option(AVIF_BUILD_APPS "Build avif apps." ON)
4.4. cmake and make, sudo make install
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
// | |
// What's this? : 大阪府 COVID-19 感染状況公式データ を取得・集計し、csv 形式で標準出力へ出力する。 | |
// License : MIT License | |
// Environment : deno | |
// Language : JavaScript | |
// | |
// Usage : deno run --allow-net getosaka.js | |
// | |
///////////////////////////////////////////////////////////////////////////////////////////// |
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
#! /bin/sh | |
cmd="$1*.txt" | |
files=`ls $cmd` | |
for tfile in $files | |
do | |
tmp=`echo $tfile | awk '$0 = substr($0, 0, length($0)-3)'` | |
ofile=$tmp$2 | |
base64 -d $tfile > $ofile | |
done |
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
#! /bin/sh | |
git pull | |
./prepare --enable-autocrypt --enable-gpgme --enable-sidebar --enable-compressed --enable-pop --enable-imap --enable-smtp --enable-flock --enable-exact-address --enable-hcache --with-ssl --with-sasl --with-included-gettext --with-bundled-regex --with-exec-shell=/bin/sh --disable-fcntl --with-sqlite3 | |
make | |
sudo make install | |
make clean | |
git gc |
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
// 市区町村コード表 | |
const city={ | |
'10006':'北海道', | |
'11002':'北海道札幌市', | |
'12025':'北海道函館市', | |
'12033':'北海道小樽市', | |
'12041':'北海道旭川市', | |
'12050':'北海道室蘭市', | |
'12068':'北海道釧路市', | |
'12076':'北海道帯広市', |