Skip to content

Instantly share code, notes, and snippets.

@pcmccull
Created January 6, 2012 18:15
Show Gist options
  • Save pcmccull/1571738 to your computer and use it in GitHub Desktop.
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
find . -name _notes -type d -exec rm -rf {} \;
@kevinruscoe
Copy link

Dreamweaver?! We're about to approach 2021!

@Jayonics
Copy link

Jayonics commented Jan 23, 2021

Dreamweaver?! We're about to approach 2021!

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 ]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment