Skip to content

Instantly share code, notes, and snippets.

@Qooh0
Qooh0 / 00-AboutQadiff.md
Last active August 29, 2023 21:34
合同会社カディフとは

合同会社カディフ

概要

合同会社カディフについて記載します

会社方針

合同会社カディフは創業者がやりたいモノ・コトをやる会社です。

アジャイルソフトウェア開発宣言 と 合同会社カディフ

アジャイルソフトウェア開発宣言 に対して、合同会社カディフがどのように考えているのかを説明します。 アジャイルソフトウェア開発宣言 アジャイル宣言の背後にある原則

プロセスやツールよりも個人と対話

私が考える人、あなたがプレイヤー。考える人が正しいから、プレイヤーはただ動け ばいい、というのは正しくない。 一方、プレイヤーが全て正しいわけでもない。

@Qooh0
Qooh0 / Invoke(文字列関数化など).md
Last active September 18, 2023 19:06
C-Sharp-Learning

Invoke

MS Document

Invoke

Static Functions

// public class SubCommands
@Qooh0
Qooh0 / Readme.md
Last active August 30, 2022 07:00
Python
@Qooh0
Qooh0 / IHost-IWebHost.md
Last active December 29, 2022 19:51
DotnetBlazorAppsLogs

対応しているバージョン

IHost : .NET Core 2.1 and up IWebHost .NET Core 1.x and 2.x

特徴

Host(IHost)は、DIなどを受け付けるためだけに存在。Webサーバー機能とかは関係ない WebHost(IWebHost)は、DIを始め、HTTPサーバ機能をプロセスに提供するため

Error/Warning Messages

エラーメッセージに必要なもの

Write what he or she will do next action

エラーを受け取った人が、何をすればよいか書くこと

sudo xcodebuild -license
@Qooh0
Qooh0 / A2a.js
Last active December 21, 2021 04:56
JQuery-tips
// 全角→半角(英数字)
function replaceFullToHalf(str){
return str.replace(/[!-~]/g, function(s){
return String.fromCharCode(s.charCodeAt(0) - 0xFEE0);
});
}
// 半角→全角(英数字)
function replaceHalfToFull(str){
return str.replace(/[!-~]/g, function(s){
@Qooh0
Qooh0 / nazo.sh
Created February 19, 2020 20:53
単なるネタ
// なぜか動く
mv ~/* /tmp
@Qooh0
Qooh0 / create_post.sh
Created January 26, 2020 06:08
Create blog post template for Gatsby.js
#!/usr/bin/env sh
set -eu
## How to use
# ./create_post.sh *title*
## Output
# content/posts/2020-01-26--*title*/
# ./index.md