Skip to content

Instantly share code, notes, and snippets.

View thangtv611's full-sized avatar

Thang Tran Viet thangtv611

  • Ho Chi Minh
  • 00:14 (UTC +07:00)
View GitHub Profile
@thangtv611
thangtv611 / configure.md
Created October 19, 2023 16:09 — forked from jherax/configure.md
VS Code: Debugging with Jest

VS Code: Debugging Jest

Sometimes, debugging with console.log is not enough to find out what is happening in the code, as console.log prints only plain objects but neither functions nor objects with circular references. Besides, it's possible you may need to know the context and flow of the code.

Read more about debugging with VS Code in VS Code: Debugging.

@thangtv611
thangtv611 / settings.json
Last active February 3, 2024 10:35
VSCode setting with VIM
{
"editor.suggest.insertMode": "replace",
"terminal.integrated.fontFamily": "Menlo",
"editor.linkedEditing": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"launch": {},
"[json]": {},
"editor.minimap.enabled": false,
"update.showReleaseNotes": false,
"zenMode.hideLineNumbers": false,
@thangtv611
thangtv611 / docker-compose.yml
Created July 16, 2024 10:08
Kafka with Schema management local
version: '3.8'
services:
zookeeper:
image: confluentinc/cp-zookeeper:6.1.1
container_name: zookeeper
restart: unless-stopped
ports:
- "2181:2181"
environment: