Move project to https://github.com/avatarr/eslint-with-prettier-config
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
var item = document.getElementById("item"); | |
item.parentNode.removeChild(item); |
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
stages: | |
- test | |
test_jpb: | |
stage: test | |
image: ruby:2.4.3 | |
services: | |
- postgres:9.6.1 | |
variables: | |
RAILS_ENV: test |
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
var mediaJSON = { "categories" : [ { "name" : "Movies", | |
"videos" : [ | |
{ "description" : "Big Buck Bunny tells the story of a giant rabbit with a heart bigger than himself. When one sunny day three rodents rudely harass him, something snaps... and the rabbit ain't no bunny anymore! In the typical cartoon tradition he prepares the nasty rodents a comical revenge.\n\nLicensed under the Creative Commons Attribution license\nhttp://www.bigbuckbunny.org", | |
"sources" : [ "http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4" ], | |
"subtitle" : "By Blender Foundation", | |
"thumb" : "images/BigBuckBunny.jpg", | |
"title" : "Big Buck Bunny" | |
}, | |
{ "description" : "The first Blender Open Movie from 2006", | |
"sources" : [ "http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/ElephantsDream.mp4" ], |
Resource | GET (Read) | POST (Create) | PUT (update) | DELETE (Delete) |
---|---|---|---|---|
/books | ดึงข้อมูลหนังสือทั่งหมด | สร้างหนังสือใหม่ | อัพเดตข้อมูลหนังสือทั่งหมด | ลบหนังสือทั่งหมด |
books/2 /books/{:id} | ดึงข้อมูลหนังสือตามไอดี | ไม่อนุญาตให้เข้าถึง (HTTP 405) | อัพเดตหนังสือตามไอดี | ลบหนังสือตามไอดี |
/books/authors | ดึงข้อมูลผู้แต่งหนังสือทั่งหมด | สร้างข้อมูลผู้แต่งหนังสือ | อัพเดทข้อมูลผู้แต่งหนังสือทั่งหมด | ลบผู้แต่งหนังสือทั่งหมด |
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
class AppDrawer extends HTMLElement {...} | |
window.customElements.define('app-drawer', AppDrawer); |
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
@keyframes bouncing{ | |
from { | |
bottom: 0; | |
box-shadow: 0 10px 10px rgba(0,0,0,0.6); | |
} | |
to { | |
bottom: 50px; | |
box-shadow: 0 100px 50px rgba(0,0,0,0.2); | |
} |
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 from "react"; | |
import ReactDOM from "react-dom"; | |
class Hello extends React.Component { | |
constructor(props) { | |
super(props); | |
this.state = { | |
text: 'Hello, World!' | |
}; | |
} |