[tw5] Re: [TW5] Bob and BobEXE version 1.3.0, Tofurky, file server and wiki management updates

2019-10-11 Thread TonyM
Jed, Thanks again for you development of Bob. I think a lot of users will benefit from the 0.0.0.0 setting as a quick enable of lan accessible wikis, this being a key feature of a server implementation on tiddlywiki. Bob exe is the easiest way (at least I know on windows) to enable a server,

[tw5] Re: Number Base Conversion Macro (very neat!)

2019-10-11 Thread TonyM
Mark, If want to expand this to base 36+26 = 62 to add lowercase can I just extend the arrays, or is more involved? As mentioned before such a base 62 with readable symbols would use far less bytes than base 10, especially if I used it to create a tiddler serial number. Since coming up with

[tw5] Re: Number Base Conversion Macro (very neat!)

2019-10-11 Thread Mohammad
Added to TW-Scripts On Friday, October 11, 2019 at 10:03:51 PM UTC+3:30, Mark S. wrote: > > > Here's how it works. To convert a number from base 10 to some other base, > first you divide the > initial number (dividend) by the new base (divisor). The result is the > quotient and the remainder.

Re: [tw5] Re: TiddlyServer upgraded to TiddlyWiki 5.1.21

2019-10-11 Thread jwd
So maybe I am missing something obvious but when I visit the above link or its home page https://arlen22.github.io/tiddlyserver/ I see no link to the actual current download location. You might want to include a Download section or a prominent link to

[tw5] Re: Number Base Conversion Macro (very neat!)

2019-10-11 Thread 'Mark S.' via TiddlyWiki
For converting back to base 10. Just barely tested. Seems to work. Usually converting from base x to base 10 would be easier than the other way around. But the lack of a power function and an easy way to index an array meant that this was actually harder, somehow. \define

[tw5] Re: [TW5] Bob and BobEXE version 1.3.0, Tofurky, file server and wiki management updates

2019-10-11 Thread Dave
"Tofurkey" <-- Lol :D Nothing like Thanksgiving dinner with the odd vegetarian relative, ha ha Looking forward to trying this :) -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails

[tw5] [TW5] Bob and BobEXE version 1.3.0, Tofurky, file server and wiki management updates

2019-10-11 Thread Jed Carty
I have done some bug fixes and a lot of ui improvements so that features that have been available in Bob for a long time are easier to set up and use. The biggest things are toggling access to the wikis from the local network, setting up the local file server for media, serving files from

[tw5] Re: plugins/mklauber/math.js does not work completely in TW 5.1.21 ?!?

2019-10-11 Thread 'Surya' via TiddlyWiki
Forgot to write... I saw now, that sometimes I however need that function. On Friday, October 11, 2019 at 11:57:54 PM UTC+2, Surya wrote: > > Hello, > > I asked my question in a wrong way ("how to round with 2"). In the > "calc"-Plugin I had to write "round ,2", if I wanted that 1.67

[tw5] Re: plugins/mklauber/math.js does not work completely in TW 5.1.21 ?!?

2019-10-11 Thread 'Surya' via TiddlyWiki
Hello, I asked my question in a wrong way ("how to round with 2"). In the "calc"-Plugin I had to write "round ,2", if I wanted that 1.67 is shown up as 1.67. I found out now, how I can do that with the maths operators (fixed operator). But unfortunately that gives me also a simple

[tw5] Re: "PopupTagger"-Plugin does not work on wiki (version 5.1.21)

2019-10-11 Thread 'Surya' via TiddlyWiki
Hi Birthe, oh sorry- my fault, I didn't recognize the filter... It is set to show the Popuptagger only on tiddlers created by Eucaly... That's why I couldn't see it on my own tiddlers. I use the popuptagger in all my wikis. But in my memory I didn't have to change this filter. But however, now

[tw5] Re: Bob accessing tiddlers in subdirectory

2019-10-11 Thread Dave
Thank you so much! I think that is the clue that solves a lot of my weird little file version quirks. On Friday, October 11, 2019 at 1:38:19 PM UTC-6, Jed Carty wrote: > > I believe that what you are talking about is from how tiddlywiki loads > tiddler folders and isn't specific to Bob. Any

[tw5] Re: Bob accessing tiddlers in subdirectory

2019-10-11 Thread Jed Carty
I believe that what you are talking about is from how tiddlywiki loads tiddler folders and isn't specific to Bob. Any subfolders of the tiddlers folder should be searched for tiddlers to be included in the wiki. I am not sure if there is a mechanism for excluding folders from this, Jeremy and

[tw5] Re: [TW5] Bob and BobEXE version 1.2.4, lightly steamed asparagus, file server and wiki management updates

2019-10-11 Thread Jed Carty
Birthe, That is strange. I am not sure what would cause that. I am adding the last few interface bits to Bob and hopefully the new version will be uploaded in another hour or two. The new interface should make it much easier to change if the wiki is served on 0.0.0.0 and to enable and

[tw5] Re: Image visability and user-friendliness

2019-10-11 Thread Jed Carty
If you are using BobEXE the server images plugin should be there, you just have to enable it using the Bob interface. Go to $:/ControlPanel -> Bob Settings -> This Wiki -> Manage Plugins then click the `Update Plugin List` button, check the plugins you want to active, click the `Save Plugin

[tw5] Re: Bob accessing tiddlers in subdirectory

2019-10-11 Thread Dave
also, just thought of this: is there a way to mark that folder .../tiddlers/.stversions (or any subfolder) in such a way as its to be *excluded* from Bob, but still be in that location (functioning in this case as a syncthing trash folder) That way I can still look there for previous file

[tw5] Re: TW5 on nodejs via https and certificate-based user authentication using nginx as proxy

2019-10-11 Thread Daniel
Hi Pietro, I myself wanted to have HTTPS to my wiki for some years, and just to add a note around this subject (and perhaps some inspiration) I solved this myself by running a proxy with let´s encrypt on a OPNsense firewall, And it is glorious without any certifciate warnings. This requrires

[tw5] Bob accessing tiddlers in subdirectory

2019-10-11 Thread Dave
Hi Jed, this is just an information question about the mechanics of Bob: I have a tiddler which functions normally in the TW, but when I went to access it via bash (Linux) programmatically, it wasn't being found in the normal tiddlers folder. Turns out it was because Syncthing had put it in a

[tw5] Re: Number Base Conversion Macro (very neat!)

2019-10-11 Thread 'Mark S.' via TiddlyWiki
Here's how it works. To convert a number from base 10 to some other base, first you divide the initial number (dividend) by the new base (divisor). The result is the quotient and the remainder. You use the remainder as an index into your numerical symbol list (0.1,2... etc.) to find the

[tw5] Re: Number Base Conversion Macro (very neat!)

2019-10-11 Thread @TiddlyTweeter
Mark S. wrote: > > When they go shopping, do they complain that everything costs an arm and a > leg? > Lol! No just two arms. > Birthe C wrote: >>> >>> Do they go all dementia senilis then if they get a limb amputation? >>> >> -- You received this message because you are subscribed to the

Re: [tw5] Re: Number Base Conversion Macro (very neat!)

2019-10-11 Thread @TiddlyTweeter
There is a branch of social science/maths called "ethnomathematics" https://en.wikipedia.org/wiki/Ethnomathematics that is a good place to start to look. The work I know by anthropologists is not so easy to find outside special libraries ... but there is a bit on the net ...

[tw5] Re: Number Base Conversion Macro (very neat!)

2019-10-11 Thread 'Mark S.' via TiddlyWiki
When they go shopping, do they complain that everything costs an arm and a leg? On Friday, October 11, 2019 at 9:28:57 AM UTC-7, @TiddlyTweeter wrote: > > Birthe C wrote: >> >> Do they go all dementia senilis then if they get a limb amputation? >> > > Lol. Its not a bad question! > > With higher

[tw5] Re: Utility plugin Release 0.5.0 beta

2019-10-11 Thread Mohammad
Hi Birthe A new release 0.6.0 beta pushed! Typo has been corrected Better example has been given for simple-navigation Some other minor correction --Mohammad On Friday, October 11, 2019 at 7:20:26 PM UTC+3:30, Birthe C wrote: > > Hi Mohammad, > > I am a little confused. You start with

Re: [tw5] Re: Number Base Conversion Macro (very neat!)

2019-10-11 Thread ILYA
There was a system base 12 which uses segments of a finger. https://m.youtube.com/watch?feature=youtu.be=U6xJfP7-HCc On 11 October 2019 09:28:57 GMT-07:00, "@TiddlyTweeter" wrote: >Birthe C wrote: >> >> Do they go all dementia senilis then if they get a limb amputation? >> > >Lol. Its not a

Re: [tw5] Re: Number Base Conversion Macro (very neat!)

2019-10-11 Thread ILYA
I am also interested in historical counting systems. Any links you can share? I use a mathjs based macro for doing base conversions. Best regards, iilyak On 11 October 2019 06:45:40 GMT-07:00, "@TiddlyTweeter" wrote: >Repeat for email. > >On Friday, 11 October 2019 15:45:12 UTC+2,

[tw5] Re: Number Base Conversion Macro (very neat!)

2019-10-11 Thread @TiddlyTweeter
Birthe C wrote: > > Do they go all dementia senilis then if they get a limb amputation? > Lol. Its not a bad question! With higher numbers many body part counting systems do refer to other people's bodies. For instance for numbers over 10 (decimal 27) you could count someone else's parts (10

[tw5] Re: Number Base Conversion Macro (very neat!)

2019-10-11 Thread Birthe C
Do they go all dementia senilis then if they get a limb amputation? Couldn't help it, Birthe fredag den 11. oktober 2019 kl. 17.33.52 UTC+2 skrev @TiddlyTweeter: > > Hi Mark S. > > I am. "The Art Of Memory" by Frances Yates is a favourite social history > book of mine that puts it in context.

[tw5] Re: Utility plugin Release 0.5.0 beta

2019-10-11 Thread Mohammad
Hi Birthe, Let me to check! I will add more clear explanation! --Mohammad On Friday, October 11, 2019 at 7:20:26 PM UTC+3:30, Birthe C wrote: > > Hi Mohammad, > > I am a little confused. You start with simple-navigation, next an example > using simpleNavigation. All the writing is about tag,

[tw5] Tiddloid-Lite

2019-10-11 Thread Mohammad
Worth have a look specially for who like TW on Android. https://groups.google.com/d/msg/tiddlywikidev/9moZAMnb40c/Z4PFXzZmDAAJ -- 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,

[tw5] Re: Utility plugin Release 0.5.0 beta

2019-10-11 Thread Birthe C
Hi Mohammad, I am a little confused. You start with simple-navigation, next an example using simpleNavigation. All the writing is about tag, but then I see a tiddler named simple navigation tagged $:/tags/ViewTemplate containing <>. A typo, tiddler named demo/Viw-field (Demo View-field I

[tw5] Re: Number Base Conversion Macro (very neat!)

2019-10-11 Thread @TiddlyTweeter
Hi Mark S. I am. "The Art Of Memory" by Frances Yates is a favourite social history book of mine that puts it in context. Its very likely that the associative systems for memory by "loci" actually emerged from simple body part enumeration systems. Its a rich legacy oral cultures bequeathed

[tw5] Re: Seting a field from a select widget selection not working ... Need help !!

2019-10-11 Thread vpl
Solved in fact The correct code is Company <$select tiddler="LogSearchInput" field="companyField"> <$list filter='[tag[Contact]each[company]sort[company]]'> <$view field='company'/> Le vendredi 11 octobre 2019 16:40:32 UTC+2, vpl a écrit : > > Hi experts ..! > > I have a question related

[tw5] Re: Number Base Conversion Macro (very neat!)

2019-10-11 Thread 'Mark S.' via TiddlyWiki
Hi TT, Are you familiar with mnemonic techniques? A very common technique is to use one's own body to remember lists of things. Perhaps that is how the Oksapmin got its start. Ref: *Moon Walking with Einstein* by Joshua Foer, *The Memory Book* by Harry Lorayne and Jerry Lucas, *How To

[tw5] Re: Number Base Conversion Macro (very neat!)

2019-10-11 Thread Mohammad
Added to TW-Scripts and Yazd! By the way, to document macro could Mark explain the logic a little bit? For cross checking the below link may be helpful http://www.unitconversion.org/unit_converter/numbers.html Mohammad On Friday, October 11, 2019 at 5:15:12 PM UTC+3:30, @TiddlyTweeter wrote:

Re: [tw5] Wrongly word-wrap in table cell

2019-10-11 Thread Mohammad
Hi Jeremy! Many thanks for clarification! I will use the latest update (TW 5.1.22). By the way I use the below css in the meantime. table th, table thead,table td {word-wrap:normal;white-space: nowrap; } On Friday, October 11, 2019 at 6:05:33 PM UTC+3:30, Jeremy Ruston wrote: > > Hi Mohammad

[tw5] Utility plugin Release 0.5.0 beta

2019-10-11 Thread Mohammad
*Announcement:Utility plugin* *Date: Oct 11, 2019* *Release: 0.5.0 beta* *Status: in progress* This is to announce the *beta *release Utility plugin! It is a complement to Shiraz. This plugin targets who like authoring specially developer. Demo: https://kookma.github.io/TW-Utility/ Source:

[tw5] Seting a field from a select widget selection not working ... Need help !!

2019-10-11 Thread vpl
Hi experts ..! I have a question related to the select widget I have create a tiddler called "contactTemplate" In this tiddler I've created a select witch lists the unique content of the "company" field of all of my tiddlers with a "Contact" tag Company <$select tiddler="LogSearchInput"

Re: [tw5] Wrongly word-wrap in table cell

2019-10-11 Thread Jeremy Ruston
Hi Mohammad I think it’s a bug. The CSS for vertical tabs sets `word-break: break-word` on .tc-tab-content.tc-vertical which is then inherited by the tab content. It was introduced here: https://github.com/Jermolene/TiddlyWiki5/commit/7e71fcfab80bed9aed4389eea386fb2036cc4a85

Re: [tw5] http://kixam.github.io/TW5-datePicker/ How to set the locale

2019-10-11 Thread Stephan Hradek
Nope… They do not give me german month names. -- 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 view this discussion on

[tw5] Re: "PopupTagger"-Plugin does not work on wiki (version 5.1.21)

2019-10-11 Thread Birthe C
Hi Surya, PopupTagger does work in version 5.1.21. When you write that TagBar is visible on all the tiddlers of the Plugin it is due to being configured to show you Eucalis tagbar. (In config tiddler you can see the filter for it.) You have to go to the config tiddler and set up your own

[tw5] Re: Number Base Conversion Macro (very neat!)

2019-10-11 Thread @TiddlyTweeter
Repeat for email. On Friday, 11 October 2019 15:45:12 UTC+2, @TiddlyTweeter wrote: > > In another thread Mark S. presented a magic macro to convert from decimal > to other bases. > > I think its a rather marvellous bit of coding.* I have no idea how it > works*, but it does work well. > > Its a

Re: [tw5] Re: Typing lag in <$edit-text/> widget

2019-10-11 Thread Hubert
Just to add, sliders created using the <$range/> widget are now also smooth as butter, as long as the tiddler being updated is an unsaved draft, eg: <$range tiddler="Draft of 'edit-range'" min=0 max=10 default=5 increment=0.5/> I've tested this on desktop and mobile. Even on desktop, removing

Re: [tw5] Re: Typing lag in <$edit-text/> widget

2019-10-11 Thread Hubert
Hi Jeremy, Thank you for taking the time to respond, I appreciate it. We could add an additional field that we check for along with the > “draft.of” field, such as “refresh.slow” as suggested in the thread above. > I don’t think that’s going to be particularly convenient in lots of >

[tw5] Re: [TW5] Bob and BobEXE version 1.2.4, lightly steamed asparagus, file server and wiki management updates

2019-10-11 Thread Birthe C
Jed, Thank you very much, Jed. The problem is, that I have done exactly that, and tried over and over. Getting the message, it is saved. Closing down and restarting. Opening Bob setting and the servertab, the ws server host is set to o.o.o.o - but BobEXE is still serving on 127.0.0.1. Birthe

[tw5] Re: Image visability and user-friendliness

2019-10-11 Thread Stobot
Awesome - thanks Jed, More basically though for when it *is* available. The only plugins I'm used to are kind of drag and drop from other tw sites. I don't understand how to install from github. Do I just drag and drop all the .js ones over? Copy and paste the .js ones into my tw? On Friday,

Re: [tw5] Re: Typing lag in <$edit-text/> widget

2019-10-11 Thread Jeremy Ruston
Hi Hubert, Thank you for finding this thread from 2015: https://groups.google.com/d/topic/tiddlywiki/hlIvXE6jRys/discussion As you note, I think we are still in the same place: on lower powered devices, it would be useful to be able to extend the refresh dampening mechanism to selectively

[tw5] Re: Quinoid

2019-10-11 Thread HC Haase
Hi is there any development on this? I have the same problem. It is good to know that there is no real problem, but still quite annoying. thanks torsdag den 31. januar 2019 kl. 17.34.39 UTC+1 skrev Mark S.: > > After a page has been loaded, it's sent some javascript to determine the > title.

[tw5] Re: [TW5] Bob and BobEXE version 1.2.4, lightly steamed asparagus, file server and wiki management updates

2019-10-11 Thread Birthe C
How do I get BobEXE to serve on 0.0.0.0? I have searched this group and found a lot having that problem, suggestions about editing the settings file and so on. Editing the settings file does not seem to help or change anything. BobExe keeps serving on 127.0.0.1. I am using the latest BobExe

[tw5] Re: Splash screen "breaks" decrypt prompt for wiki

2019-10-11 Thread HC Haase
fredag den 11. oktober 2019 kl. 10.35.37 UTC+2 skrev Hubert: > > HC, > > I'm not sure if the password wrapper allows it. I've tried it myself and > failed. > damn.. thanks for the answer > > Instead, you might want to try adding your text in your splash screen > tiddler and perhaps

[tw5] Re: Splash screen "breaks" decrypt prompt for wiki

2019-10-11 Thread Hubert
HC, I'm not sure if the password wrapper allows it. I've tried it myself and failed. Instead, you might want to try adding your text in your splash screen tiddler and perhaps positioning it using CSS (position: absolute, etc.) This might work with a lot of trial and error but it's not pretty

[tw5] Re: [TW5] Bob and BobEXE version 1.2.4, lightly steamed asparagus, file server and wiki management updates

2019-10-11 Thread Ed
Actually I am having no fun since yesterday. Starting BobWin.exe is not working. Very shortly the shell window appears. and before any code can be seen inside that window disappears. It happened also with a freshly downkoaded Bob. I am very unhappy. Must be something to do with my computer, or

[tw5] Re: Typing lag in <$edit-text/> widget

2019-10-11 Thread Hubert
Mark, I've found this old post of yours , again, in relation to performance issues specifically related to typing. This was even before TypingTimeout was a user-adjustable setting. This led me to experiment with an

[tw5] Re: [TW5] Bob and BobEXE version 1.2.4, lightly steamed asparagus, file server and wiki management updates

2019-10-11 Thread Jed Carty
Dave, The federation components I am (slowly) working on will handle inter-server syncing in a way that doesn't break anything. The problem is that they need to be able to connect to each other which can be a problem if you don't have any open to the outside world. You would be able to have

[tw5] Re: [TW5] Bob and BobEXE version 1.2.4, lightly steamed asparagus, file server and wiki management updates

2019-10-11 Thread Ed
Great, thanks Dave, for calling in! Mm, where's Stobot? I recall him using Bob also. Have fun guys. Ed Op vrijdag 11 oktober 2019 04:10:41 UTC+2 schreef Dave: > > I love Bob. Bob's my uncle. > > I love being able to read tiddler content from outside the browser system > (e.g via bash scripts),

[tw5] Re: Splash screen "breaks" decrypt prompt for wiki

2019-10-11 Thread HC Haase
@Hubert I try to customise it a bit. could you help me please. How do I put an extra text below the prompt? thanks -- 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

[tw5] Re: Image visability and user-friendliness

2019-10-11 Thread Jed Carty
stobot, I have it working, but I think that I am using modified versions that I never got around to putting online anywhere accessible. The different versions of ServerImages and Bob use slightly different paths which makes them not play well together. I will try and push out new versions of

[tw5] Re: Typing lag in <$edit-text/> widget

2019-10-11 Thread Hubert
Hi Mark, My TW now has 63k entries, and, in a meeting the other day,I was able to > look up entries about as fast as people asked. > That's impressive. Did you use a search bar or your own widget? I'm particularly interested if it was the latter. But that was using a Kindle Fire, which might

[tw5] Wrongly word-wrap in table cell

2019-10-11 Thread Mohammad
It seems Tiddlywiki table wrongly wrap words! While in a table there is no need to wrap, TW renders table with wrapping word for example it shows optional as option al Is this a bug or it has been set intentionally? *Example* see https://kookma.github.io/Shiraz/#Shiraz%20Tutorial open

[tw5] Re: Splash screen "breaks" decrypt prompt for wiki

2019-10-11 Thread HC Haase
Now I am thinking; why isn't there a standard splash screen build in? of course this is a very minor part of TW and will only flash the screen so seldom for most users, but why not? could give a bit more professional look. -- You received this message because you are subscribed to the Google

[tw5] Re: Splash screen "breaks" decrypt prompt for wiki

2019-10-11 Thread HC Haase
Thank you all for your help. I didn't edit the html file manually nor did I edit the $:/boot/boot.css tiddler. I Could not find the reason for the error, so in the end. I rolled back to a backup and imported my tiddelers (without system tid) made since that point in time. @Hubert Oh that is