console.log()
console.info()
console.warn()
console.error()
Log Wrapper:
;; -*- mode: emacs-lisp -*- | |
;; This file is loaded by Spacemacs at startup. | |
;; It must be stored in your home directory. | |
(defun dotspacemacs/layers () | |
"Configuration Layers declaration. | |
You should not put any user code in this function besides modifying the variable | |
values." | |
(setq-default | |
;; `+distribution', `spacemacs-base', `spacemacs' |
# Press up-arrow for previous matching command | |
"\e[A":history-search-backward | |
# Press down-arrow for next matching command | |
"\e[B":history-search-forward | |
# mappings for Ctrl-left-arrow and Ctrl-right-arrow for word moving | |
"\e[1;5C": forward-word | |
"\e[1;5D": backward-word | |
"\e[5C": forward-word | |
"\e[5D": backward-word |
console.log()
console.info()
console.warn()
console.error()
Log Wrapper:
This list would list fancy website I found.
—
2017/02/17 : cute border
2016/12/21 : illusion effect
" # Autocommands | |
" | |
autocmd LocationChange disp\.cc/ -js modes.set(modes.PASS_THROUGH) | |
autocmd LocationChange (mail|www)\.google\.com/(calendar|mail|reader)/ -js modes.set(modes.PASS_THROUGH) | |
autocmd LocationChange docs\.google\.com/(document|present|spreadsheet) -js modes.set(modes.PASS_THROUGH) | |
"autocmd LocationChange mail\.yahoo\.com/ -js modes.set(modes.PASS_THROUGH) | |
"autocmd LocationChange github\.com/ -js modes.set(modes.PASS_THROUGH) | |
"autocmd LocationChange bitbucket\.org/ -js modes.set(modes.PASS_THROUGH) | |
autocmd LocationChange quip\.com/ -js modes.set(modes.PASS_THROUGH) |
var isEmptyObj = (obj) => !Object.keys(obj).length; |
void String::swap(String & rhs) | |
{ | |
char * tmp_str = str_; | |
int tmp_size = size_, | |
tmp_cap = capacity_ ; | |
str_ = rhs.str_; | |
size_ = rhs.size_; | |
capacity_ = rhs.capacity_; |
library IEEE; | |
use IEEE.STD_LOGIC_1164.all; | |
entity D_FF is | |
port( | |
D: in Bit; | |
clk: in std_logic; | |
Q: out Bit | |
); | |
end D_FF; |