- https://www.udemy.com/course/100-leetcode-algorithm-questions-for-technical-interview/
- https://www.udemy.com/course/coding-interview-question-data-structures-algorithm/
- https://www.udemy.com/course/ultimate-javascript-leetcode-interview-bootcamp/
- https://www.udemy.com/course/leetcode-coding-interview-question-solution-explanation/
- https://www.udemy.com/course/50-problems/
- https://www.udemy.com/course/master-the-coding-interview-data-structures-algorithms/
- https://www.udemy.com/course/leetcode-in-python-50-algorithms-coding-interview-questions/
- https://www.udemy.com/course/master-the-coding-interview-big-tech-faang-interviews/
- https://www.udemy.com/course/crack-the-leetcode-interview-high-frequency-questions/
This file contains 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
const config = { | |
// Use the innerWidth and innerHeight for full screen game | |
width: window.innerWidth, // Changed from a fixed value to adapt to screen width | |
height: window.innerHeight, // Changed from window.height (which is undefined) to innerHeight | |
parent: "container", | |
type: Phaser.AUTO, // Let Phaser decide whether to use WebGL or Canvas | |
physics: { | |
default: "arcade", | |
arcade: { | |
gravity: { y: 300 }, // Adjust if necessary to fit game design |
This file contains 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
from flask import Flask, request, jsonify | |
import redis | |
import json | |
import logging | |
app = Flask(__name__) | |
redis_client = redis.StrictRedis(host='localhost', port=6379, db=0) | |
logger = logging.getLogger(__name__) | |
logger.setLevel(logging.INFO) | |
formatter = logging.Formatter('%(asctime)s - %(levelname)s - %(message)s') |
This file contains 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
class Api::CarSearch | |
include SearchObject.module(:paging) | |
include SearchObject.module(:sorting) | |
per_page 1 | |
min_per_page 1 | |
max_per_page 50 | |
sort_by :price |
This file contains 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
- Don Sebesky |
This file contains 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
Shell Script Best Practices | |
27 Oct 2022 | |
This article is about a few quick thumb rules I use when writing shell scripts that I’ve come to appreciate over the years. Very opinionated. | |
Things | |
Use bash. Using zsh or fish or any other, will make it hard for others to understand / collaborate. Among all shells, bash strikes a good balance between portability and DX. | |
Just make the first line be #!/usr/bin/env bash, even if you don’t give executable permission to the script file. | |
Use the .sh (or .bash) extension for your file. It may be fancy to not have an extension for your script, but unless your case explicitly depends on it, you’re probably just trying to do clever stuff. Clever stuff are hard to understand. |
This file contains 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
[11:56 a. m., 7/9/2022] Carlos Azuaje: https://www.udemy.com/course/ruby-on-rails-6-learn-20-gems-build-an-e-learning-platform/ | |
[11:57 a. m., 7/9/2022] Carlos Azuaje: https://www.udemy.com/course/the-complete-ruby-on-rails-developer-course/ | |
[11:58 a. m., 7/9/2022] Carlos Azuaje: https://www.udemy.com/course/testing-ruby-with-rspec/ | |
[11:58 a. m., 7/9/2022] Carlos Azuaje: https://www.udemy.com/course/beat-the-codility-coding-interview-in-ruby/ | |
[11:58 a. m., 7/9/2022] Carlos Azuaje: https://www.udemy.com/course/how-to-build-instagram-using-ruby-on-rails/ | |
[11:58 a. m., 7/9/2022] Carlos Azuaje: https://www.udemy.com/course/basics-of-graphql-with-ruby-on-rails/ | |
[11:58 a. m., 7/9/2022] Carlos Azuaje: https://www.udemy.com/course/complete-guide-to-payments-with-ruby-on-rails-stripe-api/ | |
[11:58 a. m., 7/9/2022] Carlos Azuaje: https://www.udemy.com/course/ruby-on-rails-api-the-complete-guide/ |
This file contains 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
# Struct to save file data | |
FileStruct = Struct.new(:filename, :content) | |
# Resolver content from a file of a folder of files | |
class ContentResolver | |
# Returns whether or not +file+ is a binary file. Note that this is | |
# not guaranteed to be 100% accurate. It performs a "best guess" based | |
# on a simple test of the first +File.blksize+ characters. | |
# | |
# Example: |
Este es un proyecto creado en Gatsby (React JS) desde 0, lo desplege en EC2 AWS y configura su SSL para HTTP y el dominio Su Backend lo hice en Strapi, un CMS hecho en Node JS, use NGINX, MongoDB y EC2 en AWS para su desplege
https://bconnectedmallorca.com/
Hice el front end desde 0 y planifique su arquitectura, consiste en una estructura de theme de October CMS, una alternativa a Wordpress. Usa React JS para componente independientes. No toda la pagina esta hecha en React porque no hace falta.
This file contains 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
git branch -f master develop | |
git push -f origin master | |
re ilegal |
NewerOlder