programming

Kart Business Project

Predictions for the Future of Programming Future in 2030

OCR Software made by Abanoub Hanna - Software Developer

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 needed. The browser can paint the page once it has downloaded the CSS and built the CSS object model. Browsers follow a specific rendering path: paint only occurs after layout, which occurs after the render tree is created, which in turn requires both the DOM and the CSSOM trees.

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 typed languages for handling data with complex structure like JSON or operating data with SQL/NoSQL. The statically typed language avoids many ambiguous issues and let us figure out the mistake before before unit test reports it. So I love Go in many pieces, it leverages many concepts from other languages, has a easy understanding struct types, great tool set for production…etc, and most importantly, it’s easy to write and performance will not let you down, but I also got confused sometimes and found many ambiguous parts in Go.

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 on the official website is good for experienced developers, but not good enough for beginners. Yes. Gio UI library is ready for production. But its current bottleneck problem is documentation and examples. So, we β€” here in ValueInBrief β€” will provide examples, samples and tutorials in the following days.

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 for Linux with Rust and GTK 4. Take a look at the source code of popsicle app on github. Popsicle is a program is create bootable USB sticks, and they describe it as “Multiple USB File Flasher”.

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 popular options for crafting native GUIs in Go specifically for Linux environments. 1. GTK+ with go-gtk πŸ”— GTK+ (the GIMP Toolkit) is a widely-used, mature toolkit for building native Linux interfaces. go-gtk provides a Go binding for GTK+, allowing you to leverage GTK+ widgets and functionalities within your Go code.

What is the difference between \\r, \\n, \\t, and \\f in C programming?

These aren’t unique to “C programming”. These are various “control characters”, originally used to control the write-head and paper feeder on Teletype machines. \n is “line feed”. This would bump up the paper one line, whatever that was, but not move the write head. If you did abc\ndef, the teletype would print abc def \r is “carriage return”. This would cause the write head to return to its leftmost position.

Free space in your Mac for Mobile Development

If you are developing mobile apps for Android and/or iPhone and iPad, make sure to delete unused old software you installed in your journey to develop apps through months of updates and installations of libraries and tools. If you do not want to clean your xcode on Mac manually, there are DevCleaner for Xcode which helps your delete obsolete/unwanted software tools/libs/cache/log. Android Studio πŸ”— clean up Gradle πŸ”— Your Gradle Home directory contains wrapper, caches and daemons files.

Linux Mint in Brief

Linux Mint is a Linux distributions. It comes with a desktop environment called cinnamon DE. Cinnamon DE is similar to Windows 7 layout. So, too many people recommend Linux new users to start with it. Familiar Look πŸ”— Linux Mint has the familiar look of Windows 7. I can differentiate it by the greenish color of the desktop UI. Stable & Reliable πŸ”— Linux Mint is based on Ubuntu LTS. Ubuntu is a stable and reliable distro as it is based on Debian itself.

Don't show snap packages in lsblk command output

When your try to see blocks / devices in your Linux distribution that has snap pkgs installed on it, you’ll see too much devices (loop) but they’re not devices. They are actually snap packages. So, how not to show them in the output of the lsblk command. The lsblk command has an -e argument to help to exclude some devices/loops , so we can just exclude loops of snaps. All snap packages on my system has that 7 on them, so I can just exclude any device that has 7 in its description or title, so the command will be lsblk -e 7.

How to use dd to create a bootable USB stick ?

Using dd needs a geek or a developer! if you want to use graphical tools instead, use rufus , popsicle or ventoy . If you sure you want to use dd, here is the step by step guide. First, identify your USB stick (a.k.a USB drive) on your system using this command sudo fdisk –l. The USB stick in my case is /dev/sdb as you can see in the picture. So let’s unmount it via this command umount /dev/sdb*.