Skip to content

Tarik Billa

  • Web Development
    • html
    • vue.js
    • laravel
    • css
    • javascript
    • jquery
    • node.js
    • php
    • asp.net
  • Programming
    • python
    • java
    • c
    • c++
    • c#
  • git
  • android

user-profile

How to check similarity of two images that have different pixelization

September 9, 2023 by Tarik

You can use the imagehash library to compare similar images. from PIL import Image import imagehash hash0 = imagehash.average_hash(Image.open(‘quora_photo.jpg’)) hash1 = imagehash.average_hash(Image.open(‘twitter_photo.jpeg’)) cutoff = 5 # maximum bits that could be different between the hashes. if hash0 – hash1 < cutoff: print(‘images are similar’) else: print(‘images are not similar’) Since the images are not exactly … Read more

Categories python Tags image-comparison, image-processing, image-scaling, python, user-profile Leave a comment

Where are the Visual Studio settings stored?

September 6, 2023 by Tarik

**Update for latest version** Visual Studio 2015: %USERPROFILE%\Documents\Visual Studio 2015 Visual Studio 2017: %USERPROFILE%\Documents\Visual Studio 2017 Also have a look at these folders: %USERPROFILE%\AppData\Local\Microsoft\VisualStudio\… %USERPROFILE%\AppData\Roaming\Microsoft\VisualStudio\…

Categories visual-studio Tags settings, user-profile, visual-studio, visual-studio-2013 Leave a comment

How can I find all public comments for a Github user?

December 31, 2022 by Tarik

You can do this with an advanced search query. In the Issues search box, enter “commenter:username“. Or if you want to search a specific repo: “RepositoryName commenter:username“.

Categories github Tags github, user-profile Leave a comment

Tarik Billa

Software Engineer
tarikbilla@gmail.com
+8801884414000
  • Reuse a hash in YAMLApril 17, 2024
  • Dockerfile: how to redirect the output of a RUN command to a variable?April 16, 2024
  • How to cd to a directory with spaces in the directory name?April 16, 2024
  • Maximum MIME type length when storing the type in a databaseApril 16, 2024
  • What is the difference between Unit, Integration, Regression and Acceptance Testing?April 16, 2024
© 2026 Tarik Billa