all_currencies = currency_api('latest', 'currencies') # {'eur': 'Euro', 'usd': 'United States dollar', ...} all_currencies.pop('brl') qtd_moedas = len(all_curr
I have a splash screen when loading my app. I implemented an auto-login system in my app, I've tried to re-create splash screen using Container. But whenever th
I have this problem that I was wondering about for a really long time, but quite surprisingly I was not able to google out anything on the topic. I say "surpris
How do I create a decorator that applies to classes? Specifically, I want to use a decorator addID to add a member __id to a class, and change the constructor _
When I make request to mapbox api https://api.mapbox.com/geocoding/v5/mapbox.places/Los%20Angeles.json?access_token=YOUR_MAPBOX_ACCESS_TOKEN I get the response
i have an express routing file where i define all my routes . The problem is when i have tow routes with similar urls for example : router.get('/:categoryId/',
I am working on Leet code problem 112. Path Sum: Given the root of a binary tree and an integer targetSum, return true if the tree has a root-to-leaf path such
The following JavaScript code works: let Color = require('color'); class Example { its_not_easy_being_green() { return Color('green'); } } tes