GithubHelp home page GithubHelp logo

beforesemicolon / tutorials-files Goto Github PK

View Code? Open in Web Editor NEW
46.0 46.0 39.0 404 KB

before semicolon tutorial files

HTML 15.81% CSS 7.38% JavaScript 74.51% TypeScript 2.29%
css files html javascript tutorial ui ui-elements web web-development

tutorials-files's People

Contributors

ecorreia45 avatar nick-w-nick avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

tutorials-files's Issues

Expand animation broken in card-expand.html

Hi @ECorreia45 ,

The expand animation of the card-expand example is broken. It just jumps to the completed state instead of doing a smooth transition.

The close animation however works perfectly fine.

P.S.- Great youtube channel. Keep up the good work.

Cannot set properties of null (setting 'next)

In following along the tutorial for creating a doubly linked list, when I try to run the new insert method, I get the above error. Here is my insert code

insert(element, index = 0){
        if(index > this.size) return false

        const node = this.createNode(element)

        if(index === 0){
            if(this.head){
                node.next = this.head
                this.head.prev = node

            } else {
                this.tail = node
            }
            this.head = node 
        }  else if(index === this.size){
            
            this.tail.next = node
            node.prev = this.tail
            this.tail = node

        }   else {
            const current = this.getNodeAt(index)
            const prev = current.prev

            node.prev = prev
            node.next = current
            prev.next = node
            current.prev = node
            
        }
        this.size++
        return true
    }
    
    Here is the screenshot of the error 

![Screenshot 2022-12-12 211656](https://user-images.githubusercontent.com/99618731/207046001-391a3f16-2fa4-455a-955c-5411e5c1784c.png)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.