Skip to content

kt-std/kottans-frontend

Repository files navigation

kottans-frontend

The Udacity "Version Control with Git course" is magnificent. So satisfied with the way of explanation and materials presentation! Learngitbranching.js.org visualization of Git's most recently used operations, especially branching, provided a much easier perception of such complicated topics. Applaud! Quite excited to see further tutorials:)


Linux CLI, and HTTP

Linux survival screenshots:

Module 1

Module 1

Module 2

Module 2

Module 3

Module 3

Module 4

Module 4

What was new? 📚

  • Linux commands, especially which dedicated to printing;
  • HTTP methods such as TRACE, HEAD;
  • HTTP headers and their usage ;
  • Details about the way of how does the caching mechanism work and its validation.

What did surprise me? 😮

  • Websites typically use Basic Authentication.

Intentions for further usage 💁 :

  • Methods and status codes for developing reliable RESTful API;
  • Authentication and its mechanisms (MD5, SHA) in conjunction with SSL and TLS;
  • Caching for improving the experience on the web by the usage of caching headers, which also provide optimization of bandwidth usage and save time expenditures.

Git Collaboration

Task 3 screenshots can be found below:

GitHub & Collaboration

Udacity course

Learngitbranching Remote

Learngitbranching Remote

Learngitbranching Main

Learngitbranching Main

What was new? 📗

  • How the collaboration with other developers happens;
  • The difference between the forked repo and the source one and its syncing;
  • The king of commits management aka rebase;
  • Tools for the rapid finding of the necessary information in commits history (previously used git log and piped it to grep).

What did surprise me? 😺

  • The power of git rebase and its user-friendliness provided by the interactive mode.

Intentions for further usage 🙋 :

Seems like I've become invincible after that task! Just kidding:) More practice is vitally necessary.

  • Work with code published in remote repo's;
  • Develop on shared repo's;
  • Collaborate with people around the globe;
  • Keep commits history well-tended.

Intro to HTML and CSS

Task 4 screenshots can be found below:

Intro to HTML & CSS

Intro to HTML & CSS

Learn HTML

Learn HTML

Learn CSS

Learn CSS

What was new? 📙

  • Several semantic tags and purposes of their usage;
  • Typography details such as the addition of word-spacing property value to the default spacing;
  • Certain information about particularities of grid layouts implementation.

What did surprise me? 🙆‍♀️

  • Making of layouts with grids and flex boxes can be so comfy and even that much flexible. Now I'm 1000% sure that they earned their title!

Intentions for further usage 💻 :

  • Application of tags attributes alongside semantic tags in the markup for gaining higher search engine ranking and as assistance for people with disabilities;
  • Creation of responsive web pages' layouts with such PRO techniques as CSS Grid and Flexbox.
  • Implementation of CSS animation as a lightweight solution for developing interactive pages.

Responsive Web Design

Task 5 screenshots can be found below:

Responsive Web Design Fundamentals

Responsive Web Design Fundamentals

Flexbox Froggy

Flexbox Froggy

What was new? 📕

  • Tips for making responsive data tables;
  • RWD patterns: Column Drop, Layout Shifter, Mostly Fluid, Off Canvas;
  • Average width of the index finger is in the range 16 - 20 mm for most adults, therefore buttons and all "clickable" targets have to be not less than 45 pixels (or have enough space around them) for being finger-friendly;
  • Peculiarities of working with viewport and perception of DIP.

What did surprise me? 😯

  • Actually, it's not quite obvious that making the website layout in reverse order (from mobile to desktop) can save you a lot of time and nerves. Thank u for recommending that course!

Intentions for further usage 💡 :

  • Creation of responsive websites for any kind of device with both major and minor breakpoints to fit the need of even the most exacting users and give it a perfect look.

The Responsive Web Design Fundamentals course referred to that course on one of its stages, which provides extremely valuable information on the optimization of images.


HTML&CSS Popup

Hooli-style Popup can be found here. 🔔

Task sources available here.


JS Basics

Task 7 screenshots can be found below:

Intro to JS

Intro to JS

Basic JavaScript

Basic JavaScript

ES6 Challenges

ES6 Challenges

Basic Data Structures

Basic Data Structures

Basic Algorithm Scripting

Basic Algorithm Scripting

Functional Programming

Functional Programming

Algorithm Scripting Challenges

Algorithm Scripting Challenges

What was new? 📘

ES6 brought happiness to my life by providing such features as:

  • const and let as an appropriate way of defining variables with limited scope peculiarities that make code much stable;
  • Arrow functions with their concise syntaxis allowing to omit near a half of function's syntaxis constructions in its declaration;
  • Template literal strings in conjunction with interpolation (totally in love with it);
  • Built-in module system capable of easily import and export any necessary code;
  • Incredibly powerful and flexible spread operator ...

What did surprise me? 👏

Intentions for further usage 🏃 :

  • Development of easily maintainable, stable code with high performance by using the ES6 standard and FP approaches.

DOM

Task 8 screenshots can be found below:

JavaScript and the DOM

JavaScript and the DOM

Algorithm Scripting Challenges

Algorithm Scripting Challenges

JavaScript DOM task demo can be found here.

Task sources available here.

What was new? 📒

  • Methods of DOM manipulation, DOM's structure, and how it can be accessed;
  • Ways of creating content and adding it to the DOM;
  • Peculiarities of page rendering with reflow and repaint and ways of its optimization while adding new content;
  • Phases of events, how it influences of listeners invocation;
  • Events delegation model for the avoidance of redundant events listeners creation.

What did surprise me? 😳

  • The concurrency model presented by event loops and the whole scheme defining how events performed.

Intentions for further usage 👀

  • Unlimited abilities! Let's start from the usage of JavaScript for creating pages with dynamic data and manipulating its content.

Object Oriented JS

Task 10 screenshots can be found below:

Object Oriented JS

Object Oriented JS

Codewars

Link to account

Codewars

Object Oriented JS task demo can be found here. Enjoy! 🎅

Task sources available here.

What was new? 🎄

  • Scopes and closures;
  • This such a great thing which allows you easily referencing the certain object for manipulation and what it is considered to be due to the invocation context;
  • Super- and subclasses themselves and their usage for duplication reduction

What did surprise me? 🎁

  • Inheritance chaining model presented by prototype and how it influences on the end objects

Intentions for further usage 🔔

  • Creation of flexible code that can be easily reused and extended

OOP exercise

OOP task demo can be found here.

Task sources available here.

Gaining benefits from incremental learning 😌


Offline Web Applications

Task 12 screenshots can be found below:

Offline Web Applications

Offline Web Applications

The information that definitely needs absorbing.

What was new? 📶

  • Service Workers API, SWs lifecycle
  • Browser cache, its structure, and how to interact with it
  • IndexedDB and how it can be used for providing offline-first web app

What did surprise me? ☝️

  • The fact that Service Workers act as proxies, therefore any request can be responded with custom content
  • To perform any operation with DB you have to start a transaction

Intentions for further usage 🎉

  • Creation of offline web applications for better UX by applying Service Workers API means, caches, and built-in DB, for instance, IndexedDB

Hints and tips

Sincerely hope that these tips will help someone to run the Wittr project much faster than I did (tested with Linux):

  1. Install nvm to manage the different node version. Installation instructions can be found here.
  2. Important! Install node v10.17.0.
  3. If you've several versions of node installed, don't forget to switch to the correct one via nvm use v10.17.0.
  4. To check which node version you are using try node -v.
  5. Fix problems with node packages via installing missed one with npm i packageName@version. The whole list of packages versions is available here.

If you are feeling totally oppressed, check this one.

P.S. If there are no images after running the application, add this code to your /server/Server.js file.


Memory pair game

Memory pair game can be found here.

Task sources available here.

Enjoy training your memory! 👾


Friends App

Friends app can be found here. 👬

Task sources available here.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published