Skip to content

Instantly share code, notes, and snippets.

View honghuynhit's full-sized avatar
🇻🇳
Working from home

Huynh H. Dinh honghuynhit

🇻🇳
Working from home
View GitHub Profile
SET @num := 0;
UPDATE your_table SET id = @num := (@num+1);
ALTER TABLE your_table AUTO_INCREMENT =1;
alter authorization on Database::your_db to [sa];
const numberLength = number.length;
// tslint:disable-next-line:radix
const numberReplace = (Math.round(parseFloat(numberLength) / 2 )) - 2;
return number.substr(0, numberReplace ) + '' + '' + '' + '' + number.substr(numberReplace + 3);
}
@Id
@Column(name = "id", updatable = false, nullable = false)
private Long id;
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
@Column(name = "id", updatable = false, nullable = false)
private Long id;
@honghuynhit
honghuynhit / Bias.md
Created October 12, 2021 17:35 — forked from tuan3w/Bias.md
Thiên kiến/Thiên Vị (Bias)

Cập nhật (12/10/2021): Bản ghi chú này có sai lệch, nhất là về mental models. Mental models không chỉ là sai lệch trong lĩnh vực tâm lý (được đề cập chủ yếu trong nội dung này) mà là nhóm công cụ tư duy tổng quát (meta skill). Gần đây, tình cờ mình được biết về một ngôi trường được Elon Musk đầu tư nhằm thay đổi cách học và tiếp cận hiện đại. Một trong đó có bao gồm dạy về mental models: Synthesis. Nguồn thông tin chính xác về đầy đủ nhất mọi người nên xem tại Mental Models: The Best Way to Make Intelligent Decisions (~100 Models Explained).

Thiên kiến/Thiên Vị (Bias)

Tự dưng muốn viết về chủ đề này nên viết cho vui. Dạo này, mình đọc nhiều sách về tâm lý. Vì lý do này đến lý do khác dẫn đến thấy thú vị về chủ đề này. Tiêu biểu nhất đó là thiên kiến/thiên vị (bias). Một chủ đề nghe chừng vô thưởng vô phạt. Nhưng sau thời gian tìm hiểu, mình khám phá ra nhiều điều thú vị liên quan đến nó. Thiên kiến ảnh hưởng đến bản thân mọi người nhiều h

@honghuynhit
honghuynhit / post_file_on_microservice.py
Last active June 15, 2022 09:24
[FASTAPI]: Post File qua lại giữa các api trong
# Request:
thumb=Form(..., description='thumb'),
# Nhận request và chỉnh sửa lại file
up = {'thumb': (str(thumb.filename), await thumb.read())}
# Gửi qua api,
response = requests.post('url-endpoint',
data=data, files=up
)
@honghuynhit
honghuynhit / rabbitmq-docker-compose.yml
Created November 16, 2021 02:45
RabbitMQ Docker Compose
version: "3.8"
services:
rabbitmq3:
container_name: rabbitmq-data
image: rabbitmq:3.8-management-alpine
environment:
- RABBITMQ_DEFAULT_USER=admin
- RABBITMQ_DEFAULT_PASS=admin
- TZ=Asia/Ho_Chi_Minh
volumes:
version: '3.8'
services:
postgresql:
image: 'postgres:latest'
ports:
- 5432:5432
environment:
POSTGRES_USER: username # The PostgreSQL user (useful to connect to the database)
POSTGRES_PASSWORD: password # The PostgreSQL password (useful to connect to the database)
@honghuynhit
honghuynhit / nginx.conf
Created July 18, 2022 03:45 — forked from plentz/nginx.conf
Best nginx configuration for improved security(and performance). Complete blog post here http://tautt.com/best-nginx-configuration-for-security/
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048