Category: Computer Science
What are the advantages of Node JS??!!
Node JS is one the highly efficient backend frameworks for web development, written in JavaScript. It was introduced in 2009 for first time by Ryan Dahl. By introducing of the node JS, both of frontend and backend of web could be done only by JavaScript and since then the market had shown vast need for MEAN Stack and MERN Stack developers. MEAN stack is abbreviation of four technologies used for web development: MongoDB, Express JS, Angular JS and Node JS and also MERN stack just replaced the Angular JS with React JS. But the question is, why the reason for the increasing popularity and use of Node JS and what are its advantages than other backend frameworks.
Continue reading “What are the advantages of Node JS??!!”Scrum according to Silicon Valley TV Series
“Decorators” in Python
One of most powerful and advanced features of “Object-Oriented Programming” in python, is “Decorators”. But before you dive in to the decorator’s topic, you need to know somethings in advance. For C++ and Java programmers, functions inside of functions is weird and unfamiliar, but python supports creating functions inside of functions and a function can have an argument which is a function itself! Please don’t mess it up with recursion. In recursion (which is supported by C++ and java as well), same function is called inside of definition of function, but in python you can define a new function inside a function (like a wrapper function), and return of your function could be a function. This is so beautiful feature and makes a great tool for professional programmers to write codes.
Continue reading ““Decorators” in Python”How “Open Source Software” Developers take advantage of their works?!
This always is a question that developers or freelancers who work in “free” and “open source projects”, how take advantage from their works. Below, I mention couple of sources that they could make money.
1- First of all, in recent years, freelancing websites are growing fast and freelancers could take projects from there and make some money. Imagine that couple of freelancers claimed to do a project. You think who will win the competition and take the project??!! Of course project owners prefer to out-source projects to someone who has a portfolio with some open source project.
Continue reading “How “Open Source Software” Developers take advantage of their works?!”What is “Computer Vision”?
The word “Computer Vision” or “Machine Vision”, refers to when a computer or machine can see a thing almost as a human see. The computer vision is different from CC Cameras (Close-Circuit Camera), because CC Camera just streams the objects to Monitor, but in computer vision, computer (by some algorithms) can interpret the objects in stream and for example can detect faces or humans or animals in pictures or videos or even in online video streams. First technologies for computer vision, appeared in early 2000’s. The OpenCV almost was the first popular tool for computer vision which created by “Intel” Corporation, in 2000. The first Algorithms for object detection was the “Viola Jones Algorithm” which invented in 2001 by Paul Viola and Michael Jones. This algorithm is based on “Haar like features” and it estimates any important feature of an object by a Haar like shape and if an object in a picture or video, has all of this Haar like features, then that is our desired object. A sliding window with specified size (which is customized by programmer), starts from top left of image or video and it moves to right after each step and then to down after end of the row. Each window that has our desired object will be covered by a colored rectangle in image or video. “Haar like features” and “Sliding Window” are shown in below pictures.
Continue reading “What is “Computer Vision”?”What is “Deep Learning”?
After talking about “Machine Learning” in my previous article, this time I want to talk about “Deep Learning” which is a hot topic in AI world in recent years. Deep learning is a subset of Neural Networks and Neural Network itself is a subset of Machine Learning. In below diagram, you can find how this topics are related to each other.
Continue reading “What is “Deep Learning”?”What is “Machine Learning”?
Maybe you heard a lot the word “Machine Learning” in news and articles in recent years and wonder to know what it exactly is. Machine learning is a subset of “Artificial Intelligence” and it refers to the ways a machine can learn something. Before talking about machine learning, it is good to think about, “How a human learns”? Imagine you are walking in a street and you see a lot of stores and shopping centers and etc. Next time, because you learned this street has lots of stores, you go there for shopping. If you didn’t walk in this street and nobody told you about this street, have you any idea this street has stores or not?! That’s exactly the way we learn: by providing related info about a subject somehow. If we want a machine to learn something, we should provide a lot of related info to machine and expect the machine to predict the new thing which is related to info we already provided to machine.
Continue reading “What is “Machine Learning”?”What is Big Data?
The word “Big Data”, is almost self-explanatory and easily can be inferred it is related to a huge amount of data. But, it usually applies when we are talking in IT industry and more specifically in web technologies. The most famous users of “big data” technologies, can be guessed easily. That’s right: The search engines like Google and Bing. It is good to know that almost there are just this 2 search engines and other famous websites which have search engine (like yahoo.com or msn.com or etc), just use one of these two search engines. In this article, I want to talk about commercial technologies which used in “Big Data” industry.
Continue reading “What is Big Data?”