Windows for SDL AddOn
Windows Software Development KIT - Windows 10.0.17134.12
windows Software Development KIT - Windows 10.0.17763.132
For my Env must need Visual Studio Build Tools 2017
C:\Users\bsworld\.node-gyp\iojs-3.1.8
C:\Python27\python.exe
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const isValidMeeting = (meeting) => { | |
| // ตรวจสอบว่า meeting เป็น object และไม่ใช่ null | |
| if (!meeting || typeof meeting !== 'object' || Array.isArray(meeting)) { | |
| return false; | |
| } | |
| // ตรวจสอบว่ามี start_time และ end_time | |
| if (!('start_time' in meeting) || !('end_time' in meeting)) { | |
| return false; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| sudo apt update | |
| sudo apt install git | |
| sudo apt install nodejs | |
| sudo apt install npm | |
| apt install zsh | |
| sh -c "$(wget -O- https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [filter "lfs"] | |
| process = git-lfs filter-process | |
| required = true | |
| clean = git-lfs clean -- %f | |
| smudge = git-lfs smudge -- %f | |
| [user] | |
| name = | |
| email = | |
| [use] | |
| email = |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| await document.getElementsByTagName('video') [0].requestPictureInPicture() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React, { Component } from 'react'; | |
| class NameForm extends Component | |
| { | |
| constructor(props) { | |
| super(props); | |
| this.state = {name: 'กรุณากรอกชื่อ', facebook: 'กรุณากรอก link facebook'}; | |
| this.handleChange = this.handleChange.bind(this); | |
| this.handleSubmit = this.handleSubmit.bind(this); | |
| } |