Posts

Showing posts with the label github

From Hours to Seconds , Why i build flask-gen

Image
Hello developers  , as developers we all love the 'Magic' of building , but we often dread the "drudgery" of starting. You know the drill: creating the folder structure, configuring the environment, manually setting up blueprints, schemas, and utility files—it’s a process that used to eat up an hour of my afternoon every single time I wanted to experiment with a new idea. note that I am a blind developer working with assistive technologies. Some tasks may require additional effort and time. I’ve spent a significant amount of time meticulously crafting project templates to ensure my code stays clean and maintainable. But no matter how organized I was, the manual setup was a bottleneck I reached a point where I realized that if I was automating everything else in my workflow, I should be automating my project initialization, too. So, I set out to build `flask-gen`, a tool designed to take the friction out of starting a new project.   It wasn't a project I threw toge...

HOW TO BECOME A HACKER!?

Image
1/ Start with Linux: Run a UNIX-like operating systems are the operating systems of the internet, while you can learn to use the internet without understanding UNIX.   For this reason, the hacker culture today is pretty strongly UNIX-centered. There are many types of UNIX-like operating systems, the most popular being Linux, which you can run alongside Microsoft windows on the same machine. 2/ Learn HTML: If you don’t know how to program, learning basic Hypertext mark-up language (HTML) and gradually building proficiency is essential. What you see when you look at a website of pictures, images and design components is all codes using HTML. 3/ Learn the language of Programming: Python is a good “language “to start off with because it’s cleanly designed, well documented, and relatively kind to beginners. Despite being a good first language, it is not just a toy; it is very powerful, flexible, and well-suited for large projects. Java is an alt...

Let's play with bootstrap

Image
# a website using bootstrap  See the code src  on GITHUB

Scientific-Calculator using Eclipse in java program

Image
A scientific calculator built using java swing and eclipse swing window builder. Calculator.java   import java.awt.Color ; import java.awt.EventQueue ; import java.awt.Font ; import java.awt.event.MouseAdapter ; import java.awt.event.MouseEvent ; import java.awt.event.MouseMotionAdapter ; import javax.swing.JFrame ; import javax.swing.JLabel ; import javax.swing.JPanel ; import javax.swing.SwingConstants ; import javax.swing.border.EmptyBorder ; import javax.swing.JMenuBar ; import javax.swing.JMenu ; import javax.swing.JMenuItem ; import java.awt.Toolkit ; import java.awt.Window.Type ; import java.awt.ComponentOrientation ; import java.awt.Cursor ; import javax.swing.JTable ; import javax.swing.JButton ; import javax.swing.JTextField ; import java.awt.event.ActionListener ; import java.awt.event.ActionEvent ; import java.awt.Component ; import javax.swing.JComboBox ; import javax.swing.JTextPane ; import javax.swing.DefaultComboBoxMo...