Search result

다국어 끝말잇기 앱, 다끗

안녕하세요. 다국어로 실시간 플레이가 가능한 끝말잇기 앱을 만들어 봤습니다.   https://play.google.com/store/apps/details?id=kr.devent.endword   다끗 - 다국어로 즐기는 끝말잇기 - Google Play 앱 다른사...

프로젝트 끝말잇기

알파인js

https://github.com/alpinejs/alpine

laravel-movies

Svelte Tutorials 2

EventsContinue reading on Medium »

Programming svelte javascript tutorial

How to handle Events in Svelte

A simple guide to handling eventsContinue reading on JavaScript In Plain English »

Programming svelte javascript coding web-development

2019년에 읽은 책

2019년에 읽은 책 1월 사용자를 생각하게 하지마 5월 틀리지 않는 법 5월 테스트 주도 개발로 배우는 객체 지향 설계와 실천 6월 죽기 전까지 걷고 싶다면 스쿼트를

고정된 IP를 통과해 Elastic Beanstalk 접근하기 그 두번째

지금까지의 구성2018년 12월에

AWS INFRA

테일윈드css 로딩 스피너 설치

https://github.com/aniftyco/tailwindcss-spinner1. 설치npm install --save-dev tailwindcss-spinner2. tailwind.config.js  플러그인을 넣어준다.1234567891011121314module.exports = {  theme: {    extend: { ...

laravel-movies

todos 만들기

1. 구성요소 추가php artisan make:livewire todos2. home.blade.php@extends('layouts.app')@section('content') Dashboard @if (sess...

livewire_study

숫자카운터 db비동기

1. users테이블에 count 컬럼 추가 Schema::create('users', function (Blueprint $table) { $table->id(); $table->string('name'); $table->string('email')->unique();...

livewire_study

라라벨 와이어 동작방법 버튼 카운터

1. 구성요소 추가1php artisan livewire:make CountercsCLASS: app/Http/Livewire/Counter.phpVIEW:  resources/views/livewire/counter.blade.php2. app/Http/Livewire/Counter.php1234567891011121314151617181920...

livewire_study