#typescript#ai_coding#ai_developer_tools#chatgpt#claude#gemini#sonnet#vscode#vscode_extension
Kilo Code is a free, open-source AI extension for Visual Studio Code that helps you write and manage code faster by generating code from natural language, automating repetitive tasks, and improving existing code. It uses advanced AI models like GPT-5 and Gemini 2.5 Pro, and you get $20 in free credits to try them. It also supports multiple modes for planning, coding, and debugging, plus a marketplace to add extra tools. You just install it from the VS Code Marketplace, sign in, and start coding with AI that adapts to your workflow, saving you time and effort on boring tasks.
https://github.com/Kilo-Org/kilocode
# 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