Ah the use list ...

Got a LiveCode personal license? Are you a beginner, hobbyist or educator that's new to LiveCode? This forum is the place to go for help getting started. Welcome!

Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller

bogs
Posts: 5435
Joined: Sat Feb 25, 2017 10:45 pm

Ah the use list ...

Post by bogs » Fri Jan 25, 2019 11:00 pm

In a post in a different part of this forum, -hh asked me why I wasn't on the use-list email list, to which I (somewhat jokingly) answered ~
bogs wrote:
Wed Jan 02, 2019 12:05 am
Shear laziness on my part, along with having to supply yet another sign in ( I just realized I am up to 3 different logins for Lc already, a new record for me! :shock: )

* Maybe I can reduce the list to an rss type thing. Hmmm... *
Of course, other than what the acronym means (Really Simple Syndication), I never really looked much into it. I know basic css and html, but never really got involved in xhtml, xml, or any of the .js and stuff because i really am, you know, lazy :twisted:

Of course, I think I found the laziest way out I possibly could. While hardly a ground breaking program, it *is* good enough at the moment to peruse the mailing list. I really can't believe I did not do this much earlier.

This is the very early not quite alpha prototype which of course is using nothing more than the htmlText feature of the field (yes, I know it isn't feature complete, but I am pretty sure I can correct the deficiencies in formatting by using other regular tools available in Lc's language).
Selection_001.png
Simple, like me :D
I think I spent the better part of a half hour trying to figure out why I couldn't filter a variable without space (which is more time than I spent writing the code AND making the interface, and I still haven't figured out, if anyone knows, I'd love to hear it!), so the code (such as it is) after 10 minutes is -

Code: Select all

on threadsFetch
   // set up the current date to be appended to the url...
   put item 3 of the long date & "-" &  word 1 of item 2 of the long date into tmpArchive
/* put chartoNum(character 1 of tmpArchive) <- for some reason, a space is being inserted into tmpArchive??? */
   delete character 1 of tmpArchive // initially, I tried 'filter tmpArchive without space', but for some reason that did not work :(
   put "http://lists.runrev.com/pipermail/use-livecode/" before tmpArchive 
/* I plan to have tmpArchive autoupdate, and at some point the complete archives will be loadable as well. Probably use a table for this... */
   
   // use-list base address is "http://lists.runrev.com/pipermail/use-livecode/" and the "year-Month"...
   // an example would be ("http://lists.runrev.com/pipermail/use-livecode/2019-January/")
   set the htmlText of field 1 to url (tmpArchive) // remarkably effective...
   
end threadsFetch

on openStack
   threadsFetch

end openStack

on linkClicked pLink -- open the URL stored with the clicked text, will probably modify this over time...
   set the htmlText of field 2 to url ("http://lists.runrev.com/pipermail/use-livecode/2019-January/" & pLink)
   
end linkClicked

on mouseUp
// didn't feel like adding a button, so clicking anywhere on the card will start the routine...
   openStack
end mouseUp
I think one to three more days should give me a solution that works for me to keep up with the use list :D

*Edit - I should add it already does a better job of displaying the list and messages than any of the mail list to feed readers I tried before I started writing this :D
Image

FourthWorld
VIP Livecode Opensource Backer
VIP Livecode Opensource Backer
Posts: 9823
Joined: Sat Apr 08, 2006 7:05 am
Location: Los Angeles
Contact:

Re: Ah the use list ...

Post by FourthWorld » Sat Jan 26, 2019 1:26 am

Ever opened LiveNet?

In the IDE, see Development -> Plugins -> GoLiveNet

The second tab may be of interest. I've had a machine here diligently processing RSS feeds from this community every 10 minutes for the last several years.
Richard Gaskin
LiveCode development, training, and consulting services: Fourth World Systems
LiveCode Group on Facebook
LiveCode Group on LinkedIn

richmond62
Livecode Opensource Backer
Livecode Opensource Backer
Posts: 9359
Joined: Fri Feb 19, 2010 10:17 am
Location: Bulgaria

Re: Ah the use list ...

Post by richmond62 » Sat Jan 26, 2019 12:31 pm

Well, here's another chap joining the line of slow learners. :D

Thank you for that!

bogs
Posts: 5435
Joined: Sat Feb 25, 2017 10:45 pm

Re: Ah the use list ...

Post by bogs » Sat Jan 26, 2019 1:29 pm

FourthWorld wrote:
Sat Jan 26, 2019 1:26 am
Ever opened LiveNet?
Heh, well, yes I did in fact try opening that, just apparently in the wrong versions of the IDE :mrgreen:

You might remember that I tend to work mostly in earlier versions of the IDE and Mc (which does not include it). The first time I checked that plugin was in 2.2.1, and again in 3.x,
Selection_002.png
Rev2.2.1 plugins....
Selection_002.png (2.88 KiB) Viewed 7574 times
Which produced this result,
Selection_003.png
Error, error...
So when I saw that same plugin in later versions, I just assumed it would produce the same results. I never bothered to look into the plugin, since I do have enough to keep me busy as it is :wink: and I almost never crack open the 8.x and up versions, so I didn't know you even changed the name :oops:

However, I did now find out that plugin started working again somehwere around the 5.x or so period, because it shows up in 6.0...
Selection_004.png
Ooooooo Ahhhhhhh...
Your version sure does outshine the heck out of anything else I looked at so far, so I will be taking a very close look at it (now that I know it works :P ), fantastic work there Richard! I suspect your also behind the nabble stuff I've come across eh :D

*Edit - The question still remains on filtering, maybe I should spin off a different thread on that one though.
Image

bogs
Posts: 5435
Joined: Sat Feb 25, 2017 10:45 pm

Re: Ah the use list ...

Post by bogs » Sat Jan 26, 2019 4:07 pm

I don't know if the email address for bug reporting in the help section is still valid, but you have a email waiting there if it is :mrgreen:
Image

[-hh]
VIP Livecode Opensource Backer
VIP Livecode Opensource Backer
Posts: 2262
Joined: Thu Feb 28, 2013 11:52 pm
Location: Göttingen, DE

Re: Ah the use list ...

Post by [-hh] » Sat Jan 26, 2019 6:40 pm

I have problems with LiveNet on Indy and Community.
[MacOS 10.14.2, LC 9.0.2]
So this is probably not due to tsNet?
Attachments
liveNet.png
liveNet.png (18.36 KiB) Viewed 7532 times
shiftLock happens

Klaus
Posts: 13824
Joined: Sat Apr 08, 2006 8:41 am
Location: Germany
Contact:

Re: Ah the use list ...

Post by Klaus » Sat Jan 26, 2019 6:48 pm

No problems with LiveNet here with LC 9.02 Indy on macOS 10.14.3!

richmond62
Livecode Opensource Backer
Livecode Opensource Backer
Posts: 9359
Joined: Fri Feb 19, 2010 10:17 am
Location: Bulgaria

Re: Ah the use list ...

Post by richmond62 » Sat Jan 26, 2019 6:57 pm

macOS 10.14.3
as in "last night" . . . Ba, Ba, Badum!

[-hh]
VIP Livecode Opensource Backer
VIP Livecode Opensource Backer
Posts: 2262
Joined: Thu Feb 28, 2013 11:52 pm
Location: Göttingen, DE

Re: Ah the use list ...

Post by [-hh] » Sat Jan 26, 2019 7:10 pm

It works now here too. Thanks.

Oh, Richard:
You could think about adding "livecodeshare" to your LiveCode-Tab of Help?
shiftLock happens

FourthWorld
VIP Livecode Opensource Backer
VIP Livecode Opensource Backer
Posts: 9823
Joined: Sat Apr 08, 2006 7:05 am
Location: Los Angeles
Contact:

Re: Ah the use list ...

Post by FourthWorld » Sat Jan 26, 2019 11:28 pm

[-hh] wrote:
Sat Jan 26, 2019 7:10 pm
Oh, Richard:
You could think about adding "livecodeshare" to your LiveCode-Tab of Help?
I considered it, but the mother ship was very insistent that they were very close to shipping the replacement of for LiveCode Share/RevOnline/whatever else it's called.

That was in December 2016.

Maybe I should reconsider. :)
Richard Gaskin
LiveCode development, training, and consulting services: Fourth World Systems
LiveCode Group on Facebook
LiveCode Group on LinkedIn

[-hh]
VIP Livecode Opensource Backer
VIP Livecode Opensource Backer
Posts: 2262
Joined: Thu Feb 28, 2013 11:52 pm
Location: Göttingen, DE

Re: Ah the use list ...

Post by [-hh] » Sun Jan 27, 2019 2:29 am

The limit for LC's plans are the sky but a lot simply disappears in the clouds.
Probably we have LC 10 before 1/3 of the following is realized for LC 9.
(Screenshot from LC Global, Nov 2018)
Attachments
LCG_2018Nov.png
shiftLock happens

richmond62
Livecode Opensource Backer
Livecode Opensource Backer
Posts: 9359
Joined: Fri Feb 19, 2010 10:17 am
Location: Bulgaria

Re: Ah the use list ...

Post by richmond62 » Sun Jan 27, 2019 10:16 am

Let's imagine, just as a mental exercise, a company that, recently got itself in the financial sh*t,
and, as a way out of this, moved its headquarters (think lower-rental area) and cut staff
members, and, having done that found out that life is never quite that simple, and,
after a stumble, getting up-and-running again is a rather longer process than one had
anticipated . . .

------------

Or; to tell you another story:

About 10 weeks ago I started getting rather unpleasant pain in my right shoulder, and
when I went to the doctor 4 weeks ago he told me I had something called "Periarthritis"
and to sort it out would involve 2 extremely painful cortico-steroid injections into the
joint followed by 3-6 months of daily physiotherapy.

When I said something about, "Oh, surely all I need is a spot of ointment" he made
a fairly coarse remark!

------------

Now, to return to my initial mental exercise . . .

Let's suppose that company found out that by making all sorts of great and glorious
promises it had over-extended itself. Now that that company is doing its damnedest
(and it probably does feel fairly "Damn" and "unfair" right now) to pull itself up by
its bootstraps, it finds that it has to either:

1. Conveniently become extremely "vague" about very many of the promises it
made previously,

or

2. Delay implementation of those promises to such an ill-defined time in the future
that there is a a risk of them becoming forgotten completely.

Now, were I a client of that company I would feel a certain amount of ambivalence
towards its situation.

1. I'd feel sorry for it that it and its directors had allowed itself to get in the sh*t.

2. I'd feel slightly cross if I felt that that company was not being entirely frank with
both its shareholders and its clients.

3. I'd also remember St. Thomas, who really didn't swallow the whole "Here's Jesus alive,
having been dead" thing until he'd poked his fingers into various places.

Now just how mental (or "mental") that exercise is I'm not able to say.

------------

Having seen promises made by a variety of setups (The HyperNEXT situation where
the developer categorically stated that there'd be a Linux version, which, after a bit
of "poking", after 4 years of nothing appearing, admitted he just wasn't up to) that
have not been kept owing to all sorts of unforeseen situations, all I can say is that
I'm extremely happy that LiveCode as it is at present already offers one hell of a
lot more in a hell of a lot more accessible fashion than many "also-rans".

------------

HyperNext: http://tigabyte.com/ ("Create Your Own Headache")

jacque
VIP Livecode Opensource Backer
VIP Livecode Opensource Backer
Posts: 7228
Joined: Sat Apr 08, 2006 8:31 pm
Location: Minneapolis MN
Contact:

Re: Ah the use list ...

Post by jacque » Sun Jan 27, 2019 7:44 pm

@Richmond, your speculations are very much off base. In fact, LC is doing exceptionally well right now and future prospects are rosy. That one bad year is behind them.

Delays are due partly to keeping up with unexpected OS changes on several platforms, and mostly due to work on features that are paying the bills. For those who use only the free OSS version, you're last in line. In fact, that's one reason the company is doing so well. Those who need advanced or additional features are willing to pay for them.

I notice most complaints come from the freeloaders.
Jacqueline Landman Gay | jacque at hyperactivesw dot com
HyperActive Software | http://www.hyperactivesw.com

richmond62
Livecode Opensource Backer
Livecode Opensource Backer
Posts: 9359
Joined: Fri Feb 19, 2010 10:17 am
Location: Bulgaria

Re: Ah the use list ...

Post by richmond62 » Sun Jan 27, 2019 8:19 pm

your speculations are very much off base
I am, oddly enough, extremely glad that they are. :D

One of the reasons I indulge is speculations from time to time is
because LiveCode can hardly be described as pellucid.

I should like to point out that there are "freeloaders"
and those who contributed to various fund-raising efforts
such as the Kickstarter (for which many things were promised
that have yet to materialise).

And, also, my own case, where I have held a variety of commercial licences over
the years paid for by other people who have given them to me as a way of signalling
appreciation of various non-financial contributions towards LiveCode. 8)

bogs
Posts: 5435
Joined: Sat Feb 25, 2017 10:45 pm

Re: Ah the use list ...

Post by bogs » Sun Jan 27, 2019 10:49 pm

jacque wrote:
Sun Jan 27, 2019 7:44 pm
I notice most complaints come from the freeloaders.
Ow, that hurts :cry:
Image

Post Reply

Return to “Getting Started with LiveCode - Complete Beginners”