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
AWSTemplateFormatVersion: '2010-09-09' | |
Description: Lambda for Pipeline Integrations. | |
Parameters: | |
IntegrationType: | |
Type: String | |
AllowedValues: | |
- "Bitbucket" | |
- "GitHub" | |
Description: Enter Bitbucket or GitHub | |
IntegrationUser: |
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
import YouTubeVideo from './YouTubeVideo'; | |
function App() { | |
return ( | |
<div className="App"> | |
<YouTubeVideo | |
videoId="dQw4w9WgXcQ" | |
width={640} | |
height={360} | |
title="Rick Astley - Never Gonna Give You Up (Official Music Video)" |
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
import boto3 | |
import os | |
import logging | |
import time | |
# Setup logging | |
logger = logging.getLogger() | |
logger.setLevel(logging.INFO) | |
elasticbeanstalk = boto3.client('elasticbeanstalk') |
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
CREATE USER 'root'@'%' IDENTIFIED BY 'secret'; | |
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' WITH GRANT OPTION; | |
FLUSH PRIVILEGES; |
A Pen by Soham Banerjee on CodePen.
Here's a comprehensive learning roadmap for a developer on LeetCode who wants to improve their understanding and skills in Data Structures & Algorithms:
- Start with the basics: Before delving into complex algorithms, make sure you have a strong grasp of basic data structures like arrays, linked lists, stacks, and queues. This foundation will help you understand more advanced concepts later on. You can find plenty of resources online to learn about these topics, including tutorials and videos.
- Algorithmic thinking: Learn how to approach problems algorithmically by breaking them down into smaller steps and identifying patterns. Practice solving simple problems using basic data structures, then gradually move on to more complex ones. This skill will be invaluable when tackling LeetCode problems.
- Practice, practice, practice: The key to mastering algorithms is practice. Start by working through easy problems on LeetCode and gradually increase the diff
Here's a list of beginner-friendly LeetCode problems covering various data structures and algorithms:
- Arrays
- Linked Lists
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
// Jump Throw (NOT WORKING) | |
// alias "+throw" "-attack;-attack2" | |
// bind "space" "+jump;+throw" | |
// Run Throw (NOT WORKING) | |
// alias "+walkjumpthrow" "+forward;+jump" | |
// alias "-walkjumpthrow" "-jump;-forward" | |
// bind "n" "+walkjumpthrow;+throw" | |
// New Jump Throw + Run Throw |