Links

Search This Blog

October 31, 2023

Happy Halloween!

EXAMPLE


I wanted to share with you my "SpookyB3" font.
I made it with Inkscape and FontForge.
I hope you enjoy it.



October 15, 2023

My Mask Drawing

 

My Mask Drawing  

Roughly made with dark green pen.
Edited in Inkscape and GIMP.

-Bobo


October 12, 2023

Non Ambigious Dates


import datetime
d = datetime.datetime.now().year
print(d)
c = 0
for month in range(1,13):
    for day in range(1,32):
        if day > 28 and month == 2 or day > 30 and month in [4,6,9,11]:
            continue
        if day == month or day > 12:
            c += 1
            print(str(day) + ".\t" + str(month) + ".\tCount: " +  str(c))
print(c)