Posts

Showing posts with the label python

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...

Everything about Python language

Image
Python used a lot at many things in learning and jobs … 1. Web programming 2. Artificial intelligence programming 3. Data analysis programming 4. Programming simple tools CLI ( command line interface ) 5. Programming IOT ( internet of thing ) 6. Programming of Mobile and Desktop First, you need to learn python fundamental to keep going for the framework You can learn it from here: pythonprogramming Web programming : python used for the backend ( Server side ) not for design and frontend ( client side ) and used the framework to be easy and more organized   Flask microframework: Flask is a microframework for Python based on Werkzeug, Jinja 2 and good intentions. Django Framework : you can build your project and enterprise project Artificial intelligence programming: TensorFlow : An open source machine learning framework for everyone and support from a big company and working with many language R, C++, Python and working for desktop and...

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...