Posts

All the Way to Software Greatness

Image
6 Things That Make A Great Software Developer Aug 22  · 7 min read I’ve noticed some things about what makes a great software developer in the process of meeting all of these developers alongside the teams they work with. There are some qualities that are shared by developers who are successful in their careers, work on interesting problems, and help to build amazing solutions. Perhaps more importantly, it seems these qualities contribute to their overall happiness and satisfaction. So — here they are — the six things I think make a great software developer: Curiosity Great software developers are great problem solvers. To solve problems that matter, you have to have some curiosity — and the more the better. What makes life hard for people? What makes it fun? How can people get access to what they need? What is missing that would make life easier and better for people? You can start by being curious about the answers to these kinds of questions. This wil

What do software Engineers Really Do?

Image
Anytime you visit a webpage or use an internet-powered application, you are engaging with the end result of a software engineer’s work. Software engineers are computer science professionals who use knowledge of engineering principles and programming languages to build software products, develop computer games, and run network control systems. According to the  U.S. Department of Labor , there were well over 1 million people employed as software developers in 2016. As the Internet of Things trend marches forward and more and more of us rely on smart devices, the number of software developers will only increase, with job outlook predicted to grow at 24 percent over the next eight years. To help you learn more about careers in software development, this article will cover the following topics: Types of Software Engineers The software engineering field is broad. Developers have different sets of technical expertise, from building computer information systems to maintai

Away from Software Development stuffs

Image
1). Prayer is not a "spare wheel" that you pull out when in trouble, but it is a "steering wheel" that directs the right path throughout life. 2). Why is a car's windshield so large and the rear view mirror so small? Because our past is not as important as our future. So, look ahead and move on. 3). Friendship is like a book. It takes a few seconds to burn, but it takes years to write. 4). All things in life are temporary. If they are going well, enjoy them, they will not last forever. If they are going wrong, don't worry, they can't last long either. 5). Old friends are gold! New friends are diamonds! If you get a diamond, don't forget the gold! To hold a diamond, you always need a base of gold! 6). Often when we lose hope and think this is the end, God smiles from above and says, "relax, sweetheart; it's just a bend, not the end!" 7). When God solves your problems, you have faith in his abilities; when God doesn't solve yo

How to use Django Bootstrap Modal Forms

Image
Installation Install  django-bootstrap-modal-forms : $ pip install django-bootstrap-modal-forms Add  bootstrap_modal_forms  to your INSTALLED_APPS in settings.py: INSTALLED_APPS = [ ... 'bootstrap_modal_forms', ... ] Include Bootstrap, jQuery and  jquery.bootstrap.modal.forms.js  on every page where you would like to set up the AJAX driven Django forms in Bootstrap modal. IMPORTANT: Adjust Bootstrap and jQuery file paths to match yours, but include  jquery.bootstrap.modal.forms.js  exactly as in code bellow. < head > < link rel = " stylesheet " href = " {% static 'assets/css/bootstrap.css' %} " > </ head > < body > < script src = " {% static 'assets/js/bootstrap.js' %} " ></ script > < script src = " {% static 'assets/js/jquery.js' %} " ></ script > < script src = " {% static 'js/jquery.bootstrap.mo