sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
- Download zsh-autosuggestions by
const express = require("express"); | |
const app = express(); | |
const port = 3000; | |
let golfCoursesData = { | |
timeslots: { | |
"08:00": { capacity: 4, booked: [], waitingList: [] }, | |
"10:00": { capacity: 4, booked: [], waitingList: [] }, | |
}, | |
}; |
use('test'); | |
// 1st Query | |
db.fact_movie_insight.aggregate([ | |
{ | |
$match: { | |
"movie.content_rating" : { | |
$in : [ | |
"G", "PG", "PG-13" |
Elastic Load Balancer, CloudFront and Let's Encrypt |
Windows 8 Preinstall Keys | |
========================= | |
Windows 8 | |
46V6N-VCBYR-KT9KT-6Y4YF-QGJYH | |
Windows 8 Professional | |
V7C3N-3W6CM-PDKR2-KW8DQ-RJMRD |
# Node JS Installation | |
sudo apt update | |
sudo apt -y install curl dirmngr apt-transport-https lsb-release ca-certificates | |
curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash - | |
# Speedtest | |
curl -s https://raw.githubusercontent.com/sivel/speedtest-cli/master/speedtest.py | python - | |
# Install GOLANG | |
wget https://dl.google.com/go/go1.13.3.linux-amd64.tar.gz |
/* Get the latitude and longitude from address: | |
Author : Bastin Robins J | |
Modified By : Gaurav Mehla | |
*/ | |
// Add the link to webpage | |
<script src="https://maps.googleapis.com/maps/api/js?key=API_KEY_HERE" type="text/javascript"></script> | |
<script> | |
(async function(){ |
/* Get the latitude and longitude from address: | |
Author : Bastin Robins J | |
*/ | |
// Add the link to webpage | |
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false"></script> | |
//Function to covert address to Latitude and Longitude | |
var getLocation = function(address) { | |
var geocoder = new google.maps.Geocoder(); |
[{ | |
"type": "SCHEDULED", | |
"title": "Meeting A", | |
"datetime": 1541059200000, | |
"location": "Navi Mumbai", | |
"status": 0, | |
"groupName": "Group 1", | |
"clientName": "Client 1" | |
}, | |
{ |
package main | |
import ( | |
"crypto/aes" | |
"crypto/cipher" | |
"crypto/rand" | |
"crypto/sha256" | |
"encoding/base64" | |
"fmt" | |
"io" |