I'm trying to get the id of a view by supplying its name. Right now I have to insert the view into a node, then inspect it with dsm to see its ID, which I then hardcode where I need it. That's not a good workflow. If at least I could get the view's ID without inserting it somewhere first and inspecting it with dsm, that would be better. I tried finding the view's ID from the views list, but couldn't see it anywhere, all I see is the view's name.
Is there a way to get the ID from the views interface or programmatically by loading the view based on its name, then checking its ID. But my concern with the latter option is that I don't want to burden the page with loading and rendering the view just to read the ID. I don't know how heavy that would be.