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 dev.logue.opencv; | |
import java.awt.image.BufferedImage; | |
import java.io.ByteArrayInputStream; | |
import java.io.ByteArrayOutputStream; | |
import java.io.File; | |
import java.io.FileNotFoundException; | |
import java.io.IOException; | |
import javax.imageio.ImageIO; | |
import org.opencv.core.Mat; |
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
/// Outlined text shadow | |
/// | |
/// @author Logue <[email protected]> | |
/// @version 1.0.0 | |
/// @copyright 2020 Masashi Yoshikawa <https://logue.dev/> All rights reserved. | |
/// @license MIT | |
/// | |
/// @example | |
/// text-shadow: outline(black, 1px, 1px); | |
/// |
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
/** | |
* ひらがな → ローマ字変換クラス | |
* @author tenderfeel, Logue | |
* @license MIT | |
* @ver 1.3.1 | |
* http://tenderfeel.xsrv.jp/ | |
* | |
* ---MIT License-------------------------------------------- | |
* Copyright (c) 2008 Tenderfeel all rights reserved. | |
* 2019 Modified by Masashi Yoshikawa <[email protected]> |
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
<?php | |
class Kana2Roma | |
{ | |
public $charset = 'utf-8'; | |
public $mode_Krows = 'k'; //か・く・こ(k or c) | |
public $mode_XArows = 'l'; //小文字ぁ行と「っ」( L or X) | |
public $mode_TYrows = 'ch'; //ち行+小文字や行(ty or ch or cy) | |
public $mode_SYrows = 'sh'; //し行+小文字や行(sy or sh) | |
public $mode_JYrows = 'j'; //じ行+小文字や行(j or zy or jy) |
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
<?php | |
$header = <<<'EOF' | |
This file is part of GSS GoHub Software. | |
(c) Gözen Systems, 2018. | |
Modified By Logue | |
EOF; | |
$config = PhpCsFixer\Config::create() | |
->setRiskyAllowed(true) |
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
<?php | |
/** | |
* キーワードを配列化 | |
* | |
* @author Logue <[email protected]> | |
* @copyright 2019 Logue All Rights Reserved | |
* @license MIT | |
*/ | |
namespace App\Http\Middleware; |
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
{ | |
"scripts": { | |
"watch": "webpack --mode development --watch --color --progress", | |
"dev": "webpack --mode development", | |
"prod": "webpack --mode production --env.production", | |
"start": "webpack-dev-server --color --mode development" | |
}, | |
"main": "webpack.config.js", | |
"devDependencies": { | |
"@babel/core": "^7.1.2", |
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
/*! | |
* @file server.js | |
* @copyright © 2018 By Logue <http://logue.be/>. | |
* @license MIT | |
*/ | |
const http = require("http"); | |
const fs = require('fs'); | |
function getType(_url) { | |
const types = { |
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
/*! | |
* @file jQuery Confirm for Bootstrap4 | |
* @copyright © 2017,2018 By Logue <http://logue.be/>. | |
* @license MIT | |
*/ | |
$orange: $yellow; | |
$default: $light; |
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
<?php | |
/** | |
* 入力文字列のサニタイズ. | |
* | |
* @author Logue <[email protected]> | |
* @copyright 2018 Logue All Rights Reserved | |
* @license MIT | |
*/ | |
namespace App\Http\Middleware; |
NewerOlder