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> | |
<div class="oyasumi-result"> | |
<div class="oyasumi-result_main"> | |
<img src="@/assets/waku_up.gif" alt> | |
<div style="display: flex;align-items: stretch"> | |
<img src="@/assets/waku_left.gif" alt> | |
<div class="oyasumi-result__message"> | |
<p v-if="step"> | |
{{questions.name}} {{titleList[questions.title-1]}} | |
</p> |
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 { promises as fs } from 'fs' | |
import { execSync } from 'child_process' | |
const camelToKebab = require('camel-to-kebab') | |
function getFileNames(scope: string, opt: string): string[] { | |
return execSync(`git ls-files ${scope} | grep ${opt}`) | |
.toString() | |
.split('\n') | |
.filter(v => v) | |
} |
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
現在調整中ですが、来年度の目処に NestJS 日本語ドキュメントの翻訳を開始する予定です。 | |
12/24 に募集を開始できるように準備を進めていましたが、もうしばらくかかりそうなので、春に開始することとしました。 | |
今後ですが、本格的な募集が開始されたあとは、日本ユーザーグループ Discord の #translation チャンネルで進行する予定ですので、ご興味のあるかたは、こちらに入っておいていただけますと幸いです。 | |
https://discord.gg/nB9MadZ |
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 Vue, { CreateElement, VNode } from 'vue' | |
import * as tsx from 'vue-tsx-support' | |
export const AppRequireAuth = tsx.component({ | |
name: 'AppRequireAuth', | |
watch: { | |
async isInitializedAuth() { | |
const user = this.$auth.currentUser | |
if (user) { | |
try { |
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 Vue, { VNode } from 'vue' | |
declare global { | |
namespace JSX { | |
interface Element extends VNode {} | |
interface ElementClass extends Vue {} | |
// interface IntrinsicElements { | |
// [element: string]: any | |
// } | |
} |
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
declare module 'vue-feather-icons' { | |
import Vue from 'vue' | |
type FeatherIconProps = { | |
size: string | |
} | |
type FeatherIconComponent = import('vue/types/vue').ExtendedVue< | |
Vue, | |
{}, | |
{}, | |
{}, |
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 'vue-tsx-support' | |
import { AllHTMLAttributes } from "vue-tsx-support/types/dom"; | |
declare module "vue-tsx-support/types/base" { | |
type HTMLAttrs = Omit<AllHTMLAttributes, 'size'> | |
interface ComponentAdditionalAttrs extends HTMLAttrs {} | |
} |
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 admin from 'firebase-admin' | |
const credential: any = null // 書き換えてね | |
const app = admin.initializeApp({ | |
credential: admin.credential.cert(credential), | |
}) | |
const splitByCount = (n: number, arr: admin.auth.UserRecord[]) => { | |
return arr.reduce((before: admin.auth.UserRecord[][], now: admin.auth.UserRecord) => { |
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
#include <SwitchControlLibrary.h> | |
void setup(){ | |
// put your setup code here, to run once: | |
SwitchControlLibrary().PressButtonR(); | |
delay(50); | |
SwitchControlLibrary().ReleaseButtonR(); | |
delay(500); | |
SwitchControlLibrary().PressButtonL(); | |
delay(50); |
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
/** | |
* Gmail Cleaner v0.1.0 | |
* publishedAt: 2020/10/25 | |
* Author: @potato4d | |
* LICENSE: MIT | |
**/ | |
// TODO: Customize | |
const target = [ | |
'[email protected]', |