[twdev] Re: Making a formulas/computing plugin; seeking feedback & advice

2017-12-14 Thread Diego Mesa
Hey Evan, In your Try Me example box, <> does not work. On Thursday, December 14, 2017 at 10:06:27 PM UTC-6, Evan Balster wrote: > > Hey, all — > > Version 0.1.0: > > https://evanbalster.com/tiddlywiki/formulas.html > https://github.com/EvanBalster/TiddlyWikiFormula > >- Adds a bunch of

[twdev] Re: Making a formulas/computing plugin; seeking feedback & advice

2017-12-15 Thread Diego Mesa
Good point Mario - I was just testing passing an argument to a macro, and <> was the one shown in the examples. On Friday, December 15, 2017 at 3:18:50 AM UTC-6, PMario wrote: > > On Friday, December 15, 2017 at 3:27:14 AM UTC+1, TonyM wrote: >> >> I am really keen to use this as it seems to

Re: [twdev] Re: Github plugin?

2017-12-14 Thread Diego Mesa
Hey Mat, I also posted a similar idea in another thread of using git as backend for TW, and benefiting from all of its many years of tools built around multiple users editing text files at the same time, and get tiddler revisions for free On Wednesday, December 13, 2017 at 1:43:10 PM UTC-6,

[twdev] Re: Core design ideas: Inter Wiki links, sub pages, pinned fields

2017-12-17 Thread Diego Mesa
Hey all, Great discussion - as far as transcluding tiddlers from other wikis - this is something I've been thinking about as it relates to having some kind of "update" mechanism for plugins. Correct me if Im wrong, but would that enable all plugins to be stored on github and have them be

[twdev] TW6 in Electron?

2018-05-08 Thread Diego Mesa
Hey everyone, Just wondering if you have any experience with the Electron framework: https://electronjs.org/ And if you could imagine TW being an electron app? How does that compare against the current TiddlyDesktop? -- You received this message because you are subscribed to the Google

[twdev] Re: Why "sharing of tiddlers" is a linchpin for success

2018-06-09 Thread Diego Mesa
I have long thought we need a way to upgrade plugins, which would require fetching tiddlers! I agree its super important! On Saturday, June 9, 2018 at 3:05:20 PM UTC-5, @TiddlyTweeter wrote: > > Ciao Mat > > Further to my last, and hopefully on-point. > > IF I, say converted David's list, WHAT

Re: [twdev] Simple Way to Share Tiddlers with Node and Git (cross post from normal group)

2018-06-08 Thread Diego Mesa
On Friday, June 8, 2018 at 11:00:00 AM UTC-5, Jeremy Ruston wrote: > > Hi Diego > > That’s an impressively cunning technique, and very useful. > > Best wishes > > Jeremy. > > On 8 Jun 2018, at 16:51, Diego Mesa > > wrote: > > Hey everyone, > > This is a

[twdev] Simple Way to Share Tiddlers with Node and Git (cross post from normal group)

2018-06-08 Thread Diego Mesa
Hey everyone, This is a cross post from the other group. Ive brought up something like the point below there in the past and it never really gets any traction, so I thought I might as well post here and see what you all think. I recently tested an idea for a very simple way to share tiddlers,

[twdev] Re: Should TiddlyWiki consider moving to GitLab?

2018-06-07 Thread Diego Mesa
Hey Mario, Correct me if Im worng, but cant we just split the repo into the part Jeremy wants people to help with, and have that be a *submodule* of the main project that only he can access? Diego On Thursday, June 7, 2018 at 5:17:33 AM UTC-5, PMario wrote: > > Hi Stephan, > > Imported

[twdev] Re: Anki like SRS in tiddlywiki

2018-06-06 Thread Diego Mesa
Hey Ondrej, As Simon said we'd love to have your feedback and ideas to improve anwiki! On Saturday, April 28, 2018 at 2:27:14 AM UTC-5, Ondrej Stanek wrote: > > Hi Simon, > > thanks for the link, it is great to see someone is already working on > this problem and takes it really seriously as

[twdev] Re: Request for help with new filter operator and new tutorial

2018-06-26 Thread Diego Mesa
Hey all, Thanks Jeremy for sending that. The following is *more pseduo-code than anything*, but reflects my quick hacking: (function(){ /*jslint node: true, browser: true */ /*global $tw: false */ "use strict"; var fuze = require("$:/plugins/fuzzy/fuze.js"); var options = { shouldSort:

Re: [twdev] Re: Request for help with new filter operator and new tutorial

2018-06-27 Thread Diego Mesa
and would require a > re-index each time the tiddler store changes. > > Best wishes > > Jeremy > > -- > Jeremy Ruston > jer...@jermolene.com > https://jermolene.com > > On 26 Jun 2018, at 20:45, Diego Mesa > > wrote: > > Hey all, > > T

[twdev] Request for help with new filter operator and new tutorial

2018-06-25 Thread Diego Mesa
I would like to make a new filter operator: fuzzysearch which makes use of this library: http://fusejs.io/ in the hopes of submitting something to: https://github.com/Jermolene/TiddlyWiki5/issues/3233 The problem is, I'm *not at all *sure how to do it! I know I can make a new tiddler with:

[twdev] Re: My First Release Plugin

2018-01-20 Thread Diego Mesa
Just want to mention, I've used the excellent tinka plugin: https://tinkaplugin.github.io/ to package and edit plugins. I have also noticed it seems to conventional to include minimal documentation, but I am not so sure why. I always have to end up refering to another website to look up

[twdev] Re: Merge some advanced search into search

2018-07-26 Thread Diego Mesa
Mat, I agree what I suggested above was mostly visual. I am proposing an all-encompassing search bar composed of the above visual tweaks, unified search mode, as well as "fuzzy matching". In another thread in this group, we had a discussion about a plugin Rob Hoelz developed incorporating

[twdev] Re: Merge some advanced search into search

2018-07-26 Thread Diego Mesa
I 100% agree! I've long fantizied of a single, simple search everywhere bar, ala: https://codepen.io/adrianlambertz/pen/bNQjvp That we just bring up with a keyboard shortcut. The closest (visually) is: http://j.d.spartan.tiddlyspot.com/ However behaviorally, I think it could be greatly

[twdev] Re: Fields as First class citizens?

2018-01-13 Thread Diego Mesa
Ive been thinking a lot about this recently Tony. Just wanted to +1 this and bring this back into the communal consciousness! Diego On Sunday, August 27, 2017 at 11:59:01 PM UTC-5, TonyM wrote: > > Folks, > > Perhaps I am off track, but I may as well voice observations during my > learning

Re: [twdev] Re: Request for help with new filter operator and new tutorial

2018-06-28 Thread Diego Mesa
:47:06 AM UTC-5, Diego Mesa wrote: > > Hey Jeremy, > > Thanks for your feedback - I agree search needs to performant. Im glad > you're also looking at these issues! > > A priority for me is the inclusion of *fuzzy* searching - a quick look > seems lunr does support it:

Re: [twdev] Re: Request for help with new filter operator and new tutorial

2018-06-29 Thread Diego Mesa
ugin to add mutable > indexes. Of course, any collaboration on my plugin (along with advice on > how to improve it) would be most welcome! > > -Rob > > On Thursday, June 28, 2018 at 9:14:27 AM UTC-5, Diego Mesa wrote: >> >> Hey Jeremy, >> >> Just wanted

[twdev] Re: New Feature PR: shuffle[] filter operator for deterministically randomizing list orders

2019-01-22 Thread Diego Mesa
Hey Matt, Just to voice my opinion, I think it should be part of the core. This could be a great, easy, built-in way to encourage a "Random" option for the story river, sidebar, etc. just like wikipedia's https://en.wikipedia.org/wiki/Special:Random Diego On Monday, January 21, 2019 at

[twdev] Re: TW5 And Double Click to Edit

2019-01-17 Thread Diego Mesa
Just a quick note - locally I edited the plugin to have *triple*-click-to-edit and have found it works much better (for me), preventing accidental editing. On Thursday, January 17, 2019 at 5:15:30 AM UTC-6, Ton Gerner wrote: > > Hi Marc, > > On Thursday, January 17, 2019 at 8:20:50 AM UTC+1,

[twdev] Re: Looking for the Rosetta Stone

2018-12-20 Thread Diego Mesa
ariable1 and variable2 match On Thursday, December 20, 2018 at 12:03:06 PM UTC-6, joearms wrote: > > > > On Thursday, 20 December 2018 18:59:56 UTC+1, Diego Mesa wrote: >> >> Joe, >> >> Coming from other languages, in my mind the "reveal" widget is the &

[twdev] Re: Looking for the Rosetta Stone

2018-12-20 Thread Diego Mesa
Joe, Coming from other languages, in my mind the "reveal" widget is the closest thing to an IF. Wikify is a unique construction to TW. Also note that the great Evan Balster wrote a "Condition" Plugin: http://evanbalster.com/tiddlywiki/formulas.html#Condition%20Plugin which exposes <$if>,

[twdev] Re: Preparing TW for the next step

2018-12-11 Thread Diego Mesa
A great step in this direction is addressed in this GitHub issue: https://github.com/Jermolene/TiddlyWiki5/issues/3623 On Saturday, December 1, 2018 at 10:06:51 PM UTC-6, Diego Mesa wrote: > > Jeremy I'd love to hear your thoughts if you get a chance! > > On Friday, November 30, 201

Re: [twdev] adding a remote tiddler from github

2018-12-16 Thread Diego Mesa
Hey all, Is this not a good way to keep plugins and even the core auto-updated? On Sunday, December 16, 2018 at 12:09:06 PM UTC-6, Jeremy Ruston wrote: > > Hi Joe > > A couple of comments > > 1) I like the idea of collaborating at the level of "single tiddlers" > All I have to do is put a

Re: [twdev] adding a remote tiddler from github

2018-12-16 Thread Diego Mesa
Hey Jeremy, I could imagine the node version (requiring "extra" steps anyway) supporting auto-updating of plugins/core, while the single-file version is more like a "frozen" wiki you have to manually upgrade. On Sunday, December 16, 2018 at 1:22:12 PM UTC-6, Jeremy Ruston wrote: > > Hi

[twdev] Re: Preparing TW for the next step

2018-11-29 Thread Diego Mesa
Jed, If you look at: - issues on github - long abandoned contributions/plugins dying slow deaths on google groups - experiences trying to get a new person to try TW I'd say there is quite a bit of evidence of "barrier to entry" in many senses. Just as an example, look at: - all

[twdev] Re: Preparing TW for the next step

2018-11-29 Thread Diego Mesa
cros to get past limitations. ie > opening up the possibilities. But as great as he is he is but one man, and > we will all benifit if we can open the funnel. > > Regards > Tony > > > On Friday, November 30, 2018 at 4:59:43 AM UTC+11, Diego Mesa wrote: >> >> Jed, >

[twdev] Re: Preparing TW for the next step

2018-12-01 Thread Diego Mesa
Jeremy I'd love to hear your thoughts if you get a chance! On Friday, November 30, 2018 at 4:18:30 PM UTC-6, TonyM wrote: > > I total support your arguement. > > Broader contributions from the user community to documentation could also > happen if we had some nice instructions and more

[twdev] Re: Preparing TW for the next step

2018-11-29 Thread Diego Mesa
Absolutely! I also respect everything Jeremy has done, is doing and will continue to do for TW. Being the owner and maintainer of a large/popular open source project is in many ways a painful and rewardless job! On Thursday, November 29, 2018 at 12:58:53 AM UTC-6, Mohammad Rahmani wrote: > >

[twdev] Preparing TW for the next step

2018-11-28 Thread Diego Mesa
Hello TW Devs, I have a delicate question/comment/discussion to pose to Jeremy and the community. As we know, the development priorities are set entirely by Jeremy, and (at least most recently) new major features get developed by him as they become relevant to Jeremy's use and development of

Re: [twdev] Announcing the "innerwiki" plugin

2019-01-27 Thread Diego Mesa
Wow! Conceptually, I could see this as a "sandbox" mechanism where I could inject all of my tiddlers into the innerwiki and then try risky plugins/modifications/etc. How can we inject the outer wiki user contents into the inner wiki? Thanks! Diego On Sunday, January 27, 2019 at 1:30:25 PM

Re: [twdev] Announcing the "innerwiki" plugin

2019-01-27 Thread Diego Mesa
my wiki, I would inject all of my tiddlers into the innerwiki On Sunday, January 27, 2019 at 5:33:01 PM UTC-6, Brian Theado wrote: > > Diego, > > On Sun, Jan 27, 2019 at 6:23 PM Diego Mesa > wrote: > >> Conceptually, I could see this as a "sandbox" mechani

[twdev] Re: I'm Serious - We need Check in and Check Out

2019-01-31 Thread Diego Mesa
Ive always thought something like this could work: https://github.com/nodegit/nodegit where saving a tiddler could trigger a commit object. That way, conflicts, merges, etc could be handled the way it is usually handled in version controlled systems. On Thursday, January 31, 2019 at 10:14:34

[twdev] TW Edition Builder

2020-02-15 Thread Diego Mesa
All, I have long been in favor of offering users a less "spartan" version of TW (empty) and there has been much discussion on the groups about this as well. Ideas for "lab journal" versions, "game maker" versions, etc. Instead (or in addition to), what if we as a community pick 10-15 major

[twdev] Re: TW Edition Builder

2020-02-15 Thread Diego Mesa
Wow Mat! Thats exactly what I meant! Thanks! On Saturday, February 15, 2020 at 5:03:14 PM UTC-6, Mat wrote: > > This should be of relevance > > Extend Download button to offer adding plugins #3952 > > > <:-) > -- You received this message

[twdev] Tobias Beer Update

2020-01-10 Thread Diego Mesa
Hello all, I know its normal for people to come and go, just wondering if anyone knows anything about the great Tobias Beer? Best, Diego -- You received this message because you are subscribed to the Google Groups "TiddlyWikiDev" group. To unsubscribe from this group and stop receiving

[twdev] Re: Tobias Beer Update

2020-01-15 Thread Diego Mesa
Thanks Mario and Jeremy! Glad to know hes doing well. Please let him know the TW community (I hope I can speak for everyone on this one point!) appreciates him! On Wednesday, January 15, 2020 at 4:42:32 AM UTC-6, PMario wrote: > > On Tuesday, January 14, 2020 at 7:06:42 PM UTC+1, PMario wrote:

Re: [twdev] Tobias Beer Update

2020-01-14 Thread Diego Mesa
11, Alex Hough > > wrote: > > Hi All, > > I know that he's a very generous creative fellow ... other than that I > don't know. > > Alex > > On Sat, 11 Jan 2020 at 03:45, Diego Mesa > > wrote: > >> Hello all, >> >> I know its normal for people t

[twdev] Re: TW5-Plugins Updated

2020-01-06 Thread Diego Mesa
Hey Joshua, Thank you for pushing forward Evans great work! Could you help me locate the demo for the JSON Mangler? On Saturday, December 28, 2019 at 3:33:07 PM UTC-6, Joshua Fontany wrote: > > Hi everyone! > > I've updated some of the plugins under development to support the current >

[twdev] Re: Starting to write javascript macros

2020-01-06 Thread Diego Mesa
I just want to give this one a gentle bump! Luis' work with THE BOOK™ is an inspiration and anything he can do to illuminate this topic would be greatly appreciated! On Friday, January 3, 2020 at 9:12:25 AM UTC-6, Luis Gonzalez wrote: > > I need your help. I'm starting to write javascript

[twdev] Re: Caught in a bind - some Improvements I would like to add, any one want to mentor me?

2020-04-04 Thread Diego Mesa
Im bumping this for Tony! On Friday, March 27, 2020 at 12:56:56 AM UTC-5, TonyM wrote: > > Humbly I say "bump". > > please at least give me some direction > > Tony > > -- You received this message because you are subscribed to the Google Groups "TiddlyWikiDev" group. To unsubscribe from this

[twdev] Request for help: Packaging Stroll as a plugin

2020-05-21 Thread Diego Mesa
All, David Gifford has done a lot of great work with Stroll. I offered to try and help him package it into a plugin and upload to github for easier distirbution, upgrading, etc. I, being a novice in TW development, just tried to package it using Tinka, but quickly realized its not as simple as

[twdev] Re: Request for help: Packaging Stroll as a plugin

2020-05-21 Thread Diego Mesa
le should consist of empty.html + stroll plugin + 3rd party plugins > > Note that most of the benefit of hosting on github is lost if the plugin > is not individual tiddlers in the repository. > > On Thursday, May 21, 2020 at 8:01:05 PM UTC+2, Diego Mesa wrote: >> >> All, >&