Personal Blog
Photo

Twice a year, my father is doing gardening. Around Ordibehesht, and along Mehr. Both time plant are flourish in a pretty way. I have double checked my photos and chose some non-edited beautiful pictures of our plant in the yard to proof that fall may be full of flowers. These are all manual-focused pictures. I changed my mind about manual-focus after seeing these pics. I just cropped these photos.
Continue reading →
Photo

It's been a while fall is started and is around the corner. I am quite busy so I have not enough time to capture fall photos, but I will try soon. These photos are from our fall fruits in our yard. It is a tradition for us to share them with neighbors and families around us.
Continue reading →
Photo

Late 2022 Eclipse (1st 15th Jalali Century Eclipse) is currently happening and passed it picks. I had planned to capture photos of this partial eclipse since a week before. It was happening in Africa and Asia and in Tehran, my hometown was visible partially. I had no specific filter so tried to use manual setting to capture sunlight but first I could not capture, second my camera was close to be damaged by sunlight. So I covered my DSLR Camera…
Continue reading →
Photo

Bagh-Anari (Pomegranate Garden) is located at the north east side of Tehran. There is an old building inside the garden which is repaired and currently is a half-museum at the heart of the garden. Garden individually turned into a public park to be used by all people but formerly was a private garden of a citizen of Tehran in Ghajar Era. There are lots of fruit trees inside the park as well as lots of pomegranate trees. Todays people at…
Continue reading →
Programming

Tips About Web Design Projects

You may be a Freelance Web Designer (Front-End Designer) or Developer (Back-End Programmer) or both: a Full-Stack Developer. First step through a successful web design project is understanding the purpose of design and audience. It may have been a design for all ranges or a specific partition of people. It may be a general-purpose website or dedicated to special purpose(s). Second: you have to arrange a contract. No step must be taken unless it is documented into a contract. Even…
Continue reading →
Programming

What is Dictionary in Python?

Python has some complicated data structures, such as: Lists, Tuples, Dictionaries and Sets Dictionary is also called Associative Array. A dictionary consists of a collection of key-value pairs. Definition: d = { <key>: <value>, <key>: <value>, . . . <key>: <value> } Iteration Code: dict = {'color': 'blue', 'fruit': 'apple', 'pet': 'dog'} for key in dict: print(key) Output: color fruit pet Code: for item in dict.items(): print(item) Output: ('color', 'blue') ('fruit', 'apple') ('pet', 'dog') Code: for item in dict.items(): print(item)…
Continue reading →
Programming

Natural Language Programming

Do you know, you don't have to be a programmer to write a computer program? These days, by improving artificial intelligence methods, you can just write down what you expect from a computer program, and using special interface, the story will interpreted and turned into a computer program. It don't have to be a specific person to do so, just a robot called "transparent robot" (hidden from human eyes) can write the story down and interface such as Inform 7…
Continue reading →
Education

Online Learning Platforms

Online Learning Platforms are platforms which offer learning via pre-recorded videos or live classes. In both cases a tutor will share his/her knowledge in form of videos, images, presentations or tutorials. So educator has the key-role to an online learning platform. These platforms may offer multiple language courses or just local language. In this post I am sharing some of these platforms which offer free courses or trials. Primary language is English. Coursera is one of the leading companies working…
Continue reading →
Programming

How to fix Bootstrap 5 in Dreamweaver

You know, if you want to use Bootstrap in Dreamweaver, it can be automatically done. Download bootstrap zip file from: https://getbootstrap.com/Put CSS and JS folder of Bootstrap in your root folderCreate New SiteCreate a file -> Select Bootstrap -> Attach Bootstrap.css file on the dialog below 5. Now Dreamweaver automatically will add line below to header: <link href="css/bootstrap.min.css" rel="stylesheet"> and these lines to footer of the page: <script src="js/jquery-3.4.1.min.js"></script> <script src="js/popper.min.js"></script> <script src="js/bootstrap.min.js"></script> Note: Some JavaScript function doesn't work in…
Continue reading →
Programming

Face Recognition on Python

A few weeks ago, me & my brother were talking about face recognition on scanned family photos.I got curious to find out how to implement a face recognition on Python. 1. Install Anaconda for Python Package ManagerIt has a shell for downloading packages automatically. 2. Download & Install CMakeFor compiling DLib on Visual Studio 2015 3. Install Visula Studio 2015 (Version is important) 4. Download DLib Package and Extract 5. Open CMake and configure like below: 6. Download & Install…
Continue reading →
Back to top