Skip to content

Instantly share code, notes, and snippets.

View Kazunari-h's full-sized avatar
🏠
Working from home

Kazunari Hirosawa Kazunari-h

🏠
Working from home
View GitHub Profile
@Kazunari-h
Kazunari-h / Dockerfile
Last active July 11, 2019 09:43
XAMPやMAMPを頼らず、自分のローカル開発環境を作る。
FROM php:7.2-fpm
RUN docker-php-ext-install pdo_mysql
COPY php.ini /usr/local/etc/php/
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<title>郵便番号検索</title>
</head>
'use strict';
// エレメントの作成
const e = React.createElement;
class LikeButton extends React.Component {
constructor(props) {
super(props);
this.state = {
liked: false,
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>自習室時間割</title>
<link
href="https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css"
rel="stylesheet"
//
// Cell.swift
// marubatsu
//
// Created by 29MCGD016 on 2021/11/26.
//
import SwiftUI
struct Cell: View {