- 
Create folder for project 
- 
Open folder in VSCode (folde should be root folder) 
- 
npm init -y (for package.json file) 
- 
create .gitignoreand write insidenode_modules/
- 
create index.js
- 
add to package.jsonthe scriptstartthat runs the commandnode index.js
How to install a Minecraft Bedrock Server on AWS
Download the .zip from Minecraft website.
Expand the zip and put contents into a code S3 bucket.
  
    
      This file contains hidden or 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 Calendar(year, name, hourRate) { | |
| this.holidaysDates = holidays(year); | |
| } | |
| function workdaysCount(year) { | |
| let count = 0; const curDate = new Date(year, 0, 1); | |
| const endDate = new Date(year, 11, 31); | |
| while (curDate <= endDate) { | |
| const dayOfWeek = curDate.getDay(); | 
  
    
      This file contains hidden or 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
    
  
  
    
  | <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>HTML</title> | |
| </head> | |
| <body> | |
| <h1>HTML</h1> | 
  
    
      This file contains hidden or 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
    
  
  
    
  | document.addEventListener('keydown', function (event) { | |
| if (event.ctrlKey && event.key === 'i') { | |
| var active = document.activeElement; | |
| if (active instanceof HTMLInputElement && active.type == 'text') { | |
| active.value = '200'; | |
| } | |
| } | |
| }); | 
  
    
      This file contains hidden or 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
    
  
  
    
  | /* log out when user exit application */ | |
| // beforeunload - will work only for Chrome | |
| // unload - will work for other browsers | |
| $(window).on('unload', function () { | |
| notifyLogOut(); | |
| }); | |
| $(window).on('beforeunload', function () { | |
| notifyLogOut(); | |
| }); | 
  
    
      This file contains hidden or 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 swap(items, leftIndex, rightIndex) { | |
| var temp = items[leftIndex]; | |
| items[leftIndex] = items[rightIndex]; | |
| items[rightIndex] = temp; | |
| } | |
| function partition(items, left, right) { | |
| var pivot = items[Math.floor((right + left) / 2)], //middle element | |
| i = left, //left pointer | |
| j = right; //right pointer | |
| while (i <= j) { | 
  
    
      This file contains hidden or 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
    
  
  
    
  | my music app | |
| plan the relevant APIs for the app , use mocks in the client in order to show the data. | |
| ## 1 | |
| the main page will show list of music albums | |
| on hover on the album from the main page , the album data will be displayed | |
| on click the album page will be opened . | 
  
    
      This file contains hidden or 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
    
  
  
    
  | -- phpMyAdmin SQL Dump | |
| -- version 5.1.0 | |
| -- https://www.phpmyadmin.net/ | |
| -- | |
| -- Host: localhost | |
| -- Generation Time: Apr 11, 2021 at 05:31 PM | |
| -- Server version: 5.7.18 | |
| -- PHP Version: 7.3.24-(to be removed in future macOS) | |
| SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; | 
NewerOlder