Quote Of The Day (QOTD)
# Driver Code
if __name__ == '__main__'
main = BlaleLimit(tech_stack=['Python', 'Javascript',
'Java', 'Shell', 'Jupyter Notebook', 'HTML5', 'CSS'])
main.who_i_am()
main.what_i_believe()
main.projects()
Who I Am
I am blalelimit, a lifelong student of Computer Science.
- I am a graduate of Computer Science specializing in Data Science.
- I primarily program in Python, and I am currently honing my skills in Bash Scripting (mostly to automate certain tasks).
- I am currently interested in FOSS (Free and Open Source Software), and the GNU/Linux Operating System.
- I am interested in Data Science, Machine Learning, and multimedia processing through FFmpeg and Python Image Library (PIL).
- I enjoy watching anime, listening to music, and customizing my workflow.
What I Believe
- I believe anything can be achieved for as long one puts their heart and passion onto it.
- I believe the importance of data in the 21st century. With proper context, it can be more valuable than oil.
- I believe that every problem has a solution, and can be reached with enough dedication.
PNG Images to ICO
Converting one image format to another has never been so easy with FOSS software. Just always read the documentation or manual.# Simple Way to Convert *.png files to *.ico using PIL
from PIL import Image
img = Image.open(r'inputs/input.png')
img = img.resize(size=(64, 64), box=None, reducing_gap=None,
resample=Image.Resampling.LANCZOS)
img.save('outputs/output.ico', 'ico', sizes=[(64, 64)])
# ImageMagick can also do the same thing
convert input.png -resize 64 output.ico