Posts

Showing posts with the label Jeevitha J

Machine learning approaches

Image
  MACHINE LEARNING APPROACHES: Machine learning: Machine learning is the study of computer algorithms that uses the data and provide the analyzed results. Machine learning algorithms would build a data model which uses the dataset called trained data.   These datasets have been trained based on the algorithms that we need. Machine learning is used in many fields such as medicine, aerospace technology, government-related works, email filtering, speech recognition, etc.,  Machine learning approaches are categorized into various types like Supervised learning Unsupervised learning Semi-supervised learning Reinforcement learning In this blog, we will see about supervised learning and unsupervised learning. Supervised learning: Supervised learning can be defined easily by its use of labeled data. This way of approach is used for building a mathematical model which takes input and gives predicted output. This approach is usually used to build the model for predictions and class...

FLAVORS OF LINUX

Image
FLAVORS OF LINUX LINUX:    Linux is  a family of open-source Unix-like operating systems based on the Linux kernel. An operating system was first developed and released by Linus Torvalds on September 17, 1991. Linux is typically packaged in a linux distribution. First get into the topic, we must know the categories of linux. This might help us in exploring more things in linux. The basic categories of linux distributions are Security focused User focused. We might think about how it would be possible to have more distributions in linux. The answer is very simple. LINUX IS FREELY REDISTRIBUTABLE. Anyone can create any distribution based on their preferences. FLAVORS OF LINUX: Debian:   Debian also known as Debian GNU/Linux is one of the Linux distributions. It is free and open source software. It was established by Ian Murdock on August 16, 1993.  It has access to online repositories that contain over 51,000 packages. Debian is a popular choice for servers...

INTRODUCTION TO KSS

Image
INTRODUCTION TO KSS:                       KSS is the abbreviated form of Knyle Style Sheet. It can be simply described as CSS documentation. Documentation for any flavor of CSS that you’ll love to write. It is in the form of human readable, machine parsable and easy to remember. KSS is a documentation specification and styleguide format. It is not a preprocessor, CSS framework, naming convention, or specificity guideline.It is hierarchical in nature. Why KSS? If we have added a new member to the medieval of our project, he/she would have coped up to our styles. He/she can’t start anything from scratch. This may increase the time to develop our project. Suppose, we have already documented our CSS, a new member can just refer to the styles and start doing their works. This will increase the efficiency of our project.  If you’ve ever been a new developer on a team with weak documentation, you know how confusing it can b...

PROS AND CONS OF TAILWIND CSS

Image
  PROS AND CONS OF TAILWIND CSS: Tailwind CSS is a utility-first CSS framework for rapidly building custom user interfaces. I like to think of it as a cool way to write inline styling and achieve an awesome interface without writing a single line of your own CSS. In short terms, the main benefit of Tailwind is that it relieves you from having to write loads of CSS, and you can instead use Tailwind directly in your HTML. PROS: It makes the styling process much faster: It makes our work easier because as a developer, we don't need to switch between the css and html. We can simply do our styling in the html itself. It provides convenience: That is by using css, developers face a lot of problems. This can be avoided by simply using the tailwind css classes. It provides security:  People can safely use it in production. It is highly customizable: Since it is open source and free use, we can easily customize according to our needs.  It can be optimized using purgeCSS: We can...

NEW FEATURES OF BOOTSTRAP v5.0

Image
NEW FEATURES OF BOOTSTRAP v5.0 What is Bootstrap? Bootstrap is originally a blend of CSS and JavaScript code that you can use to create dynamic websites. It is an efficient tool for front-end design that consists of HTML and CSS design templates. These include components like forms, buttons, navigations, modals, typography, and other interface elements. Everyone knows that updated versions would have slight changes or might have additional features. Same to that, Bootstrap v5.0 also has some changes and additional features. So let’s start uncovering what’s changed in Bootstrap v5.0. Drop for jQuery Support: The end of jQuery support is especially meant to reduce the source file size and improve the loading times. As JS based languages are at their peak these days, jQuery has lost its popularity. And moreover Developers are using virtual DOM, instead of DOM directly. Enhanced JavaScript: While Bootstrap drops support for jQuery, Bootstrap5 creators show much interest in enhancing the Ja...

Virtual Private Network

Image
VIRTUAL PRIVATE NETWORK A virtual private network (VPN) extends a private network across a public network and enables users to send and receive data across shared or public networks as if their computing devices were directly connected to the private network. Applications running across a VPN may benefit from the functionality, security, and management of the private network. It provides access to resources inaccessible on the public network and is typically used for telecommuting workers.  From a user perspective, the resources available within the private network can be accessed remotely. TYPES OF VPN: Remote access: A host-to-network configuration is analogous to connecting a computer to a local area network. This type provides access to an enterprise network, such as an intranet. Site to site: A site-to-site configuration connects two networks. This configuration expands a network across geographically disparate offices, or a group of offices to a data center installation. Extr...

What is SEO?

Image
  What is SEO?           Search engine optimization is the process of improving the quality and quantity of website traffic to a website or a web page from search engines. SEO targets unpaid traffic rather than direct traffic or paid traffic.           The search engines are used by the internet users to search for something that they want.           And  if we want to provide the answer to that, it doesn’t matter whether we sell a product or service, write a blog, or anything else, search engine optimization is a must for every website owner. To put it in a simple word, SEO is all the actions you do to make Google consider your website a quality source and rank it higher for your desired search queries .           For instance, You type something like SEO in search space, search engine dns fetches the data and provides the various links. To be in the fir...

VANILLA JAVASCRIPT

Image
  VANILLA JAVASCRIPT What is VanillaJS? Is that anything like a framework or library so that we can import and use it?  VanillaJs is just plain Javascript without using any additional libraries.  On the other hand,it  can be thought of as a scripting language that doesn't set any rules about how data can be defined, or how the UI can be changed. That makes apps written without these libraries more freeform and customizable. “ The ability to speak exactly is intimately related to the ability to know exactly ”. To get well versed in JS Frameworks, we need to locate our foundation really well. Computer software, and sometimes also other computing-related systems like computer hardware or algorithms, are called vanilla when not customized from their original form, meaning that they are used without any customization or updates applied to them. So Vanilla often refers to pure or plain. JavaScript is now the programming language for the web. Therefore, understanding its co...