Nerdish Rockstar

Lancez-Vous. C'est gratuit
ou s'inscrire avec votre adresse e-mail
Nerdish Rockstar par Mind Map: Nerdish Rockstar

1. Design

1.1. Identity

1.1.1. Logo

1.1.1.1. Appropriate

1.1.1.2. Memorable

1.1.1.3. Simple

1.1.2. UX Design

1.1.2.1. Brand Attributes

1.1.2.1.1. Culture

1.1.2.1.2. Customer

1.1.2.1.3. Voice

1.1.2.1.4. Benefit

1.1.2.1.5. Value

1.1.2.2. User Profiles

1.1.2.2.1. User Journey

1.1.2.3. Goals

1.1.2.4. Site Audit

1.1.2.5. Review User Needs

1.1.2.6. Create User Stories

1.1.2.7. SiteMap

1.1.2.7.1. Feature prioritization

1.1.2.8. Wireframes

1.1.3. UI Design

1.1.3.1. Css

1.1.3.1.1. Layout

1.1.3.1.2. Element properties

1.1.3.1.3. Animation

1.1.3.1.4. Transition

1.1.3.1.5. Combinators

1.1.3.1.6. Responsivness

1.1.3.1.7. Selectors

1.1.3.1.8. transform

1.1.3.2. Html

1.1.3.2.1. Element types

1.1.3.3. SASS

1.1.3.3.1. Variables

1.1.3.3.2. Mixins

1.1.3.3.3. Inheritance

1.1.3.3.4. Function

1.1.3.3.5. Array

1.1.3.3.6. Loop

1.2. Branding

1.2.1. Inside Culture

1.2.2. Customer

1.2.3. Voice of brand

1.2.4. Emotional benfit

1.2.5. Value to life

1.2.6. X Factor

2. Music

3. Programming

3.1. Javascript

3.1.1. Variables

3.1.1.1. delcaration

3.1.1.1.1. var

3.1.1.1.2. let

3.1.1.1.3. const

3.1.1.2. data types

3.1.1.2.1. string

3.1.1.2.2. number

3.1.1.2.3. boolean

3.1.1.2.4. undefined

3.1.1.2.5. null

3.1.1.3. concatenation

3.1.1.3.1. `caluculator made by ${from}`

3.1.2. console

3.1.2.1. console.log

3.1.2.2. console.warn

3.1.2.3. console.error

3.1.3. functions

3.1.3.1. definition

3.1.3.1.1. function getName(firstname,lastname) { return firstname + " " + lastname; }

3.1.3.1.2. const getName = (firstname,lastname) => { return firstname + " " + lastname; }

3.1.3.1.3. const getName = (firstname,lastname)=> return firstname + " " + lastname;

3.1.3.1.4. const getName = (firstname,lastname) => firstname + " " + lastname;

3.1.3.1.5. const getName = () => "Dev Kishore";

3.1.3.1.6. students.forEach((student) => console.log(student.name));

3.1.4. oojs

3.1.4.1. definition

3.1.4.1.1. simple

3.1.4.1.2. prototype

3.1.4.1.3. class

3.1.4.2. instatiating

3.1.4.2.1. const maruti = new Car("800","1950","sedan");

3.1.4.3. calling

3.1.4.3.1. const maruti = new Car("800","1950","sedan"); console.log(maruti.modelName); console.log(maruti.getModel()); console.log(maruti.getModelType());

3.1.4.4. inheritance

3.1.4.4.1. by Class

3.1.4.4.2. by Function

3.1.4.4.3. function Sadhak(name,gender,nationality,age) { Person.call(this,name,age,gender); this.naitionality = nationality; this.isIndian = ()=>(this.nationality=="Indian") ? "yes" : "no"; }

3.1.5. conditionals

3.1.6. data structures

3.1.6.1. objects

3.1.6.1.1. defintion

3.1.6.1.2. accessing values

3.1.6.1.3. Destructuring

3.1.6.1.4. functions

3.1.6.2. arrays

3.1.6.2.1. definition

3.1.6.2.2. looping

3.1.6.2.3. high order functions

3.1.6.3. arrayed objects

3.1.6.3.1. Converting objects into json