Posts

Showing posts from March 14, 2019

DF-345

Image
DF-345 é uma rodovia diagonal do Distrito Federal, sob administração da respectiva unidade federativa. Apresenta 11 km sobrepostos a BR-010 onde se liga a GO-118/BR-010, nos outros 15 km, liga a BR-020 ao Araponanga, bairro de Planaltina, onde é sobreposta a DF-230, por mais 9 km. Ver também | Anexo:Lista de rodovias do Brasil Rodovia Ligações Externas | Página do DER-DF Este artigo é um esboço. Você pode ajudar a Wikipédia expandindo-o . Editor: considere marcar com um esboço mais específico . Este artigo sobre uma rodovia é um esboço. Você pode ajudar a Wikipédia expandindo-o . v d e v   •   e Rodovias do Distrito Federal Distritais Radiais: 001•002•003•005•006•007•009•015•025•027•035•047•051•061•065•075•079•081•085•087•095•097 Longitudinais: 100•105•110•115•120•125•128•130•131•135•140•150•170•180•190 Transversais : 205•206•220•230•240•250•260•270•280•285•290•295 Diagonais : 310•320•322•326•330•335•345•355 Ligação :

DF-335

Image
DF-335 é uma rodovia diagonal do Distrito Federal, sob administração da respectiva unidade federativa. Ver também | Anexo:Lista de rodovias do Brasil Rodovia Ligações Externas | Página do DER-DF Este artigo é um esboço. Você pode ajudar a Wikipédia expandindo-o . Editor: considere marcar com um esboço mais específico . Este artigo sobre uma rodovia é um esboço. Você pode ajudar a Wikipédia expandindo-o . v d e v   •   e Rodovias do Distrito Federal Distritais Radiais: 001•002•003•005•006•007•009•015•025•027•035•047•051•061•065•075•079•081•085•087•095•097 Longitudinais: 100•105•110•115•120•125•128•130•131•135•140•150•170•180•190 Transversais : 205•206•220•230•240•250•260•270•280•285•290•295 Diagonais : 310•320•322•326•330•335•345•355 Ligação : 405•410•415•430•435•440•445•451•455•459•463•465•473•475•480•483•495 This page is only for reference, If you need detailed information, please check here

Attempt to installation of jupyter_contrib_nbextensions changed my bash profile

Image
0 I was trying to install jupyter_contrib_nb_extensions following here. My intention is to implement code folding in my Jupyter notebooks. I used the conda method mentioned in the link via this command conda install -c conda-forge jupyter_contrib_nbextensions But this completely changed my bash profile. __conda_setup="$(CONDA_REPORT_ERRORS=false '/home/nagata/softwares/anaconda3 /bin/conda' shell.bash hook 2> /dev/null)" if [ $? -eq 0 ]; then eval "$__conda_setup" else if [ -f "/home/nagata/softwares/anaconda3/etc/profile.d/conda.sh" ]; then . "/home/nagata/softwares/anaconda3/etc/profile.d/conda.sh" CONDA_CHANGEPS1=false conda activate base else export PATH="/home/nagata/softwares/anaconda3/bin:$PATH" fi fi unset

Converting Functions to Arrow functions

Image
7 I'm learning ES6, I just want to convert my ES5 knowledge to ES6. here's my ES5 code: function click() { this.className += ' grab'; setTimeout(() => (this.className = 'remove'), 0); }; and here's my ES6 code: const click = () => { this.className += ' grab'; setTimeout(() => (this.className = 'remove'), 0); console.log('RENDERING'); } My problem is this.className += ' grab'; and setTimeout(() => (this.className = 'remove'), 0); didn't run the function. But console.log shows on the log. Is this method don't work on arrow functions? javascript function arrow-functions share | improve t