have to find a way for the pictures to load asap when i reload, the problem is either react or database.
Thanks !Really cool, brother.
stages: # List of stages for jobs, and their order of execution
- staging
deploy new version to staging:
only:
refs:
- main
stage: staging
image: python:latest
allow_failure: false
before_script:
- export AWS_ACCESS_KEY_ID=$AWS_ACCESS_KEY_ID
- export AWS_SECRET_ACCESS_KEY=$AWS_SECRET_ACCESS_KEY
- export AWS_DEFAULT_REGION=$AWS_REGION
script: |
apt-get update -y
apt install zip -y
pip install awscli
echo "Deleting content from S3"
aws s3 rm --recursive s3://$AWS_S3_BUCKET/
echo "Uploading to S3"
aws s3 cp --recursive /public/. s3://$AWS_S3_BUCKET/
environment:
name: staging
have to find a way for the pictures to load asap when i reload, the problem is either react or database.
Maybe this one?Anyone with recommendation for website,books or youtube videos explaining the main leetcode algorithms used to solve questions in python?
GitHub - seanprashad/leetcode-patterns: A curated list of leetcode questions grouped by their common patternsAnyone with recommendation for website,books or youtube videos explaining the main leetcode algorithms used to solve questions in python?
i already have the website saved but think i will stop trying to cut corners and just read cracking the interviewGitHub - seanprashad/leetcode-patterns: A curated list of leetcode questions grouped by their common patterns
its in java , but you can just look up any java methods to its python equivalent.
Been a while since I looked but it was mostly just programming problems. Nothing you won't find on Leet Code or similar.i already have the website saved but think i will stop trying to cut corners and just read cracking the interview
Update on my project.
Still have a few things to implement ,but i think ill be done by Sunday night.
ill cache the homepage images as someone advised me to , later today.
Well , I started it like a month and a half ago with the backend and that took me a while due to laziness.how long did it take you to create it?