#other
This collection is a big set of open-ended questions about backend development, covering everything from code design and databases to security, teamwork, and even some fun, creative questions. The main idea is not to test for right or wrong answers, but to start conversations that help you understand how someone thinks, solves problems, and works with others. By using these questions, you can quickly see what topics a candidate knows well and how they approach new challenges, which helps you find the best fit for your team and project[2][3][4]. The benefit is that you get a clearer, more honest picture of a person’s skills and style, making it easier to choose the right developer for your needs.
https://github.com/arialdomartini/Back-End-Developer-Interview-Questions
# The standard string repr for dicts is hard to read:
»> my_mapping = {'a': 23, 'b': 42, 'c': 0xc0ffee}
»> my_mapping
{'b': 42, 'c': 12648430. 'a': 23} # 😞
# The "#json" module can do a much better job:
»> import json
»> print(json.dumps(my_mapping, indent=4, sort_keys=True))
{
"a": 23,
"b": 42,
"c": 12648430
}
# Note this only works with dicts containing
# primitive types (check out the "pprint" module):
»> json.dumps({all: 'yup'})
TypeError: keys must be a string
История(12м) как в Альфа-Банке сокращали размер JSON файла, который передается на устройство для работы SDUI. Решением стала шаблонизация для отказа от одинаковых блоков UI с разными данными
#оптимизация#json
¿Que puede hacer este bot?
@apimaniaBot
Con éste bot puedes crear PDF a partir de páginas web, convertir texto a imágenes, convertir tablas HTML a json y mucho más
Idioma: español
(Visto en @botsgram_cu)
#pdf#web#texto#imágenes#hrml#json