This file contains 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
use strict; | |
use warnings; | |
use File::Glob qw/bsd_glob/; | |
use File::Basename qw/dirname/; | |
use File::Path; | |
use File::Copy qw/move/; | |
my $input_dir_path = $ARGV[0]; | |
my $output_dir_path = $ARGV[1]; |
This file contains 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
use strict; | |
use warnings; | |
use File::Glob qw/bsd_glob/; | |
use File::Basename qw/dirname/; | |
use File::Path; | |
my $input_dir_path = $ARGV[0]; | |
my $output_dir_path = $ARGV[1]; |
This file contains 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
XXXのレビューです | |
ネタバレ含むので注意⚠️ | |
<!-- more --> | |
# プレイ時期 | |
# プレイ時間 |
This file contains 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
--- | |
AWSTemplateFormatVersion: 2010-09-09 | |
Description: "Slack bot" | |
Parameters: | |
SlackBotUserOAuthAccessToken: | |
Type: String | |
Description: "Slack Bot User OAuth Access Token" | |
Resources: | |
# Lambda | |
LambdaExecutionRole: |
This file contains 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
require 'discordrb' | |
# Discord botのTOKEN,CLIENT_IDを指定する | |
bot = Discordrb::Bot.new token: TOKEN, client_id: CLIENT_ID | |
bot.message(with_text: 'bot embed') do |event| | |
event.channel.send_embed do |embed| | |
embed.title = 'fugafuga' | |
embed.url = 'hoge.com' | |
embed.author = Discordrb::Webhooks::EmbedAuthor.new(name: 'hoge-san') |
This file contains 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 UnityEngine; | |
using UnityEngine.EventSystems; | |
[RequireComponent(typeof(CanvasGroup))] | |
public class Draggable : MonoBehaviour, IDragHandler, IBeginDragHandler, IEndDragHandler | |
{ | |
/// <summary> | |
/// ドラッグが始まった時のイベント | |
/// </summary> | |
/// <param name="eventData"></param> |