- You can find everything from here: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects
- Here I list commonly used JavaScript concepts, treat it as cheetsheet for quick learn.
| Value | Note |
|---|---|
| NaN | not a number |
| Value | Note |
|---|---|
| NaN | not a number |
| <script>console.log('hello')</script> |
| function cloneObject(obj) { | |
| var clone = {}; | |
| for(var i in obj) { | |
| if(obj[i] != null && typeof(obj[i])=="object") | |
| clone[i] = cloneObject(obj[i]); | |
| else | |
| clone[i] = obj[i]; | |
| } | |
| return clone; | |
| } |
# 1 - 0
# 2 - 179
# 3 - 361
# 4 - 551
ffmpeg -i source.m4v --ss 0 -t 179 -c copy part1.m4v
ffmpeg -i source.m4v --ss 179 -t 361 -c copy part1.m4v
ffmpeg -i source.m4v --ss 361 -t 551 -c copy part1.m4v
...# yum remove mysql mysql-server
# mv /var/lib/mysql /var/lib/mysql_old_backup
# yum install mysql mysql-server
| 【メール便送料無料】iPhone7 iPhone7 Plus ケース iPhone6/6s Plusケース 保護ケース TPU カメラ保護 全18色 | |
| 【メール便送料無料】iPhone7 iPhone7Plus iPhone6s ケース iPhone6s Plus ケース iPhone6 ケース iPhone SE iPhone5s iPhone5 ケース シンプル レザー調 | |
| 【メール便送料無料】iPhone7 iPhone7Plus iPhone6s ケース iPhone6s Plus ケース iPhone6 ケース iPhone SE iPhone5s iPhone5 ケース カバー シンプル 手帳型 レザー調 | |
| 【人気セール対象】【送料無料】iPhone7 iPhone7 Plus iPhone 6s 6splus 革調 手帳型ケース ケース スマホ | |
| iPhone7 iPhone7 Plus iPhone 6s 6splus ケース ケース 全機種対応 | |
| ★最安挑戦中799円★ iPhone7 iPhone7 Plus iPhone6 ケース オシャレ 人気 保護ケース iPhone6s ケース PUレザー iPhone6s Plus ケース 全6色 手帳型 カード収納 | |
| ★最安挑戦中898円★ 【送料無料】 iPhone6 ケース シリコン ケース iPhone6s PUレザーケース iPhone6s Plus ケース ホコリ防止 手帳型 スタンド機能付き | |
| 500円OFF【送料無料】iPhone7 iPhone7 Plus iPhone 6s 6splus 本革 手帳型ケース ケース iPhone7 iPhone7 Plus | |
| ★最安挑戦中799円★ 【送料無料】 iPhone7 iPhone7 Plus iPhone6 ケース PU レザー手帳型 case iPhone6s ケースiPhone6s Plus スマホケース アイフォン 全機種対応 | |
| ★最安挑戦中999円★ 【送料無料】 iPhone7 iPhone7 Plus iPhone6 ケース PU レザー手帳型 スタンド機能 case iPhone6s ケースiPhone6s Plus スマホケース アイフォン 全機種対応 |
$(".product-tile-container .product-image-container").each(function(i, o){console.log($(o).find('.product-image').attr('src'))})
$(".product-price-container").each(function(i, o){console.log($(o).find('a').attr('href'), $(o).find('.ada-link.visually-hidden').text())})
yum install zlib-devel
yum install curl-devel
sudo pecl install pecl_http-1.7.6