Make an API to automatizate birthday wishes
Connect with a virtual social network, get all friends birthday
Let user choose what message he want to send to all birthday person
| /* | |
| O 19 é a quantidade de horas atrás, só subistituir por outro valor. | |
| */ | |
| new Date(new Date().setHours(new Date().getHours() - 19)).toLocaleString("pt-BR") |
Tem o canal do youtube do cara que foi por onde achei ele, mas tem um blog também é maneiro e organizado, ele ensina como cuidar da pele, cabelo e até o tal da harmonização facial que é o que faz o pessoal de hollywood tem aquele maxilar/mandibula bonita https://www.youtube.com/watch?v=JJXe0_3DJWA https://homensquesecuidam.com/
Esse vídeo é bem vlog, mas mostra direitinho o processo pra ficar com os dentes lindos, o canal dessa cara não recomendo tanto pq ele divaga um pouco, mas dá algumas dicas https://www.youtube.com/watch?v=5uF_8CHb2bM
| new Date().toLocaleString('pt-BR', { timeZone: 'America/Sao_Paulo' }); |
Here is the description of what you'll need to implement on this technical challenge.
Implement a function, class or module (it can be on the same file - request.py) to cache requests made with the existing code, preventing unecessary calls. You MUST use this Redis module as a cache service. Feel free to change the code within the existing functions, but do not alter their behaviour.
Context: Caching requests can be useful to avoid unecessary HTTP calls for the same resources, however, the resources can change during time, so it is important to keep in mind that cache needs to be invalidated at some point.
| document.getElementsByTagName("img")[0].style.transform = "rotate(270deg)" |
Winter is coming, and so is React 19, with a flurry of new features that would make even the most stoic Starks crack a smile. Gather 'round the fire, dear developers, as we recount the tales of transitions, hooks, and the dreaded Server Components, all through the lens of Westeros.
In the land of React, handling data mutations and updating state was once as cumbersome as defending the Wall from a horde of White Walkers. With React 18, developers had to juggle pending states, errors, and sequential requests like Jon Snow balancing his duty and love life.
// Before Actions| <!DOCTYPE html> | |
| <html lang="pt-br"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Receitas do(a) (seu nome)</title> | |
| <style> | |
| body { | |
| margin: 0; |
Code is clean if it can be understood easily – by everyone on the team. Clean code can be read and enhanced by a developer other than its original author. With understandability comes readability, changeability, extensibility and maintainability.