Skip to content

Instantly share code, notes, and snippets.

View thieu1995's full-sized avatar
🎯
Focusing

Nguyen Van Thieu thieu1995

🎯
Focusing
View GitHub Profile
@thieu1995
thieu1995 / libraries_citations.bib
Last active July 23, 2020 14:57
List of my libraries citations
@software{thieu_nguyen_2020_3839812,
author = {Thieu Nguyen},
title = {A framework of the state-of-the-art metaheuristics algorithms in python: mealpy},
month = may,
year = 2020,
publisher = {Zenodo},
doi = {10.5281/zenodo.3711948},
url = {https://doi.org/10.5281/zenodo.3711948}
}
@thieu1995
thieu1995 / cec_2013.py
Last active September 9, 2020 04:15
How to call and run CEC 2013 benchmark functions from opfunu library.
## Upgrade the library first
## pip install opfunu --upgrade
## Current version: 0.7.1
import numpy as np
from opfunu.cec.cec2013.unconstraint import Model as MD1
from opfunu.cec.cec2013.unconstraint2 import Model as MD2
problem_size = 100
solution = np.ones(problem_size)
@thieu1995
thieu1995 / gist:dc0223abcdba856893fec415ef5d6638
Created March 3, 2022 15:24 — forked from stuart11n/gist:9628955
rename git branch locally and remotely
git branch -m old_branch new_branch # Rename branch locally
git push origin :old_branch # Delete the old branch
git push --set-upstream origin new_branch # Push the new branch, set local branch to track the new remote
from functools import total_ordering
@total_ordering
class WSN:
def __init__(self, mec_id, cpu_require, priority_level, generate_time, age):
self.mec_id = mec_id
self.cpu_require = cpu_require
self.priority_level = priority_level
@thieu1995
thieu1995 / tutorials.md
Last active April 19, 2022 10:56
Commands for publishing python package
@thieu1995
thieu1995 / my_libraries.bib
Created May 20, 2022 11:03
Citation for my works
@software{thieu_nguyen_2020_3839812,
author = {Thieu Nguyen},
title = {A framework of the state-of-the-art metaheuristics algorithms in python: mealpy},
month = may,
year = 2020,
publisher = {Zenodo},
doi = {10.5281/zenodo.3711948},
url = {https://doi.org/10.5281/zenodo.3711948}
}
@thieu1995
thieu1995 / passport_photo_maker.py
Last active February 5, 2025 15:46
How to make passport avatar to submit on online website (dichvucong.gov.vn)
# 1st: Take a photo with portray image.
# 2nd: Use this website to make passport photo: https://www.cutout.pro/passport-photo-maker/upload
# 3nd: Download the transformation image above and run this code:
from PIL import Image
# Đường dẫn ảnh
input_image_path = "your_transformed_image.jpg" # Thay bằng đường dẫn ảnh gốc
output_image_path = "the_final_image_to_submit.jpg"