Skip to content

Instantly share code, notes, and snippets.

@kuc-arc-f
kuc-arc-f / test5_up.html
Created November 4, 2022 06:30
SQLite3 WASM/JS file read sample
<!DOCTYPE html>
<!-- SQLite3 WASM/JS file read sample -->
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<title>SQLite</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/sql.js/1.6.2/sql-wasm.min.js"></script>
</head>
<body>
@kuc-arc-f
kuc-arc-f / test4_dl.html
Created November 4, 2022 06:26
SQLite3 WASM/JS download sample
<!DOCTYPE html>
<!-- SQLite3 WASM/JS download sample -->
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<title>SQLite</title>
<meta name="description" content="Zenn" />
</head>
<body>
@kuc-arc-f
kuc-arc-f / test3.html
Created November 3, 2022 07:01
SQLite3 WASM/JS file load sample
<!DOCTYPE html>
<!-- SQLite3 WASM/JS file load sample -->
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<title>SQLite</title>
</head>
<body>
<h3>t3.html</h3>
@kuc-arc-f
kuc-arc-f / test2.html
Created November 3, 2022 06:57
SQLite3 WASM/JS sample
<!DOCTYPE html>
<!-- SQLite3 WASM/JS sample -->
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<title>SQLite</title>
<meta name="description" content="Zenn" />
</head>
<body>
@kuc-arc-f
kuc-arc-f / schema.prisma
Last active October 10, 2022 10:42
chat app, prisma migration
// This is your Prisma schema file,
// learn more about it in the docs: https://pris.ly/d/prisma-schema
datasource db {
provider = "postgresql"
url = env("DATABASE_URL")
}
generator client {
provider = "prisma-client-js"
@kuc-arc-f
kuc-arc-f / .env
Last active August 12, 2022 01:12
Next.js 12 で、Basic認証
NEXT_PUBLIC_USER=hoge
NEXT_PUBLIC_PASS=fuga
@kuc-arc-f
kuc-arc-f / PaginateBox.vue
Last active June 4, 2022 00:25
Vue 2 typescript + laravel 9, paginate sample
<template>
<div class="">
<!--
<h3>PaginateChild</h3>
-->
<nav class="my-2">
<ul class="pagination">
<li class="page-item">
<a @click="first" class="page-link" href="#">&laquo;</a>
</li>
@kuc-arc-f
kuc-arc-f / .dockerignore
Last active May 29, 2022 07:17
aws ECR sample, コンテナファイルなど
node_modules
npm-debug.log
@kuc-arc-f
kuc-arc-f / Login.tsx
Last active May 9, 2022 01:03
firebase google Login
import React from 'react';
import { useEffect } from 'react';
import {auth} from '../../firebase';
import { onAuthStateChanged } from "firebase/auth";
//import { getAuth, signInWithRedirect } from "firebase/auth";
import { signInWithRedirect } from "firebase/auth";
import { getRedirectResult, GoogleAuthProvider } from "firebase/auth";
import { signOut } from 'firebase/auth'
@kuc-arc-f
kuc-arc-f / package.json
Created March 29, 2022 02:56
exceljs , load data sample react
{
"name": "react_ts",
"version": "0.1.0",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/jest": "^26.0.15",
"@types/node": "^12.0.0",