How To Make A Website As A Data Scientist

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

How To Make A Website As A Data Scientist

Rihan

Data scientists spend a lot of time writing in addition to modeling. They blog, tweet, and write to share their insights. The field of data science encompasses an extensive range of issues. The boundaries of attention are endless and range from natural language processing to facial recognition, from predicting customer churn to finding unusual deep-space events. The majority of data scientists' experience is with Python and data collecting; they hardly ever work with HTML, CSS, or JavaScript, the so-called web development languages. Ironically, data scientists who might otherwise showcase their work in a stunning portfolio or blog are constrained by their lack of design expertise. Check out the Data science certification course in Delhi, to gain in-depth knowledge of data science and its applications.

Despite the initial anxiety of CSS and HTML, creating your own data science website or blog is pretty simple. You can learn everything you need to know in just a few days to create a stunning personal website.

Why you shouldn't worry about HTML, CSS, and JavaScript.
Hosting. Do you know where your page's content actually resides?
Domain name. When you use a traditional custom '.com' name, how do you get

HTML, CSS, and JavaScript
For a basic understanding or review, below is a brief description of what they perform.
HTML is "hypertext markup language," whose sole purpose is to set out a web page's fundamental building parts. All the tags you see, such as p>code stuff/p>, are HTML. You can even open your browser's editor by right-clicking the page you're reading and selecting "Inspect" to see the page's basic structure. HTML mainly involves large rectangular sections of a webpage. Style, color, and interaction unrelated to HTML.

Its code isn't technically speaking functional or programming. HTML is actually the underlying brick of the paint. It isn't styleable or interactive, but you can paint it with CSS and add doors and windows using JavaScript.
CSS (Cascading Style Sheets)
CSS is an abbreviation for 'cascading style sheets,' referring to appearance and style. It is about different font families, font sizes, colors, opacity, layering, and shape changes. CSS is the most superficial aspect of design, but it does a lot of heavy lifting for user experience. Even the best under-the-hood design and functionality (powered by JavaScript) is useless unless it has an intuitive feel supported by clever CSS usage. When you hover your cursor over a 'thumbs up' icon on social media, and it changes color or size, that's CSS at work, driving a smooth and satisfying user experience.

JavaScript
It is the actual 'programming language' of the trio. A programming language is a title reserved for functionality and interactivity due to the context of interconnected abstractions. JavaScript handles those abstractions under the hood of a website in the form of functions and data flow. In order to handle the intended effect, invisible scripts must be run whenever a user clicks on a button, fills out a form or a search bar, or clicks on a link to another page. These take the form of essential functions, classes, and objects.

You shouldn’t be concerned about all three of these things when creating your own website! Unless you're a master web developer or creating a website from scratch for the challenge, you can learn the tutorial-free fundamentals of HTML, CSS, and JavaScript as you go, thanks to templates.

Step 1: Use a template
It's a pre-written HTML, CSS, and JavaScript codebase with a simple enough backbone to change intuitively. Many new programmers may perceive this as cheating at first because it appears that you need to develop your own brand or put in the effort. However, it is critical for learning because HTML and CSS are best learned from the top down. Tutorials do not provide the necessary personal investment to learn.

Step 2: Provide Hosting
This is a straightforward step. Most of the work involved in developing a website consists in making a webpage look good, and CSS is a big part of that. After that, you need to find a place for that code to live "in the wild."'. If you want your website to be accessible from anywhere, at any time, you should use any significant free web hosting service. GitHub Pages is the standard free hosting location for smaller websites such as blogs and personal websites, and the setup process is simple.

Step 3: Choose a Domain Name
How do you finally get your website to use a custom domain name like bamboo.com instead of the slightly awkward bluepanda.github.io/bamboo?
This step is quick and simple, but it feels strange and intimidating due to the complexity of configuring DNS settings. First, you must find a domain name provider! This will cost money, but it is usually $8-$12 per year. It's as simple as searching for your desired custom domain, such as bamboo.com, on your preferred provider (a quick Google of 'domain name providers' should provide the main big ones, but they're all basically the same), and then paying!


That's all there is to it! Creating your own website involves three steps:

Using an HTML template
Hosting it on GitHub Pages
Registering that repository with a custom domain name
Even if you're already familiar with some of the steps in this guide, I hope it's been helpful to see how all the steps connect because I've found that Steps 1-3 in this guide are rarely integrated together in one tutorial.
If you want to learn more in detail about it, you can visit Learnbay which provides web development and Data science course in Delhi for aspirants.