Dom tutorial is getting better day by day. My favourite KZbin tutor.
@dcode-software3 жыл бұрын
You're favourite? 👀 Wow thanks mate!
@takhminam60682 жыл бұрын
Thank you for the comprehensive explanation about using local storage. You rocked it. No one could do it better than you did .
@imchiragkumar3 жыл бұрын
i love that thank you sir make courses like this
@lulusaikou2212 жыл бұрын
Nice tutorial~ Simpler than "notes app" but easier to understand. Thank you Dom❤
@RianY2K3 жыл бұрын
Love your tutorial, keep the good work 👍
@TomasMisura3 жыл бұрын
it was already said your tutorials are getting really significantly improved. it's still Dom but improved Dom :). I like how you're trying do things byt different way than the others and it's perfectly fine.
@cloudpuncher46153 жыл бұрын
Nah mate, he was good from the start... His early tutes were about basic concepts e.g. Array.shift() ect. Lately he's been building projects BUT if you're not the type of person who needs their hand held through projects all the little snippets are gold, especially for beginners...
@dancehalllyrics13033 жыл бұрын
Keep the great tutorials coming! They're worth more than gold! By the way: Which font are you using in your text editor?
@dcode-software3 жыл бұрын
Hey thanks, using Roboto Mono
@jjuliefrance2 жыл бұрын
Such a pleasure to listen and follow... Many thanks from France :)
@bigcco2 жыл бұрын
It really helped me a lot. Thank you.
@mumbaitiger3 жыл бұрын
Awesome. Wish you could add code for different notes and add a bar so each note can gave a title e.g. to do list and then in the body we can have different tasks.
@js-javascript17063 жыл бұрын
loving the project videos mate!
@dcode-software3 жыл бұрын
Cheers mate glad you like them
@amymathews18832 жыл бұрын
thank you for the detailed tutorial it really helped!!
@rangabharath42533 жыл бұрын
Awesome as always 👍
@zygimantas22163 жыл бұрын
Keep up the good work ;)
@amircahyadi92193 жыл бұрын
Its awesome dude👍
@rahatfaruk22182 жыл бұрын
Well explained. It was really an awesome beginner friendly project :) Following You! DOM :)
@ishratkaur16052 жыл бұрын
at 31:32, why is it necesaary to add [0] while filtering the notes.
@senrign2 жыл бұрын
Thanks, this was helpful
@Dreamerforever32 жыл бұрын
Thanks a lot . this helped me so much
@girishdevappa5562 Жыл бұрын
Thanks!
@isos65343 жыл бұрын
Can you make more vue.js projects?
@amraldroubie31272 жыл бұрын
very nice thank you so much
@nathanstanfordsr3 жыл бұрын
Loving you videos. Do you know how to make a 508 complaint drag and drop?
@nohatetv82912 жыл бұрын
Love your tutorial, keep the good work bro👍👍👍
@dcode-software2 жыл бұрын
Thanks, will do!
@DawitTeklayYohannes7 ай бұрын
Good job. But I have one question: How worked without calling function could you explain it please
@MoacirNetoskt2 жыл бұрын
amazingggggggggg
@rawsmoke81482 жыл бұрын
Hi dcode thank you for this. I would suggest next time to code following a user behaviour (I click + then the text area appears then I can change the content, then I can edit etc...) as it is going a bit in every directions.
@알카라즈-l1u Жыл бұрын
thanks for the tutorial like this! question: I get this error"Uncaught TypeError: Cannot read properties of null (reading 'querySelector')" at line const addNoteButton = notesContainer.querySelector(".add-note"); I am not able to add note / see note that I added so I think code has issue with addNoteButton but not sure.. can you comment?
@inhle94793 жыл бұрын
Hello sir ! I run unsuccessfully, it error "Uncaught SyntaxError: Unexpected token N in JSON at position 20 at JSON.parse () at getNotes (main.js:12) at main.js:4" you can teach me fix it. Thank you very much !
@vaibhavdhole91172 жыл бұрын
" Uncaught TypeError: getNotes(...).forEach is not a function " error showing at 25.25min please help
@vietmobile1592 жыл бұрын
@@vaibhavdhole9117 same here but dont know how to fix:))
@vietmobile1592 жыл бұрын
@@vaibhavdhole9117 Try to delete all textarea elements in your HTML file then try refresh the page, it work with me
@chubbyBunny942 жыл бұрын
@@vietmobile159 make sure your function is returning an Array. if getNotes(...) isn't returning something that you can iterate over ( like an array) it won't work. Make sure getNotes is also returning something altogether. My get notes looked like this: getNotes() { if (localStorage.localStickyNotes === undefined) { console.log('failed to get sticky notes') localStorage.setItem('localStickyNotes', JSON.stringify([{}])); return JSON.parse(localStorage.getItem('localStickyNotes')); } else { console.log('sticky notes retrieved successfully'); return JSON.parse(localStorage.getItem('localStickyNotes')); } } Make sure to use the return keyword and maybe console.log what it's returned to see if it's an array. I didn't follow the tutorial exactly but my code returns an array of objects and arrays are iterable.
@TheOneAndOnlyMaster-xm8lp3 жыл бұрын
Hi just asking how can I make any video private just by coding on notepad++ or visual studio code
@bmehder3 жыл бұрын
Thank you, Dom. BTW, Aussies have weird hobbies. 0:57
@dcode-software3 жыл бұрын
🤣🤣
@hammadahmad53833 жыл бұрын
First 🙂🙂🥰
@TarunKumar-ul4jw2 жыл бұрын
some one help in his url bar local host is mention but for me it is showing files:// and i guess because of that i code is note running
@dr.briaro2 жыл бұрын
is there a shorter way to make this? kis principle?
@storypur3 жыл бұрын
Is Lenovo legion 5 pro good for android and web development purposes? Processor and memory features - • 11th generation, core i7 • 16GB RAM, 1TB SSD • 6GB graphic/ NVIDIA GeForce RTX 3060 Or I should go for MacBook Air or Pro m1 With 16GB unified memory and 1TB SSD...?
@vaibhavdhole91172 жыл бұрын
" Uncaught TypeError: getNotes(...).forEach is not a function " error showing at 25.25min please help
@chubbyBunny942 жыл бұрын
lol #overkill mate.
@chubbyBunny942 жыл бұрын
@@vaibhavdhole9117 if getNotes(...) isn't returning something that you can iterate over ( like an array) it won't work. Make sure getNotes is also returning something altogether. My get notes looked like this: getNotes() { if (localStorage.localStickyNotes === undefined) { console.log('failed to get sticky notes') localStorage.setItem('localStickyNotes', JSON.stringify([{}])); return JSON.parse(localStorage.getItem('localStickyNotes')); } else { console.log('sticky notes retrieved successfully'); return JSON.parse(localStorage.getItem('localStickyNotes')); } } Make sure to use the return keyword and maybe console.log what it's returned to see if it's an array. I didn't follow the tutorial exactly but my code returns an array of objects and arrays are iterable.
@JanJanotik Жыл бұрын
How to modify the code so that all notes from all client devices were stored on the web server storage and will be able to work with same notes on all devices ?
@JuneBeforeJuly2 жыл бұрын
could i and my gf use this and it would update with what we both put on it through separate devices?
@chubbyBunny942 жыл бұрын
no, localStorage doesn't work on separate devices. You'd need a database like firebase
@cloudpuncher46153 жыл бұрын
Your a machine mate.... your like an Aussie version of Steve Griffith. Are you in lock down? working from home? having a break?
@dcode-software3 жыл бұрын
Cheers mate! Yeah still working from home basically in my office so day 🤣
@vaibhavdhole91172 жыл бұрын
" Uncaught TypeError: getNotes(...).forEach is not a function " error showing at 25.25min please help
@cloudpuncher46152 жыл бұрын
@@vaibhavdhole9117 I think you might need to expand on that one mate. If you have a typo inside your inline function you'll get X is not a function. Just put up the the entire forEach(x => { x.doSomething }) code block.
@mauriciohinojosa53542 жыл бұрын
How would I deploy this? Do I host this?
@ItsAria2 жыл бұрын
my key doesnt show.. is that an issue
@bilalelemrani Жыл бұрын
note : delete note will not work in touch screens
@49thparallelgaming2 жыл бұрын
The Double Click to delete a note doesn't work
@J3dstar2 жыл бұрын
The .note part of the css doesn't work
@NZMPlays2 жыл бұрын
Cant follow these, you honestly move too fast for beginners. I dont know how you get your sentences to finish automatically but it would be a big help because you move way too fast and dont explain what youre doing much.
@mdshihabuddin86732 жыл бұрын
You can try to understand by source code that he provide in the video description. It's my trick to understand tutorial by source code but first i complete video then i follow the source code to understand.
@kishalayray75703 жыл бұрын
Dom is stick to DOM
@Zolipants2 жыл бұрын
how the hell it s possible i copied pasted your code and it is not working for me??:DD
@thorbenmoe41952 жыл бұрын
const addNoteButton = notesContainer.querySelector(".add-note"); this command doesnt work for me
@thorbenmoe41952 жыл бұрын
try to run the script after the div, then works
@chubbyBunny942 жыл бұрын
@@thorbenmoe4195 have you used the same class names in your html?
@ulyssescortes48352 жыл бұрын
@@thorbenmoe4195 Thanks that solved my issue
@CodeEnthusiast789122 жыл бұрын
@@thorbenmoe4195 thank you i was going to lose my mind it was saying notesContainer is null