Is the IMDB web structure consistent enough to allow web scraping?
Scratch that, they all appear to be dead.
A node guru could probably get something working via https://www.npmjs.com/package/imdb-api
Tiddlyclip has been updated, and is available from github.... BUT it is a pre-release at the moment as I am still adding to it.
Thanks so much for upgrading tiddlyclip. There a lot of keen users looking forward to it so I am as sure you are generating lots of good karma :)
Tony
\define makelink(clip link) [[$clip$|$link$]]source: invalid val @text @linkURLmakelinkmarco not foundThanks for maintaining this code, BJ!
A few comments.
There seem to be a LOT of undocumented @variables.
The Image and Link modes don't seem to hide/unhide the rule, but maybe I'm not using it correctly.
As of version 0.1.2 not everything is working as it used to.
How do I make a Link inside a rule? The "|" destroys the table formatting causing the whole rule to not be run. ""
There is a reference to "Sections", but I only see how to identify categories. How/where are sections used?
It would be handy if there was a linkTEXT (or linkText) variable so that a complete link with name could be captured
Thanks!
Mark
I'm attempting to use macros in tiddlyclip
I have a macro makelink tagged globally with $:/tags/Macro.
exports.name ="makelink";
exports.run = function(clip,link) {
var ret = "[["+clip+"|"+link+"]]";
return ret ;
}
Is there any other magic? I have the javascript macro, but the variables inside it are "invisible".
My macro:exports.name ="makelink";
exports.run = function(clip,link) {
var ret = "[["+clip+"|"+link+"]]";
return ret ;
}
(tagged with $:/tags/tiddlyclip)
When I run it via a clip, the result is "undefined", suggesting that it doesn't see one or more of the values that are passed.
Also, I'm looking through the code, but I can't find where linkURL and other variables are defined. Any hints?
Thanks!
-- Mark