Vagrant file
config.vm.network :forwarded_port, guest: 80, host: 8081
config.vm.network :forwarded_port, guest: 3306, host: 3381
Install software
sudo yum install curl ftp rsync sudo time wget which git-core
#Geeky Pod
##Checkin
####Python
#วันที่ 1: User Experience Fundamental
##10:00 - 12:00
###ทำความเข้าใจ User eXperience
อธิบายถึงความหมายของ UX และพิจารณาความแตกต่างระหว่าง UX UI และ Graphic Design โดยผู้เข้าร่วมการอบรมจะได้ทดลองอธิบายโปรแกรมตัวอย่างว่าได้รับ Experience แบบใด
###เรียนรู้กระบวนการและพื้นฐานสำคัญ
#วันที่ 2: Design Process & Test
##10:00 - 12:00
###แนวคิดการออกแบบ
ในวันแรกผู้เรียนได้ทดลองออกแบบโปรแกรมโดยมีเพียงทฤษฎีเบื้องต้น แต่ยังขาดการออกแบบโปรแกรมอย่างเป็นขั้นเป็นตอน ในช่วงของแนวคิดการออกแบบ จะแบ่งหัวข้อเป็น 5 ส่วน
#!/usr/bin/ruby | |
# encoding: utf-8 | |
# | |
# Updated 2017-10-25: | |
# - Defaults to large size (512) | |
# - If ImageMagick is installed: | |
# - rounds the corners (copped from @bradjasper, https://github.com/bradjasper/Download-iTunes-Icon/blob/master/itunesicon.rb) | |
# - replace original with rounded version, converting to png if necessary | |
# | |
# Retrieve an iOS app icon at the highest available resolution |
const rgbToHex = (r, g, b) => | |
'#' + ((1 << 24) + (r << 16) + (g << 8) + b).toString(16).slice(1); | |
const nodes = figma.currentPage.findAll(node => node.type === "TEXT" && node.name.charAt(0) === "#"); | |
nodes.forEach(node => { | |
let nodeId = RegExp(/^#(.*)/).exec(node.name)[1] | |
let aNode = <RectangleNode> figma.getNodeById(nodeId); | |
if (aNode) { |
// Figma Plugin API version 1, update 14 | |
declare global { | |
// Global variable with Figma's plugin API. | |
const figma: PluginAPI | |
const __html__: string | |
interface PluginAPI { | |
readonly apiVersion: "1.0.0" | |
readonly command: string |
syntax on | |
set rtp+=/usr/local/opt/fzf | |
call plug#begin() | |
" File Explorer NERDtree " | |
Plug 'preservim/nerdtree' | |
" Fast file search with crtl-p | |
Plug 'ctrlpvim/ctrlp.vim' |
curl -fLo ~/.vim/autoload/plug.vim --create-dirs \ | |
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim |