Skip to content

Instantly share code, notes, and snippets.

View JosePaulo95's full-sized avatar
🎯
Focusing

José Paulo JosePaulo95

🎯
Focusing
  • Brazil
View GitHub Profile
@Millward2000
Millward2000 / awsLabNotes
Created July 25, 2021 10:59
Rough notes on the setup to test out a sample webapp
===AWS lab notes===
1. Create an AWS Account by following the sign up procedure here:
https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?refid=em_127222
- Be sure to read through the Free Tier program, and understand the pricing of the various services you would like to test out
https://aws.amazon.com/free/?trk=ps_a134p000003yHmhAAE&trkCampaign=acq_paid_search_brand&sc_channel=PS&sc_campaign=acquisition_EEM&sc_publisher=Google&sc_category=Core&sc_country=EEM&sc_geo=EMEA&sc_outcome=acq&sc_detail=%2Baws%20%2Baccount&sc_content=Account_bmm&sc_segment=444219541886&sc_medium=ACQ-P|PS-GO|Brand|Desktop|SU|AWS|Core|EEM|EN|Text&s_kwcid=AL!4422!3!444219541886!b!!g!!%2Baws%20%2Baccount&ef_id=Cj0KCQjwl_SHBhCQARIsAFIFRVUAlWTtGczivDWEv6RygwNdCWkr-0CJUIcbG9y78Kfud28rByODiU8aAt9YEALw_wcB:G:s&s_kwcid=AL!4422!3!444219541886!b!!g!!%2Baws%20%2Baccount&all-free-tier.sort-by=item.additionalFields.SortRank&all-free-tier.sort-order=asc&awsf.Free%20Tier%20Types=*all&awsf.Free%20Tier%20Categories=*all#Lea
@Pragalbha-Patil
Pragalbha-Patil / script.js
Created August 11, 2019 14:46
A javascript Tic-tac-toe using Minimax algorithm
var origBoard;
const huPlayer = 'O';
const aiPlayer = 'X';
const winCombos = [
[0, 1, 2],
[3, 4, 5],
[6, 7, 8],
[0, 3, 6],
[1, 4, 7],
[2, 5, 8],
@patrickkunka
patrickkunka / configuration-1.js
Last active November 17, 2022 02:15
Configuration Patterns
/**
* Configuration #1: Basic Configuration Class
*
* A basic example utilising a sealed instance of a configuration
* class, with user-provided options merged in upon instantation
* of the implementation.
*/
class Config {
constructor() {