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); | |
} |
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
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
<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
<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
#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
/* | |
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
var start_date = 'YOUR_START_DATE'; | |
var end_date = 'YOUR_END_DATE'; | |
var today = moment().local().format("YYYY-MM-DD"); | |
var start_date_to_match = moment(start_date).local().format("YYYY-MM-DD"); | |
var end_date_to_match = moment(end_date).local().format("YYYY-MM-DD"); | |
if (moment(today).isBetween(start_date_to_match, end_date_to_match, null, '[]')) { | |
console.log('Current Date is between start and end date'); | |
} else { | |
console.log('Sorry!! Current Date is not between start and end date'); | |
} |
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
image: feeni/node-chrome:latest | |
clone: | |
depth: full # SonarCloud scanner needs the full history to assign issues properly | |
definitions: | |
caches: | |
sonar: ~/.sonar/cache # Caching SonarCloud artifacts will speed up your build | |
services: | |
docker: |
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
[ | |
{ | |
"id":1, | |
"slug":"afghanistan", | |
"country":"Afghanistan", | |
"a2_code":"AF", | |
"dial_code":93 | |
}, | |
{ | |
"id":2, |
OlderNewer