(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
var v1, v2; | |
v1 = {v: {p: 4}}; | |
console.log('BEFORE', v1); | |
(function(a, b) { | |
console.log('inside', a.v); | |
console.log('b', b); | |
a.v.kkkk = 5; | |
b.p = 10; | |
})(v1, v1.v); |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
###Redux Egghead Video Notes###
####Introduction:#### Managing state in an application is critical, and is often done haphazardly. Redux provides a state container for JavaScript applications that will help your applications behave consistently.
Redux is an evolution of the ideas presented by Facebook's Flux, avoiding the complexity found in Flux by looking to how applications are built with the Elm language.
####1st principle of Redux:#### Everything that changes in your application including the data and ui options is contained in a single object called the state tree
container_commands: | |
01_install_pma: | |
test: test -n "$PMA_VER" && test ! -f /tmp/phpmyadmin.tar.gz | |
command: | | |
cd /tmp | |
wget https://files.phpmyadmin.net/phpMyAdmin/${PMA_VER}/phpMyAdmin-${PMA_VER}-all-languages.tar.gz | |
wget https://files.phpmyadmin.net/phpMyAdmin/${PMA_VER}/phpMyAdmin-${PMA_VER}-all-languages.tar.gz.sha1 | |
cd /tmp && sha1sum --check phpMyAdmin-${PMA_VER}-all-languages.tar.gz.sha1 | |
if [[ $? == 0 ]] | |
then |
txtblk='\e[0;30m' # Black - Regular | |
txtred='\e[0;31m' # Red | |
txtgrn='\e[0;32m' # Green | |
txtylw='\e[0;33m' # Yellow | |
txtblu='\e[0;34m' # Blue | |
txtpur='\e[0;35m' # Purple | |
txtcyn='\e[0;36m' # Cyan | |
txtwht='\e[0;37m' # White | |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
#!/bin/sh | |
sudo networksetup -setproxyautodiscovery 'Wi-Fi' off | |
sudo networksetup -setwebproxystate 'Wi-Fi' off | |
sudo networksetup -setsecurewebproxystate 'Wi-Fi' off | |
sudo networksetup -setftpproxystate 'Wi-Fi' off | |
sudo networksetup -setsocksfirewallproxystate 'Wi-Fi' off |
/** | |
* Copyright (c) 2015-present, Facebook, Inc. | |
* All rights reserved. | |
* | |
* This source code is licensed under the BSD-style license found in the | |
* LICENSE file in the root directory of this source tree. An additional grant | |
* of patent rights can be found in the PATENTS file in the same directory. | |
*/ | |
#import <UIKit/UIKit.h> |
{"lastUpload":"2019-04-14T10:40:58.665Z","extensionVersion":"v3.2.8"} |
/* | |
Magic wand tool (fuzzy selection) by color | |
@package magic-wand-tool | |
@author Ryasnoy Paul <[email protected]> | |
@version 1.1.4 | |
@license MIT | |
@copyright (c) 2014-2019, Ryasnoy Paul <[email protected]> | |
*/ |