fastboot oem HALT;拔线后就会自动关机. 尝试进入recovery mode, 均失败.
- fastboot
flash
boot DRG-0-250A-00WW-boot.img
sudo ifconfig en0 ether 6e:77:05:cc:99:bb |
DESCRIBE table_name; |
stackoverflow e.g.
gcc -O3
and the gcc optimiser found that some of your variables were redundant in some way that allowed them to be optimised away.
e.g.gcc -O0
Compile with optimisation disabled,
if you want to see such variables (this is generally a good idea for debug builds in any case).
Launch Console: -gl -high -map dota
Refer: dawoodt's answer - github
https://jsfiddle.net/a1exlism/wuzm5dkm/13/ |
Description | shortcuts | Details |
---|---|---|
Go to the Header | H | in Screen |
Go to the Middle | M | |
Go to the Lower | L | |
select | v | Selection |
select row(s) | SHIFT + v | |
select blocks (columns) | CTRL + v | |
search for word under cursor | * | Pretty Good |
split screen horizontally | :split | Split Screens |
// Refer Link: https://developer.mozilla.org/en-US/docs/Web/API/Web_Storage_API/Using_the_Web_Storage_API | |
const STATE = `sessionStorage and localStorage are both window object's inner properties`; | |
function checkStorage(type) { | |
let storage = window[type]; | |
let x = '__storage_test__'; | |
try { | |
storage.setItem(x, x); | |
storage.removeItem(x); | |
return true; |
// core function | |
Function.call() | |
indexOf() | |
// factory usage | |
let ul = document.querySelector('ul'); | |
ul.addEventListener('click', function(event) { | |
if(event.target.nodeName === 'LI') { | |
alert(Array.prototype.indexOf.call(ul.childNodes, event.target)); | |
} |