- Why would I use Redux Saga?
- What is Redux Saga?
- Features of Redux Saga
- Redux Saga vs...
- Has a large and growing community with hundreds of contributors
- Works great for both client and server environments
function squareDigits(num) { | |
//may the code be with you | |
let number = num.toString(), | |
if (typeof number === 'string') { | |
let numberArray = number.split(''), | |
newArray = [] | |
numberArray.forEach(function(item){ | |
if(new Number(item)) { |
function palindrome(string) { | |
let reverseString = string.split('').reverse().join('') | |
return reverseString === string | |
} | |
document.querySelector('#test').innerHTML = palindrome('level') |
choco install conemu -y
choco install nginx -y
** The -y
argument is to skip any confirmation messages...just install it. It's fine ;)sudo apt install gdebi-core
sudo tasksel install samba-server
sudo cp /etc/samba/smb.conf /etc/samba/smb.conf_backup
sudo bash -c 'grep -v -E "^#|^;" /etc/samba/smb.conf_backup | grep . > /etc/samba/smb.conf'
sudo nano /etc/samba/smb.conf
The purpose of this this is to document every day commands we use in the terminal on linux based systems.
(we'll use ZSH as our shell)
The directory on the left is where you're coping FROM
scp -r /YOUR_LOCAL_DIRECTORY YOUR_USER_NAME@REMOTE_SERVER_IP:REMOTE_SERVER_DIRECTORY
{"version":1,"resource":"file:///Users/cesarperez/web-projects/aba-applied-api/.gitignore","entries":[{"id":"TMvt","source":"Workspace Edit","timestamp":1670693277072}]} |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
sudo dnf install nginx -y
sudo systemctl start nginx
firewall-cmd --permanent --zone=public --add-service=http
firewall-cmd --permanent --zone=public --add-service=https
** NOTE **
When adding NGINX entries within RHEL, apparently you MUST checkout your code into the /var/www/
directory.
I will update this once I learn why NINX entries can't point outside of of this directory.