sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
- Download zsh-autosuggestions by
| # Redis Cheatsheet | |
| # All the commands you need to know | |
| redis-server /path/redis.conf # start redis with the related configuration file | |
| redis-cli # opens a redis prompt | |
| # Strings. |
Here is an updated list of the colors that are currently implemented with a name
| Name | Int value | Hex Code |
|---|---|---|
DEFAULT |
0 | #000000 |
AQUA |
1752220 | #1ABC9C |
DARK_AQUA |
1146986 | #11806A |
GREEN |
3066993 | #2ECC71 |
DARK_GREEN |
2067276 | #1F8B4C |
BLUE |
3447003 | #3498DB |
| // // javascript es6(2015) | |
| // // declare variable | |
| // let name = "junior" | |
| // const name2 = "junior" | |
| // name = "iu" // ✔️ can assign new value | |
| // name2 = "iu" // ❌ can't assign value because it a constant!! | |
| #!/bin/bash | |
| # Copyright 2017 Théo Chamley | |
| # Permission is hereby granted, free of charge, to any person obtaining a copy of | |
| # this software and associated documentation files (the "Software"), to deal in the Software | |
| # without restriction, including without limitation the rights to use, copy, modify, merge, | |
| # publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons | |
| # to whom the Software is furnished to do so, subject to the following conditions: | |
| # | |
| # The above copyright notice and this permission notice shall be included in all copies or |