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 ?
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 β¦
Is Gio UI Ready for Production ?
Gio UI is a graphics library built in Go programming language. Gio builts user interfaces in immediate mode which is popular in games industry. Gio UI library is efficient and fast. The documentation β¦
How to create native GUI apps in Rust for Linux ?
Pop! OS developers team is taking this route. They are re-writing all apps and desktop environment (COSMIC DE) in Rust with GTK 4 library binding/wrapper. So, you can create native GUI apps in Rust β¦
Building Desktop Apps with Go: A Guide to Native GUIs for Linux
How to create native GUI apps in Go for Linux ? π Go, while excelling in backend development, offers tools to create feature-rich desktop applications with native looks and feel. This post explores β¦