Skip to content

Instantly share code, notes, and snippets.

View andersonbosa's full-sized avatar
🥑

Anderson Bosa andersonbosa

🥑
View GitHub Profile
@andersonbosa
andersonbosa / VehicleRepositoryImpl.java
Last active January 14, 2025 19:53
Implementation of "update" method in a "in memory" repository.
@Override
public Vehicle update(Long id, UpdateVehicleDto dto) {
Vehicle vehicleToUpdate = findById(id).orElse(null);
if (vehicleToUpdate == null) {
return null;
}
// method 1
if (dto.getBrand() != null) vehicleToUpdate.setBrand(dto.getBrand());
if (dto.getModel() != null) vehicleToUpdate.setModel(dto.getModel());
if (dto.getRegistration() != null) vehicleToUpdate.setRegistration(dto.getRegistration());
// ==UserScript==
// @name automute youtube on video ads
// @namespace http://tampermonkey.net/
// @description try to take over the world!
// @author You
// @match https://www.youtube.com/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=youtube.com
// @grant none
// ==/UserScript==
@andersonbosa
andersonbosa / wordpress-server-block.conf
Last active December 10, 2024 21:18
NGINX conf to deploy a Wordpress from bitnami in a basepath "/blog"
server {
listen 8080 default_server;
listen [::]:8080 default_server;
server_name _;
proxy_set_header True-Client-IP $http_true_client_ip;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $host;
@andersonbosa
andersonbosa / open_addressing_in_hash_table_example.ts
Last active October 24, 2024 10:23
open_addressing_exmaple.ts
/*
Como funcionam as estratégias de "encadeamento" e "endereçamento aberto"?
> No encadeamento, as colisões são resolvidas armazenando múltiplos itens no mesmo índice (geralmente com uma lista ligada). No endereçamento aberto, novas posições são exploradas dentro do array para armazenar o item colidido.
Endereçamento aberto (Open Addressing) é uma técnica utilizada em estruturas de dados como tabelas de dispersão (hash tables) para lidar com colisões.
Quando ocorre uma colisão, ou seja, dois elementos diferentes têm o mesmo endereço de hash, o endereçamento aberto procura novas posições dentro do array para armazenar o item colidido.
@andersonbosa
andersonbosa / wordpress-server-block.conf
Created October 18, 2024 20:33
How to change wordpress base path on Bitnami wordpress-nginx? Here your answer. `/opt/bitnami/nginx/conf/server_blocks/wordpress-server-block.conf`
server {
listen 8080 default_server;
listen [::]:8080 default_server;
server_name _;
root /var/www/html;
index index.php index.html index.htm;
BEGIN;
/* SETUP */
CREATE EXTENSION IF NOT EXISTS "pgcrypto";
CREATE EXTENSION IF NOT EXISTS "uuid-ossp";
CREATE TABLE Users
(
user_id UUID PRIMARY KEY DEFAULT uuid_generate_v4(),
@andersonbosa
andersonbosa / patter_chaser_algorithm.js
Last active September 25, 2024 11:15
coderbyte challenge pattern chaser
/*
- input tem ate 20chars, sendo alfa-numérico lowercase
- padrão : 2 ou mais caractéres adjacentes na string
forem repetidos pelo menos uma vez
"aabecaa" => "yes aa" => because "[aa]bec[aa]"
"abbbaac" => "no null" => because not found pattern
"aabejiabkfabed" => "yes abe" => becayse "a[abe]jiabkf[abe]d"
*/
function closestEnemy(arr){
// console.time('PERFORMANCE_1')
const position = arr.indexOf(1)
let closestDistance = Infinity
for (
let i = 0;
i < arr.length;
i++
) {
const foundEnemy = arr[i] === 2
@andersonbosa
andersonbosa / lru_cache_algorithm.js
Last active September 25, 2024 11:09
coderbyte chall
function LRUCache(strArr) {
const CACHE_SIZE = 5
const cache = []
// // console.time('ARRAY_PERFORMANCE')
// strArr.forEach(
// char => {
// const charIndex = cache.indexOf(char)
// if (charIndex === -1) {
@andersonbosa
andersonbosa / studying_docker_image_sizes_to_performance.md
Created September 14, 2024 14:10
testando diferentes imagens docker

studying_docker_image_sizes_to_performance