Skip to content

Instantly share code, notes, and snippets.

View tickstudiu's full-sized avatar
🏠
Working from home

Wanx2 tickstudiu

🏠
Working from home
  • com7
  • thailand phuket
View GitHub Profile
  • ติดตั้ง Nuxtjs application.
  • ใช้งาน Boostrap - Vue เป็น CSS framework
  • สร้างหน้า post ที่ /post
  • ฟอร์มการกรอกข้อมูลสร้างด้วย tag ของ Boostrap - Vue framework
  • ส่งข้อมูลไปยัง Nodejs ด้วย axios
  • ฟอร์มควรมี field
  • Title
@tickstudiu
tickstudiu / dns-ssl-vultr.md
Last active February 8, 2021 15:20
Setup DNS and SSL on Vultr host server

Setup DNS and SSL on Vultr host server

ก่อนที่จะทำวิธีนี้จำเป็นต้องทำ nginx setup host ก่อน
OS: Ubuntu 20.10 x64
APP: Nuxtjs
DNS HOST: Z domain

Table of Contents

@tickstudiu
tickstudiu / deploy.md
Last active August 31, 2023 06:29
Deploy Nuxtjs on linux server

Deploy Nuxtjs on linux server

Table of Contents

Setup

Update server:

@tickstudiu
tickstudiu / LINEBOT
Created May 29, 2019 10:02 — forked from aeknarinamn/LINEBOT.PHP
LINE BOT EXAMPLE PHP EP1
<?php
/*Get Data From POST Http Request*/
$datas = file_get_contents('php://input');
/*Decode Json From LINE Data Body*/
$deCode = json_decode($datas,true);
file_put_contents('log.txt', file_get_contents('php://input') . PHP_EOL, FILE_APPEND);
$replyToken = $deCode['events'][0]['replyToken'];