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
| <template> | |
| <h1>音声認識</h1> | |
| <p>{{confidence.toFixed(2)}} - {{transcript}}</p> | |
| <ol> | |
| <li v-for="script,i in scripts" :key="i"> | |
| {{script}} | |
| </li> | |
| </ol> | |
| </template> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| a<!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
| <link rel="stylesheet" href="sheet.css"> | |
| <title>御請求書</title> | |
| </head> |
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
| scriptencoding utf-8 | |
| let g:migemo_path = $VIM . '/cmigemo.exe' | |
| let g:migemo_dict_path = $VIM . '/dict/utf-8/migemo-dict' | |
| if executable(g:migemo_path) == '0' | |
| echo "Error: cmigemo is not installed" | |
| endif | |
| if !filereadable(g:migemo_dict_path) | |
| echo "Error: a dictionary for migemo is not found" |
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
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| using SharpDX; | |
| using SharpDX.Direct3D11; | |
| using SharpDX.Direct3D; | |
| using Buffer = SharpDX.Direct3D11.Buffer; |
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 org.jetbrains.annotations.NotNull; | |
| import java.io.IOException; | |
| import java.nio.file.Files; | |
| import java.nio.file.Path; | |
| public class TargetFile { | |
| @NotNull | |
| public final String name; | |
| @NotNull |
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 java.security.MessageDigest; | |
| import java.security.NoSuchAlgorithmException; | |
| import java.util.Arrays; | |
| public class Md5Hash { | |
| private final byte[] digest; | |
| private final int hashCode; | |
| private Md5Hash(byte[] digest) { | |
| if (digest == null || digest.length != 16) { |
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 net.sourceforge.pmd.lang.ParserOptions; | |
| import net.sourceforge.pmd.lang.ast.JavaCharStream; | |
| import net.sourceforge.pmd.lang.java.Java18Parser; | |
| import net.sourceforge.pmd.lang.java.ast.*; | |
| import java.io.BufferedReader; | |
| import java.io.IOException; | |
| import java.nio.file.Files; | |
| import java.nio.file.Path; | |
| import java.nio.file.Paths; |
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
| public class Mid { | |
| public static int mid(int x, int y, int z) { | |
| int m; | |
| m = z; | |
| if (y < z) { | |
| if (x < y) { | |
| m = y; | |
| } else if (x < z) { | |
| m = y; | |
| } |
NewerOlder