안녕하세요. 다국어로 실시간 플레이가 가능한 끝말잇기 앱을 만들어 봤습니다. https://play.google.com/store/apps/details?id=kr.devent.endword 다끗 - 다국어로 즐기는 끝말잇기 - Google Play 앱 다른사...
프로젝트 끝말잇기
대혼돈의 형준버스 on 20-04-13
https://github.com/alpinejs/alpine
laravel-movies
38LARAVEL on 20-04-12
EventsContinue reading on Medium »
Programming svelte javascript tutorial
Stories by Jangwook Kim on Medium on 20-04-12
A simple guide to handling eventsContinue reading on JavaScript In Plain English »
Programming svelte javascript coding web-development
2019년에 읽은 책 1월 사용자를 생각하게 하지마 5월 틀리지 않는 법 5월 테스트 주도 개발로 배우는 객체 지향 설계와 실천 6월 죽기 전까지 걷고 싶다면 스쿼트를
ha-ah on 20-04-12
지금까지의 구성2018년 12월에
AWS INFRA
https://github.com/aniftyco/tailwindcss-spinner1. 설치npm install --save-dev tailwindcss-spinner2. tailwind.config.js 플러그인을 넣어준다.1234567891011121314module.exports = { theme: { extend: { ...
1. 구성요소 추가php artisan make:livewire todos2. home.blade.php@extends('layouts.app')@section('content') Dashboard @if (sess...
livewire_study
38LARAVEL on 20-04-11
1. users테이블에 count 컬럼 추가 Schema::create('users', function (Blueprint $table) { $table->id(); $table->string('name'); $table->string('email')->unique();...
1. 구성요소 추가1php artisan livewire:make CountercsCLASS: app/Http/Livewire/Counter.phpVIEW: resources/views/livewire/counter.blade.php2. app/Http/Livewire/Counter.php1234567891011121314151617181920...