Skip to main content

Posts

Showing posts from March, 2021

Arcadis is Hiring!!!

 ARCADIS IS HIRING!!! Company : Arcadia Position : Software Engineer Experience : Bs/Ms Degree : BS in CS Apply Link: Apply Here

HTTP TO HTTPs IN FEW EASY STEPS

 HTTP:-  So basically HTTP stands for Hyper Text Transfer Protocol. which helps to fetching of resources like HTML File. It is working as link intermediate between any data exchange on the Web and it is a client-server protocol, which means requests are initiated by the recipient, usually the Web browser. HTTPS:- HTTPS protects the communication between client and server from being intercepted and tampered with by hackers. This provides confidentiality, integrity and authentication to the vast majority of Todays web traffic. Any website that shows a lock icon in the address bar is using HTTPS. WARNING!! BEFORE DOING THIS ALL STEPS YOUR SITE SHOLUD HAVE A SSL CERTIFICATE INSTALL IN YOUR WEBSITE . So Today we will see that how we can do this with some simple line of code:- Step 1:- First Open your hosting provider. After opening you will be able to see                             many opti...

Automate an excel using Python

We all know that Python is ruling all over the world, and we also know that Python is beginner’s friendly and it’s easy to learn in comparison to other languages. One of the best things you can do with Python is Automation. Why we require to automate python with excel? Consider a scenario that you’re asked to create an account on a website for 30,000 employees. How would you feel? Surely you will be frustrated doing this task manually and repeatedly. Now just imagine the life of employees who are into the data entry jobs. Their job is to take the data from tables such as Excel or Google Sheet and insert it somewhere else. They browse different websites and magazine, they collect the data from there, and then they insert it into the database. They also need to do the calculations for the entries. Generally, the wages is based on the performance in this work. More entries, higher the wages. In this blog, we will create a small project to learn automation in Python.   "If you’re a b...

What are the Steps to Add CSS

  What is CSS? CSS stands for Cascading Style Sheets. CSS describes how HTML elements are to be displayed on screen, paper, or in other media. CSS saves a lot of work. It can control the layout of multiple web pages all at once. External style sheets are stored in CSS files. Syntax:- <h1> {color:blue; font-size:12px; } </h1> h1 is a selector part. color is the property. blue is the value. {} is used for the declaration part, where we can pass the property and the value. Example:- p  {   color :  red ;   text-align :  center ; } In the above example all the lines which cointains the paragraph tag will change. The CSS id Selector The id selector uses the id attribute of an HTML element to select a specific element. The id of an element is unique within a page, so the id selector is used to select one unique element! To select an element with a specific id, write a hash (#) character, followed by the id of the element. Example:- #par...

Introduction To Html

HTML HTML stands for Hyper Text Markup Language . It  is the standard markup language for creating Web pages. HTML describes the structure of a Web page. It  is a platform independent which  can run in any platform.  HTML consists of a series of elements which are known as tags. Its  tag tell the browser how to display the content. Its  tags label  pieces of content such as "this is a heading", "this is a paragraph", "this is a link", etc.           Does html have any structure? The answer is Yes, HTML do have structure or we can say a pattern which should be obey by the programmer while doing code in HTML. Lets have a look on Structure.      <html>           <head>                <title>                </title>         </head>  ...

A tour to JavaScript

  What is JavaScript? JavaScript is a scripting or programing language that enables you to implement complicated features on web content — each time a web page will quite simply sit there and show static data for you to seem at — displaying timely content updates, interactive maps, animated 2D/3D graphics, scrolling video jukeboxes, etc. — you'll bet that JavaScript is probably involved in all this . it's the third layer of the cake of standard web technologies, two of that (HTML and CSS) we've coated in way more detail in alternative components of the educational space. JavaScript has six primitives types: string , number , undefined , null , boolean , and symbol.  HTML is the Markup language  that we have a tendency to use to structure and           provide desiring content  to our web page, for instance process paragraphs, headings       and data tables, or embedding pictures and videos within the page. CSS is a...

Guide to Data Strctures And Algorithms | Sources to Learn DSA for Free

DATA STRUCTURES AND ALGORITHMS In  computer science , a DS  is a data organizations, management, and storage format that enables efficient access and modifications.  More  promptly , a data structure is a collection of data values, the relationships among them, and the functions or operations that can be apply to the data. A n algorithm is a set of instruction design to do a specific tasks. This can be a simple processes, such as multiple two values, or to perform  a complex operation, such as playing a compressed or rar video file. Search engines or internet use proprietary algorithm to show the most relevant output from their search index for specific queries. Why to learn Data structure and Algorithms?   Programming a code  is all about data structures and algorithms. Data structure are used to store data while algorithm are used to solve the problems using that data or the information. DSA goes through solutions to standard problems in detail and g...