Created
January 6, 2012 18:15
-
-
Save pcmccull/1571738 to your computer and use it in GitHub Desktop.
Remove all _notes directories from a project that has been 'touched' by Dreamweaver
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
find . -name _notes -type d -exec rm -rf {} \; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Gotta start somewhere, Dreamweaver was my training wheels while I was self-learning web dev.
I now use Intellij IDEA Ultimate and VS Code exclusively, but Dreamweaver was a nice interactive way to learn the majority of basic features available in HTML and CSS.
But I will agree, after using more dynamic elements and DOM scripting, Dreamweaver is horrible; design view is broken for most newer CSS features, live mode stops working properly out of nowhere and Dreamweavers design view fails to work nicely with document/site roots & relative paths.
The best analogy is a bike with training wheels: You can't go fast, turn, or do fancy tricks. But it shows you the basics until you're ready for the big wheels [ IDE's ]