[tw] Re: [TW5] Hide or Show Button when tiddler exists

2017-08-04 Thread Eric Shulman
On Thursday, August 3, 2017 at 11:28:10 PM UTC-7, TonyM wrote:
>
> As you can see in my example the name of this tiddler I am testing for is 
> "$(currentTiddler)$ 
> - $type$" 
> Can you show me how to specifiy this in the filter, because this is where 
> I still get it wrong.
>

To provide a specific title (other than the currentTiddler value), use 
"[title[sometitle]...]" instead of "[all[current]...]"
For your purposes, since both $(currentTiddler)$ and $type$ are replaced by 
their values *before* the filter is processed, you can write something like 
this:

<$list filter="[title[$(currentTiddler)$ - $type$]is[tiddler]]">

-e

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/900e914a-f34d-43b7-958f-954a7a799def%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Hide or Show Button when tiddler exists

2017-08-04 Thread TonyM
Thanks Soo much Eric,

In this case I discovered the answer 3 seconds after you posted., but 
before I saw your answer.

Another mile stone for me.

Regards
Tony

On Friday, August 4, 2017 at 5:29:25 PM UTC+10, Eric Shulman wrote:
>
> On Thursday, August 3, 2017 at 11:28:10 PM UTC-7, TonyM wrote:
>>
>> As you can see in my example the name of this tiddler I am testing for is 
>> "$(currentTiddler)$ - $type$" 
>> Can you show me how to specifiy this in the filter, because this is where 
>> I still get it wrong.
>>
>
> To provide a specific title (other than the currentTiddler value), use 
> "[title[sometitle]...]" instead of "[all[current]...]"
> For your purposes, since both $(currentTiddler)$ and $type$ are replaced 
> by their values *before* the filter is processed, you can write something 
> like this:
>
> <$list filter="[title[$(currentTiddler)$ - $type$]is[tiddler]]">
>
> -e
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/d3b1a1bf-9d25-4da8-84d1-c5cfbbdaa489%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Close child tiddler, when opened sibling from same parent

2017-08-04 Thread Aigar Rogozov
How I can exclude current tiddler with this macro?

And how I can close all tiddlers with current tiddler tags?

<$button>
close tiddlers
<$list filter=[tag[t1]]>
<$action-sendmessage $message="tm-close-tiddler"/>




-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/df319ede-9294-4580-8086-b9766df2db67%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Is there a way to assign a generated list to a field? Next/Previous navigation between ToC chapters attempt.

2017-08-04 Thread Vayu Asura
Managed to make it work with two modifications:

<$list variable="parent" filter="[all[current]tags[]!limit[1]]">
   <$list filter="[titletagging[]beforesort[list]]">
  prev: <$link><>
   
   <$list filter="[titletagging[]aftersort[list]]">
  next: <$link><>
   


For some reason limit[1] yields the last tiddler not the first and my toc 
is sorted by list field

I don't understand what `variable` list widget parameter is generally doing 
(or specifically here either...). Does it just declare a variable and puts 
filter result into it? Do you just separate and abstract the common filter 
part with it or is it for something else? I have two tags on a tiddler I 
call it from. When I transclude it within the list it yields the resulting 
tag, but when I remove the !limit[1] part it regenerates both inner lists 
for each of two resulting tags. Wierd. Does it work as an iterator of sorts?

Not exactly what I had in mind as this requires the thing to be present on 
every entry rather than on the toc tiddler. But I'll try to adapt your 
solution to that as well and post here what I manage.

On Thursday, August 3, 2017 at 11:00:13 PM UTC+3, Eric Shulman wrote:
>
> On Thursday, August 3, 2017 at 10:43:51 AM UTC-7, Vayu Asura wrote:
>>
>> ...
>>
> next[] and previous[] operators... require hard-coded list field to work 
>> properly
>> ...
>> If there is a more reasonable way to do it esp without hard-coded lists, 
>> I'm very open to suggestions. 
>>
>
> before[] and after[] filters work like previous[] and next[] but use the 
> current filter result instead of a hard-coded list.
>
> Perhaps something like this will fit your needs:
>
> <$list variable="parent" filter="[all[current]tags[]limit[1]]">
><$list filter="[titletagging[]before]">
>   prev: <$link><>
>
><$list filter="[titletagging[]after]">
>   next: <$link><>
>
> 
>
> Notes:
> * the outer <$list> assumes that the first tag on the current tiddler is 
> the "parent" (a common usage for the <> macro)
> * the inner <$list> uses the tagging[] filter to get the siblings from the 
> parent, followed by the before[] or after[] filter to find the 
> previous/next sibling of the current tiddler
>
> let me know how it goes...
>
> enjoy,
> -e
> Eric Shulman
> TiddlyTools.com: "Small Tools for Big Ideas" (tm)
> InsideTiddlyWiki: The Missing Manuals
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/0953a9d9-8aff-468b-9050-5f9c6988708b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] invoke a macro from a button

2017-08-04 Thread vpl
Hi,

I cannot find a way to invoke a macro from a button

In the reference tiddly I've found what I need
For example the macro exemple "now Macro (Examples)"
A "try it" button invoke the now macro.

But this is done through another generic macro called ".example"
<$macrocall $name=".example" n="1" eg="""<>"""/>

*I can't find nowhere this code as an example that I could get some 
inspiration from ..*

Can someone help me ?

Regards

Vpl

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/08153b64-995a-499d-8fe6-62fe8bb05f2d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Sync error while processing '$:/StoryList': XMLHttpRequest error code: 404

2017-08-04 Thread @TiddlyTweeter
Ciao Steve

It was kinda both fun & question. Sort of prodding for an answer.

Maybe your drift to *The Node Side* with have good effects :-). I learned a 
LOT from your student's projects. Maybe you will get them a bit into it too?

Best wishes
Josiah


stevesuny wrote:
>
>
> Josiah: Not sure if your comment was tongue-in-cheek or not, but I'll take 
> it seriously, because it does resonate. You noted that node.js will 
> "corrupt my essence." To be honest, I agree: moving from the file-based to 
> the node.js version of TW radically changes the type of TW user I am. I 
> think it renders me less sensitive to the struggles of everyday TW users, 
> which is not helpful for me as a teacher. However, my projects are getting 
> sufficiently complex and large that the file-based system doesn't work for 
> me. So, I think I'll have to live with the "corrupted essence" of myself as 
> a TW user :).
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/70372250-c1b4-4021-84df-8b9f05ca9994%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: invoke a macro from a button

2017-08-04 Thread 'Mark S.' via TiddlyWiki
The .example macro is defined in $:/editions/tw5.com/doc-macros. But it 
just wraps a reveal widget around the macro, so it may not be what you want.

What do you want to accomplish? Macros look like functions in programming 
languages, but often they work very differently. 

Good luck,
Mark

On Friday, August 4, 2017 at 8:07:22 AM UTC-7, vpl wrote:
>
> Hi,
>
> I cannot find a way to invoke a macro from a button
>
> In the reference tiddly I've found what I need
> For example the macro exemple "now Macro (Examples)"
> A "try it" button invoke the now macro.
>
> But this is done through another generic macro called ".example"
> <$macrocall $name=".example" n="1" eg="""<>"""/>
>
> *I can't find nowhere this code as an example that I could get some 
> inspiration from ..*
>
> Can someone help me ?
>
> Regards
>
> Vpl
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/ca2d7f9b-2715-4853-8a59-6a46be143973%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: invoke a macro from a button

2017-08-04 Thread vpl
Thanks very much !
This solved my problem.
I've used the same mechanism as the doc-macro.

I've coded a javascript macro called "mymacro"
I use now the below code to invoke it when I click on the invoke. 

<$button set="$:/state/SampleReveal2" setTo="invoke">Invoke macro
<$reveal type="match" state="$:/state/SampleReveal2" text="invoke">
<>


Is it the best way to do that ?

Regards





Le vendredi 4 août 2017 17:54:22 UTC+2, Mark S. a écrit :
>
> The .example macro is defined in $:/editions/tw5.com/doc-macros. But it 
> just wraps a reveal widget around the macro, so it may not be what you want.
>
> What do you want to accomplish? Macros look like functions in programming 
> languages, but often they work very differently. 
>
> Good luck,
> Mark
>
> On Friday, August 4, 2017 at 8:07:22 AM UTC-7, vpl wrote:
>>
>> Hi,
>>
>> I cannot find a way to invoke a macro from a button
>>
>> In the reference tiddly I've found what I need
>> For example the macro exemple "now Macro (Examples)"
>> A "try it" button invoke the now macro.
>>
>> But this is done through another generic macro called ".example"
>> <$macrocall $name=".example" n="1" eg="""<>"""/>
>>
>> *I can't find nowhere this code as an example that I could get some 
>> inspiration from ..*
>>
>> Can someone help me ?
>>
>> Regards
>>
>> Vpl
>>
>>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/a60fe280-7a12-4320-a387-2f812a5ed492%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Native android app and licences

2017-08-04 Thread Joshua Stubbs
Hi, all.

I'm currently working on a native app for Android to parse tiddlywiki files 
because firefox is a bit slow when handling the javascript. I'd like to use 
this image for the logo:
https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/TiddlyWiki_Icon.png/1145px-TiddlyWiki_Icon.png

I'm guessing I can because it's in the public domain but I figured I should 
just make sure.

Many thanks. Joshua.

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/04deef33-2882-444c-9c6b-898b7e68e35d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: How to calculate (sum, avg) with fields and store the result in an other field?

2017-08-04 Thread Matthew Lauber
The issue is that the assignment doesn't work like that.  You can't assign 
to a field like that, regardless of whether it's math or text or anything 
else.  The equals sign is just another letter when it's used in html. 
 You'd probably need to play around with macros and the <$action-setfield> 
widget to get what you want to happen. AS you can see in your example. The 
<$calc> widget did add the two fields together resulting in the 8 you see 
in the example.

Matt Lauber

On Wednesday, August 2, 2017 at 4:05:14 PM UTC-4, Uwe wrote:
>
> Hello dear helpers,
>
> in some tiddlers I have some (< 20) fields with numbers in them, ie 
> {{!!field1}}=2, {{!!field2}}=4 and {{!!field3}}=5 and so on.
>
> I imported $:/plugins/mklauber/math.js 
> 
>  
> from http://mklauber.github.io/tiddly-mathjs/
>
> Using <$calc>, I *cannot *add the sum of these three fields  
> {{!!field4}}=<$calc>{{!!field1}} + {{!!field2}} + {{!!field3}} into 
> field4.
> What went wrong?
>
> I need a solution for automatically calculating with the values of my 
> fields (+, -, *, :, percent, average) and to store the result in an other 
> named field. Is there such a solution out there? (Statistical values 
> calculated about all tiddlers with these fields would be great.)
>
> The use case is to calculate the average points of students they got in 
> some tests (and to get the average of all students).
>
> Greetings,
>
> Uwe
>
>
>
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/adcb2e66-a2d4-4202-bfc9-1d8c626affe0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Is latest Tiddlyfox 2 necessary?

2017-08-04 Thread Robert Edwards


On Wednesday, August 2, 2017 at 10:53:40 AM UTC-4, @TiddlyTweeter wrote:
>
>
> Its was done because* new users were NOT noticing the state of the TW 
> saving toggle* in the address bar ("cat on world", later "ticks & 
> crosses") and losing work.
>
>
And not-so-new users as well, who didn't notice their 1.x TF had been 
automatically and silently upgraded   

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/2ef546d8-a61b-4d93-918d-f5b34765f94e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Presenting: GRAPHS - pies, bars, scatter and whatever turns you on

2017-08-04 Thread Mat
Updates made. (still beta)

Several (probably not noticeable) tweaks have been. The only major feature 
change is:

Three "special fields " 
have been introduced, to easily (1)indent the graph, (2)add a header or 
(3)a footer. These are probably such common use cases that I wanted to 
enable them without CSS knowledge.

@Pit.W - The Gantt macro is approaching readiness - but not quite there 
yet. 

@Thomas E - I intend to experiment replacing the current calc macro with 
your rpn solution, hoping for more efficiency thanks to your wikification 
of the output. Also, I note the rpn randomization feature which will enable 
a fun idea I have... :-)

Input is more than welcome.

<:-)

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/62ce97e0-ea57-4448-8015-47264386c2a3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Presenting: GRAPHS - pies, bars, scatter and whatever turns you on

2017-08-04 Thread @TiddlyTweeter
As far as I see it reads data from TiddlerS. I think there are lot of 
occasions where reading data from ONE Data Dictionary would be Just As Good.

Take the case of doing a search of the novel Great Expectations for the 
word occurrence of Biddy, Pip, Miss Havisham, Estella, Wemmick, Jaggers, 
Joe, Herbert & Orlick. you won't find those counts in any tiddler. Rather, 
they pertain to thousands of paragraphs.

The case would be this kind of outcome in a Data Dictionary:

   Wemmick: 107
   Pip: 302
   Estella: 135
   Orlick: 28
   Herbert: 98
   Jaggers: 72
   Joe: 123
   Miss Havisham: 102
   Biddy: 57

Can your gizmo sail with this easy kind of data counts? Or even make Word 
Clouds of them?

Best wishes,
Josiah

 Mat wrote:
>
>
> Input is more than welcome.
>
> <:-)
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/4dbac4a6-0c0b-479e-ae71-b6004557e7cb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] tip: preserving linebreaks

2017-08-04 Thread Mat
JWHoneycutt - thank you.

Is there a particular reason to use  instead of ?

<:-)

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/c2435739-1ba1-4335-9beb-85a40fa850d0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Native android app and licences

2017-08-04 Thread @TiddlyTweeter
It a nice image of a tiddler. Its already in the public domain. do it.

Josiah

On Friday, 4 August 2017 20:29:57 UTC+2, Joshua Stubbs wrote:
>
> Hi, all.
>
> I'm currently working on a native app for Android to parse tiddlywiki 
> files because firefox is a bit slow when handling the javascript. I'd like 
> to use this image for the logo:
>
> https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/TiddlyWiki_Icon.png/1145px-TiddlyWiki_Icon.png
>
> I'm guessing I can because it's in the public domain but I figured I 
> should just make sure.
>
> Many thanks. Joshua.
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/4e2f1b9f-a2df-40ad-9fff-2c1911a51fe3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: Is latest Tiddlyfox 2 necessary?

2017-08-04 Thread @TiddlyTweeter
Ciao Mark S. & Arlen

Okay. I give up. 

I just had a conversation with Jeremy Ruston about TiddlyFox. 

We are both clear there was reason to go to version 2, some kinda threat 
from Mozilla that will land soon. 

Even he can't quite remember what it was. Then, after he'd updated it for 
whatever it was, it got complicated because users were NOT noticing the 
small cat on globe. That led to some tick sign thing to replace the cat. 
That didn't last long before the current mature 2 which gives you a big 
sign to save (that WORKS) and reversion to cat on globe.

Mark S. I'd just use what you are using till it fails and try the latest 
TiddlyFox then.

Josiah

@TiddlyTweeter wrote:
>
> Ciao Arlen, I absolutely knew in the back of my mind that someone would 
> write that and cause me to have to lookup stuff... :-)
>
> Arlen Beiler wrote:
>>
>> ... Mark is wondering about version 1.0 alpha 18.1 vs version 2.x. What 
>> is the difference between the two and is there a compelling reason to 
>> upgrade to 2.x?
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/5013f5d1-21e1-4b6b-b418-0243f739f8d2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Presenting: GRAPHS - pies, bars, scatter and whatever turns you on

2017-08-04 Thread Mat
@TiddlyTweeter wrote:
>
> As far as I see it reads data from TiddlerS. I think there are lot of 
> occasions where reading data from ONE Data Dictionary would be Just As Good.
>

Hm, interesting - I misunderstood you at first: I think it should be 
possible to use one dictionary (or rather, its entries) as input for the 
graph, instead of tiddlers. That's a very good idea.

...but you seem to want something else: Using one single *text* as input 
and somehow count occurrences of predefined strings, right? The graph macro 
is rather kind of the step after; you give it the value you want to 
visualize. How to *get* the number to begin with is a totally different 
matter.

That said, someone made a word count widget (Thomas?). I would think it 
should be tweakable to count specific strings rather than (I assume) space 
characters. You could then use a regular list widget and with your funny 
names as the filter argument and apply the count widget/macro on one name 
at a time to get the desired list.


Or even make Word Clouds of them?
>

(What the heck!? ;-)  Word clouds is exactly the thing I had in mind when I 
tried to be mysteriously cryptic in what I would to with the randomization 
feature in Thomas' rpn macro. I have actually already experimented with 
this a bit, for the Graphs macro, and I'm pretty close to a cool solution 
but need a better randomizer than what I currently have 

. 


<:-)

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/47535e8a-7add-4b3e-8927-c949503a007f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Presenting: GRAPHS - pies, bars, scatter and whatever turns you on

2017-08-04 Thread @TiddlyTweeter
Mat wrote:
>
> @TiddlyTweeter wrote:
>>
>> As far as I see it reads data from TiddlerS. I think there are lot of 
>> occasions where reading data from ONE Data Dictionary would be Just As Good.
>>
>
> Hm, interesting - I misunderstood you at first: I think it should be 
> possible to use one dictionary (or rather, its entries) as input for the 
> graph, instead of tiddlers. That's a very good idea.
>
> ...but you seem to want something else: Using one single *text* as input 
> and somehow count occurrences of predefined strings, right? 
>

*NO.** I'd have the dictionary done already. *Not your issue. It would be 
this ...

Label: count

The basic structure of Data Dictionaries is that. 

It would need be ALREADY ready. Data dictionaries could be anything. The 
one thing they are NOT, usually, is dynamic data.

Josiah, x
 

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/aa8daf62-c5e2-430c-b9e0-bf4ef7200711%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: Presenting: GRAPHS - pies, bars, scatter and whatever turns you on

2017-08-04 Thread Alex Hough
Matt,

you've been busy!
 Wow!

Alex

On 5 August 2017 at 00:01, @TiddlyTweeter  wrote:

> Mat wrote:
>>
>> @TiddlyTweeter wrote:
>>>
>>> As far as I see it reads data from TiddlerS. I think there are lot of
>>> occasions where reading data from ONE Data Dictionary would be Just As Good.
>>>
>>
>> Hm, interesting - I misunderstood you at first: I think it should be
>> possible to use one dictionary (or rather, its entries) as input for the
>> graph, instead of tiddlers. That's a very good idea.
>>
>> ...but you seem to want something else: Using one single *text* as input
>> and somehow count occurrences of predefined strings, right?
>>
>
> *NO.** I'd have the dictionary done already. *Not your issue. It would be
> this ...
>
> Label: count
>
> The basic structure of Data Dictionaries is that.
>
> It would need be ALREADY ready. Data dictionaries could be anything. The
> one thing they are NOT, usually, is dynamic data.
>
> Josiah, x
>
>
> --
> You received this message because you are subscribed to the Google Groups
> "TiddlyWiki" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to tiddlywiki+unsubscr...@googlegroups.com.
> To post to this group, send email to tiddlywiki@googlegroups.com.
> Visit this group at https://groups.google.com/group/tiddlywiki.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/tiddlywiki/aa8daf62-c5e2-430c-b9e0-bf4ef7200711%40googlegroups.com
> 
> .
>
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/CALc1hYcyKbuQ6MOmv1noS_OCKat4zV%2B2zgx_jaSBK1763CFiPQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.