This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
By: Manish (www.koffeewithkode.com) | |
*/ | |
function calculateEMI(principal, rate_percent, time_in_months, precision) { | |
var EMI; | |
var rate_per_month = (rate_percent / 12) / 100; //divide the rate by 100 and 12 | |
var numr = Math.pow((1 + rate_per_month), time_in_months); | |
var denr = (Math.pow((1 + rate_per_month), time_in_months) - 1); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#sudo a2enmod proxy | |
#sudo service apache2 restart | |
<VirtualHost *:443> | |
ServerAdmin [email protected] | |
ServerName www.koffeewithkode.com | |
ServerAlias koffeewithkode.com | |
SSLEngine On | |
SSLProxyEngine On | |
SSLCertificateFile "/etc/ssl/private/server.crt" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<VirtualHost *:80> | |
ServerName marutiincjaipur.com | |
DocumentRoot /var/www/html | |
<Directory "/var/www/html/console"> | |
RewriteEngine on | |
#Don't rewrite files or directories | |
RewriteCond %{REQUEST_FILENAME} -f [OR] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<VirtualHost *:80> | |
#Set Server Name | |
ServerName www.website.com | |
#Alias url to port | |
ProxyPass /admin http://localhost:4380/ | |
ProxyPassReverse /admin http://localhost:4380/ | |
#Alias url to port | |
ProxyPass /sub-admin http://localhost:4385/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo cp /etc/apache2/sites-available/000-default.conf /etc/apache2/sites-available/php.koffeewithkode.com.conf | |
sudo nano /etc/apache2/sites-available/php.koffeewithkode.com.conf | |
<VirtualHost *:80> | |
ServerAdmin [email protected] | |
ServerName koffeewithkode.com | |
ServerAlias php.koffeewithkode.com | |
DocumentRoot /var/www/html/php | |
DirectoryIndex index.php | |
ErrorLog ${APACHE_LOG_DIR}/error.log |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function myPromiseFunction() { | |
//Change the resolved value to take a different path | |
return Promise.resolve(true); | |
} | |
function conditionalChaining(value) { | |
if (value) { | |
//do something | |
return doSomething().then(doSomethingMore).then(doEvenSomethingMore); | |
} else { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function createChunked(arr, chunkSize) { | |
var onjects = [], | |
i = 0, | |
lmt = chunkSize; | |
for (; i < arr.length; i += chunkSize) { | |
if (lmt == (chunkSize * 8)) { | |
lmt = lmt + arr.length - (chunkSize * 8); | |
} |
NewerOlder