I hereby claim:
- I am sen0rxol0 on github.
- I am sen0rxol0 (https://keybase.io/sen0rxol0) on keybase.
- I have a public key ASCwDsrR6HALTGzP6SPal_XpH--jRspUL9g3D8053QVSQAo
To claim this, I am signing this object:
/* | |
* Easing Functions - inspired from http://gizma.com/easing/ | |
* only considering the t value for the range [0, 1] => [0, 1] | |
*/ | |
EasingFunctions = { | |
// no easing, no acceleration | |
linear: function (t) { return t }, | |
// accelerating from zero velocity | |
easeInQuad: function (t) { return t*t }, | |
// decelerating to zero velocity |
I hereby claim:
To claim this, I am signing this object:
Download your installation files
When your download as finished
extract your files
$ mkdir /opt/firefoxde
$ tar -xjvf ~/Downloads/firefox-[version].[lang].[platform].tar.bz2
sudo apt-get purge 'php7*'
sudo apt-get install apt-transport-https lsb-release ca-certificates
sudo wget -O /etc/apt/trusted.gpg.d/php.gpg https://packages.sury.org/php/apt.gpg
sudo sh -c 'echo "deb https://packages.sury.org/php/ $(lsb_release -sc) main" > /etc/apt/sources.list.d/php.list'
sudo apt update
sudo apt-get install php7.1
Since Chrome apps are now being depracated. Download postman from https://dl.pstmn.io/download/latest/linux
tar -xzf Postman-linux-x64-5.3.2.tar.gz
If any version is installed before, remove it.
sudo rm -rf /opt/Postman
version: '3.5' | |
services: | |
app: | |
build: . | |
volumes: | |
- '.:/app' | |
ports: | |
- '3000:80' | |
environment: |
version: '3.5' | |
services: | |
app: | |
build: . | |
volumes: | |
- '.:/app' | |
ports: | |
- '3000:80' | |
environment: |
# Hello, and welcome to makefile basics. | |
# | |
# You will learn why `make` is so great, and why, despite its "weird" syntax, | |
# it is actually a highly expressive, efficient, and powerful way to build | |
# programs. | |
# | |
# Once you're done here, go to | |
# http://www.gnu.org/software/make/manual/make.html | |
# to learn SOOOO much more. |