Skip to content

Instantly share code, notes, and snippets.

View NantipatSoftEn's full-sized avatar
:octocat:
(=ↀωↀ=) ^ↀᴥↀ^ (^・ェ・^) 🧶🧶

Nantipat NantipatSoftEn

:octocat:
(=ↀωↀ=) ^ↀᴥↀ^ (^・ェ・^) 🧶🧶
  • Thailand
View GitHub Profile
@NantipatSoftEn
NantipatSoftEn / install.sh
Last active September 22, 2020 07:40
⚙️ install software require when create new server 🖍 sh install.sh
#!/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)"
@NantipatSoftEn
NantipatSoftEn / .gitconfig
Last active February 13, 2021 12:57
git commit template and short word
[filter "lfs"]
process = git-lfs filter-process
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
[user]
name =
email =
[use]
email =
@NantipatSoftEn
NantipatSoftEn / TopScreenYouTube
Created December 18, 2019 03:10
Top screen youtube
await document.getElementsByTagName('video') [0].requestPictureInPicture()
@NantipatSoftEn
NantipatSoftEn / command.md
Last active August 2, 2019 02:56
command install dependency VScode

ENV

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
@NantipatSoftEn
NantipatSoftEn / reactForm.js
Created October 4, 2017 06:24
Code Pattern Form action
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);
}