Kart Business Project

Predictions for the Future of Programming Future in 2030

OCR Software made by Abanoub Hanna - Software Developer

All Posts

335 posts

About Clarity

Clarity in Programming πŸ”— I hate it when clarity is not present. If you are a software developer trying to learn a programming language that has too many high level abstractions, you’ll feel it. …

My Vision for Teaching

The current education system is bad for humans. Why, What, How πŸ”— The current education system focus on “what is this?” and “how to use it” and “how it works?” and …

Gtk or Qt or Flutter for developing Linux app ?

Gtk πŸ”— Gtk is the FLOSS (Free Libre Open Source Software) of Linux GUI development. It is being developed by GNOME foundation to be cross platform. Its latest release is Gtk4 with GPU acceleration and …

Customized Software vs Standard Software

tldr πŸ”— Standard software is the software that is build for some functions to be used in several cases at many companies and shops. Customized software is the software created to fit the specific …

Heavily Customizable Software vs Opinionated Software

Software Developing πŸ”— Writing and maintaining customizable software is harder and time-eating. Building too many features with configurations and settings is nightmare. Heavily customizable software …

How to add minimize button Elementary OS ?

How to add minimize button Elementary OS ?

Just open the Terminal app, and copy-paste this command and click ENTER. sudo apt install software-properties-common sudo add-apt-repository ppa:philip.scott/elementary-tweaks sudo apt install …

How to cut a video based on start and end time using ffmpeg ?

This is the fastest command to cut the video in ffmpeg . ffmpeg -ss 00:01:00 -i input.mp4 -to 00:02:00 -c copy output.mp4 note: the above command trims your video in seconds. explanation of command …

You don't need jQuery !

Published on Drew DeVault’s blog on August 19, 2013 . It’s true. You really don’t need jQuery. Modern web browsers can do most of what you want from jQuery, without jQuery. For example, take …

CSS Optimization Tips

Painting an unstyled page, and then repainting it once styles are parsed would be bad user experience. For this reason, CSS is render blocking, unless the browser knows the CSS is not currently …

Go: A Beautiful Mess

originally published on medium.com . I published it here because medium is blocked in some countries. An old school guy like me love statically typed language, even I tasted the convenience of dynamic …