Re: Fridays for Functions (Was: PilCon 2020)

2020-07-03 Thread Alexander Burger
Hi Domingo,

> I used this two lua scripts to get/generate then:
> 
> 
> 
> --local html = io.open("roseta-code.html"):read("*a")
> local base_url = "http://rosettacode.org";
> local html = io.popen("curl " .. base_url ..
> "/wiki/Category:PicoLisp"):read("*a")
> 
> html = html:gsub("Pages in category
> \"PicoLisp\".- class=\"printfooter\">",
>     function(m)
>         return m:gsub("(/wiki[^\"]+)(\" title=)" ,
>             function(link, title)
>                 return base_url .. link .. "#PicoLisp" .. title
>             end)
>     end)
> 
> print(html)
> 
> 
> 
> 
> 
> local html = io.open("roseta-code.html"):read("*a")
> --local base_url = "http://rosettacode.org";
> --local html = io.popen("curl " .. base_url ..
> "/wiki/Category:PicoLisp"):read("*a")
> 
> local code_links = html:match("Pages in
> category
> \"PicoLisp\".- class=\"printfooter\">")
> 
> for link, title in code_links:gmatch("href=\"([^\"]+).->([^<]+)") do
>     print( string.format("-{^{%s %s}}", link, title))
> end
> 
> 


Thanks a lot!

For completeness, here is the same (if I understand your scripts correctly - I
have no idea of lua) in PicoLisp:


   (in '(curl "-s" "http://rosettacode.org/wiki/Category:PicoLisp";)
  (from "Pages in category \"PicoLisp\"")
  (while (== "http://rosettacode.org"; (till "\"") "#PicoLisp ")
 (from "title=\"")
 (prinl (till "\"") "}}") ) )



As you see, no need for regexps, and no need for the overhead slurping the whole
stuff into memory. Just simple stream processing.

☺/ A!ex

-- 
UNSUBSCRIBE: mailto:picolisp@software-lab.de?subject=Unsubscribe


Re: Fridays for Functions (Was: PilCon 2020)

2020-07-03 Thread Domingo Alvarez Duarte

Hello all !

After participating on the jitisi meeting today I edited this page 
https://picolisp.com/wiki/?PCE and added direct links to rosettacode 
picolisp examples (with #PicoLisp).


I used this two lua scripts to get/generate then:



--local html = io.open("roseta-code.html"):read("*a")
local base_url = "http://rosettacode.org";
local html = io.popen("curl " .. base_url .. 
"/wiki/Category:PicoLisp"):read("*a")


html = html:gsub("Pages in category 
\"PicoLisp\".-",

    function(m)
        return m:gsub("(/wiki[^\"]+)(\" title=)" ,
            function(link, title)
                return base_url .. link .. "#PicoLisp" .. title
            end)
    end)

print(html)





local html = io.open("roseta-code.html"):read("*a")
--local base_url = "http://rosettacode.org";
--local html = io.popen("curl " .. base_url .. 
"/wiki/Category:PicoLisp"):read("*a")


local code_links = html:match("Pages in category 
\"PicoLisp\".-")


for link, title in code_links:gmatch("href=\"([^\"]+).->([^<]+)") do
    print( string.format("-{^{%s %s}}", link, title))
end



Again thank you for all your time and great work !

Cheers !

On 3/7/20 12:21, Alexander Burger wrote:

On Fri, Jul 03, 2020 at 12:53:03AM -0700, C K Kashyap wrote:

OopsI did not plan my day well...its at 1am here :(I'll have to
join in the morning to see if the meeting is still on.

Oh, a pity! Sorry, we just finished :(

Surely in 2 weeks it is better (16 UTC)

☺/ A!ex



--
UNSUBSCRIBE: mailto:picolisp@software-lab.de?subject=Unsubscribe


Re: Fridays for Functions (Was: PilCon 2020)

2020-07-03 Thread Alexander Burger
On Fri, Jul 03, 2020 at 12:53:03AM -0700, C K Kashyap wrote:
> OopsI did not plan my day well...its at 1am here :(I'll have to
> join in the morning to see if the meeting is still on.

Oh, a pity! Sorry, we just finished :(

Surely in 2 weeks it is better (16 UTC)

☺/ A!ex

-- 
UNSUBSCRIBE: mailto:picolisp@software-lab.de?subject=Unsubscribe


Re: Fridays for Functions (Was: PilCon 2020)

2020-07-03 Thread C K Kashyap
OopsI did not plan my day well...its at 1am here :(I'll have to
join in the morning to see if the meeting is still on.

On Thu, Jul 2, 2020, 6:43 PM Bruno Franco 
wrote:

> Unfortunately, 8 UTC is too early for me XD, I'll have to wait for the 16
> UTC meeting
>
> On Thu, Jul 2, 2020 at 12:06 PM C K Kashyap  wrote:
>
>> I can't wait :)
>>
>> On Thu, Jul 2, 2020 at 9:46 AM Alexander Burger > > wrote:
>>
>>> On Thu, Jul 02, 2020 at 09:28:09AM -0700, C K Kashyap wrote:
>>> > Just to confirm - is this at 8am UTC on 3rd July?
>>>
>>> Yes, that's right. About 15 hours and 20 minutes from now ;)
>>>
>>> ☺/ A!ex
>>>
>>> --
>>> UNSUBSCRIBE: mailto:picolisp@software-lab.de?subject=Unsubscribe
>>>
>>


Re: Fridays for Functions (Was: PilCon 2020)

2020-07-02 Thread Bruno Franco
Unfortunately, 8 UTC is too early for me XD, I'll have to wait for the 16
UTC meeting

On Thu, Jul 2, 2020 at 12:06 PM C K Kashyap  wrote:

> I can't wait :)
>
> On Thu, Jul 2, 2020 at 9:46 AM Alexander Burger 
> wrote:
>
>> On Thu, Jul 02, 2020 at 09:28:09AM -0700, C K Kashyap wrote:
>> > Just to confirm - is this at 8am UTC on 3rd July?
>>
>> Yes, that's right. About 15 hours and 20 minutes from now ;)
>>
>> ☺/ A!ex
>>
>> --
>> UNSUBSCRIBE: mailto:picolisp@software-lab.de?subject=Unsubscribe
>>
>


Re: Fridays for Functions (Was: PilCon 2020)

2020-07-02 Thread C K Kashyap
I can't wait :)

On Thu, Jul 2, 2020 at 9:46 AM Alexander Burger  wrote:

> On Thu, Jul 02, 2020 at 09:28:09AM -0700, C K Kashyap wrote:
> > Just to confirm - is this at 8am UTC on 3rd July?
>
> Yes, that's right. About 15 hours and 20 minutes from now ;)
>
> ☺/ A!ex
>
> --
> UNSUBSCRIBE: mailto:picolisp@software-lab.de?subject=Unsubscribe
>


Re: Fridays for Functions (Was: PilCon 2020)

2020-07-02 Thread Alexander Burger
On Thu, Jul 02, 2020 at 09:28:09AM -0700, C K Kashyap wrote:
> Just to confirm - is this at 8am UTC on 3rd July?

Yes, that's right. About 15 hours and 20 minutes from now ;)

☺/ A!ex

-- 
UNSUBSCRIBE: mailto:picolisp@software-lab.de?subject=Unsubscribe


Re: Fridays for Functions (Was: PilCon 2020)

2020-07-02 Thread C K Kashyap
Just to confirm - is this at 8am UTC on 3rd July?
regards,
Kashyap

On Wed, Jul 1, 2020 at 8:42 AM C K Kashyap  wrote:

> Yes, I agree. I am totally onboard with "meet and greet" ... It will be
> good to just interact with folks with similar interests!
>
> Regards,
> Kashyap
>
> On Wed, Jul 1, 2020 at 7:48 AM Alexander Burger 
> wrote:
>
>> Hi Kashyap,
>>
>> > Would this be recorded?  There is just not enough picoLisp  video
>> content
>> > out there in my opinion.
>> > I would like a session on History/evolution of Picolisp in your own
>> words
>>
>> AFAIK not in the current setup. Jitsi allows some connection to youtube
>> iirc,
>> but I have not investigated. (beneroth?)
>>
>> I don't mind, but I don't expect linear stuff at this stage, no really
>> useful
>> presentation, more informal talks (e.g. introducing each other).
>>
>> For useful presentations to be recorded for eternity it would be better to
>> prepare *real* presentations. But for such presentations, we don't need to
>> gather at such meetings at all, instead anybody could upload such videos
>> and
>> others may look when they have time :)
>>
>> What do you other guys think?
>>
>> ☺/ A!ex
>>
>> --
>> UNSUBSCRIBE: mailto:picolisp@software-lab.de?subject=Unsubscribe
>>
>


Re: Fridays for Functions (Was: PilCon 2020)

2020-07-01 Thread C K Kashyap
Yes, I agree. I am totally onboard with "meet and greet" ... It will be
good to just interact with folks with similar interests!

Regards,
Kashyap

On Wed, Jul 1, 2020 at 7:48 AM Alexander Burger  wrote:

> Hi Kashyap,
>
> > Would this be recorded?  There is just not enough picoLisp  video content
> > out there in my opinion.
> > I would like a session on History/evolution of Picolisp in your own words
>
> AFAIK not in the current setup. Jitsi allows some connection to youtube
> iirc,
> but I have not investigated. (beneroth?)
>
> I don't mind, but I don't expect linear stuff at this stage, no really
> useful
> presentation, more informal talks (e.g. introducing each other).
>
> For useful presentations to be recorded for eternity it would be better to
> prepare *real* presentations. But for such presentations, we don't need to
> gather at such meetings at all, instead anybody could upload such videos
> and
> others may look when they have time :)
>
> What do you other guys think?
>
> ☺/ A!ex
>
> --
> UNSUBSCRIBE: mailto:picolisp@software-lab.de?subject=Unsubscribe
>


Re: Fridays for Functions (Was: PilCon 2020)

2020-07-01 Thread Alexander Burger
Hi Kashyap,

> Would this be recorded?  There is just not enough picoLisp  video content
> out there in my opinion.
> I would like a session on History/evolution of Picolisp in your own words

AFAIK not in the current setup. Jitsi allows some connection to youtube iirc,
but I have not investigated. (beneroth?)

I don't mind, but I don't expect linear stuff at this stage, no really useful
presentation, more informal talks (e.g. introducing each other).

For useful presentations to be recorded for eternity it would be better to
prepare *real* presentations. But for such presentations, we don't need to
gather at such meetings at all, instead anybody could upload such videos and
others may look when they have time :)

What do you other guys think?

☺/ A!ex

-- 
UNSUBSCRIBE: mailto:picolisp@software-lab.de?subject=Unsubscribe


Re: Fridays for Functions (Was: PilCon 2020)

2020-07-01 Thread C K Kashyap
Would this be recorded?  There is just not enough picoLisp  video content
out there in my opinion.

I would like a session on History/evolution of Picolisp in your own words
Alex!

Regards,
Kashyap




On Wed, Jul 1, 2020 at 3:59 AM Alexander Burger  wrote:

> Hi all,
>
> On Thu, Jun 18, 2020 at 08:42:48AM +0200, Alexander Burger wrote:
> > The first one is on 3rd of July, 8:00 UTC
> >
> >https://meeting.itship.ch/PilCon
>
> My proposal would be to start free-form, exchanging ideas and questions.
>
> If there is interest, I could explain and demonstrate "FireFight", a
> non-trivial
> PicoLisp project I'm writing for the Catalonian Forest Fire volunteers. It
> involves many aspect of PicoLisp application development, like a central
> database communicating with remote Android (PilBox) devices, replicating
> databases between them, and showing the states in interactive
> OpenStreetMaps.
>
> ☺/ A!ex
>
> --
> UNSUBSCRIBE: mailto:picolisp@software-lab.de?subject=Unsubscribe
>


Re: Fridays for Functions (Was: PilCon 2020)

2020-07-01 Thread Alexander Burger
Hi all,

On Thu, Jun 18, 2020 at 08:42:48AM +0200, Alexander Burger wrote:
> The first one is on 3rd of July, 8:00 UTC
> 
>https://meeting.itship.ch/PilCon

My proposal would be to start free-form, exchanging ideas and questions.

If there is interest, I could explain and demonstrate "FireFight", a non-trivial
PicoLisp project I'm writing for the Catalonian Forest Fire volunteers. It
involves many aspect of PicoLisp application development, like a central
database communicating with remote Android (PilBox) devices, replicating
databases between them, and showing the states in interactive OpenStreetMaps.

☺/ A!ex

-- 
UNSUBSCRIBE: mailto:picolisp@software-lab.de?subject=Unsubscribe


Re: Fridays for Functions (Was: PilCon 2020)

2020-06-20 Thread C K Kashyap
+ 1 ... looking forward to it

On Wed, Jun 17, 2020 at 11:48 PM Alexander Burger 
wrote:

> Hi all,
>
> On Wed, Jun 03, 2020 at 07:54:22AM +0200, Alexander Burger wrote:
> > I would propose informal Jitsi meetings every second Friday or so. The
> time
> > could be alternating 8:00 and 16:00 UTC, to allow attendance from most
> time
> > zones. No big planning and schedule. Let's start with questions,
> tutorials and
> > demonstrations.
>
> OK, so let's try it!
>
> The first one is on 3rd of July, 8:00 UTC
>
>https://meeting.itship.ch/PilCon
>
> I'm looking forward to it :)
>
> ☺/ A!ex
>
> --
> UNSUBSCRIBE: mailto:picolisp@software-lab.de?subject=Unsubscribe
>


Re: Fridays for Functions (Was: PilCon 2020)

2020-06-17 Thread Alexander Burger
Hi all,

On Wed, Jun 03, 2020 at 07:54:22AM +0200, Alexander Burger wrote:
> I would propose informal Jitsi meetings every second Friday or so. The time
> could be alternating 8:00 and 16:00 UTC, to allow attendance from most time
> zones. No big planning and schedule. Let's start with questions, tutorials and
> demonstrations.

OK, so let's try it!

The first one is on 3rd of July, 8:00 UTC

   https://meeting.itship.ch/PilCon

I'm looking forward to it :)

☺/ A!ex

-- 
UNSUBSCRIBE: mailto:picolisp@software-lab.de?subject=Unsubscribe



Re: Fridays for Functions (Was: PilCon 2020)

2020-06-03 Thread rick
Sounds great! Thanks!

-- 
UNSUBSCRIBE: mailto:picolisp@software-lab.de?subject=Unsubscribe


Re: Fridays for Functions (Was: PilCon 2020)

2020-06-03 Thread rick
Sounds great! Thanks!

-- 
UNSUBSCRIBE: mailto:picolisp@software-lab.de?subject=Unsubscribe



Re: Fridays for Functions (Was: PilCon 2020)

2020-06-03 Thread Kevin Ednalino
Sounds good!

On Wed, Jun 3, 2020 at 7:00 AM Alexander Burger  wrote:

> Hi all,
>
> after we canceled PilCon 2020, we discussed in this list and in IRC the
> idea of
> doing something online instead. Some people proposed Jitsi.
>
> A linear format of just streaming presentations is a bit uninteresting.
> This
> could be done in a Youtube channel. What do you think about a free-form
> ongoing
> event, with regular shorter meetings?
>
> Beneroth already set up a Jitsi server. He also came up with the name
> "PilClub".
>
> I would propose informal Jitsi meetings every second Friday or so. The time
> could be alternating 8:00 and 16:00 UTC, to allow attendance from most time
> zones. No big planning and schedule. Let's start with questions, tutorials
> and
> demonstrations.
>
> Any thoughts?
>
> ☺/ A!ex
>
> --
> UNSUBSCRIBE: mailto:picolisp@software-lab.de?subject=Unsubscribe
>


Re: Fridays for Functions (Was: PilCon 2020)

2020-06-03 Thread Wilhelm Fitzpatrick

I'd definitely try to join to listen and learn.

On 6/2/20 11:26 PM, Jean-Christophe Helary wrote:



On Jun 3, 2020, at 14:54, Alexander Burger  wrote:

I would propose informal Jitsi meetings every second Friday or so. The time
could be alternating 8:00 and 16:00 UTC, to allow attendance from most time
zones. No big planning and schedule. Let's start with questions, tutorials and
demonstrations.

Any thoughts?

Nice idea ! :)




--
UNSUBSCRIBE: mailto:picolisp@software-lab.de?subject=Unsubscribe


Re: Fridays for Functions (Was: PilCon 2020)

2020-06-03 Thread C K Kashyap
Thanks beneroth! It works for me :)

On Wed, Jun 3, 2020 at 8:48 AM  wrote:

> Hi Kashyap
>
> No, there is an webinterface and the app. Feel free to try out my server:
> https://meeting.itship.ch
>
> The webinterface is usually run on the server which is hosting the video
> conference, but they're separate pieces of software ("jitsi meet" and
> "jitsi video bridge"). The app can connect to every publicly accessible
> server, by default it connects to the one operated by the jitsi project
> itself (https://meet.jit.si/).
>
> The webinterface has actually more features (e.g. screen sharing), but the
> app is more optimized (I expect better stream quality / less bandwidth
> load).
> Chrome/chromium is better supported. In the past a single Firefox client
> in a conference could apparently cause higher/multiplication of bandwidth
> load for every participant, though this should be much better with the
> newest version of Jitsi and the newest Firefox.
> See:
> - https://github.com/jitsi/jitsi-meet/issues/4758
> -
> https://bugzilla.mozilla.org/buglist.cgi?columnlist=bug_type%2Cshort_desc%2Cproduct%2Ccomponent%2Cpriority%2Cassigned_to%2Ccf_status_firefox75%2Ccf_status_firefox76%2Ccf_status_firefox77%2Ccf_status_firefox_esr68%2Cbug_status%2Cresolution%2Cchangeddate&query_format=advanced&status_whiteboard=jitsi-meet&status_whiteboard_type=substring&query_based_on=
>
> Regards,
> beneroth
> On 03.06.20 16:57, C K Kashyap wrote:
>
> Is Jitsi a phone only tool? I only see an apple/android download here -
> https://jitsi.org/#download
>
> Regards,
> Kashyap
>
> On Wed, Jun 3, 2020 at 7:55 AM C K Kashyap  wrote:
>
>> Wonderful idea indeed!
>>
>> On Wed, Jun 3, 2020 at 6:01 AM Davide BERTOLOTTO <
>> davide.bertolo...@gmail.com> wrote:
>>
>>> Wonderful idea
>>>
>>> On Wed, Jun 3, 2020, 13:27 O.Hamann >
>>> wrote:
>>>
 ++

 On 03.06.20 07:54, Alexander Burger wrote:
 > I would propose informal Jitsi meetings every second Friday or so.
 The time
 > could be alternating 8:00 and 16:00 UTC, to allow attendance from
 most time
 > zones. No big planning and schedule. Let's start with questions,
 tutorials and
 > demonstrations.

 --
 UNSUBSCRIBE: mailto:picolisp@software-lab.de?subject=Unsubscribe




Re: Fridays for Functions (Was: PilCon 2020)

2020-06-03 Thread andreas
Hi Kashyap

No, there is an webinterface and the app. Feel free to try out my
server: https://meeting.itship.ch

The webinterface is usually run on the server which is hosting the video
conference, but they're separate pieces of software ("jitsi meet" and
"jitsi video bridge"). The app can connect to every publicly accessible
server, by default it connects to the one operated by the jitsi project
itself (https://meet.jit.si/).

The webinterface has actually more features (e.g. screen sharing), but
the app is more optimized (I expect better stream quality / less
bandwidth load).
Chrome/chromium is better supported. In the past a single Firefox client
in a conference could apparently cause higher/multiplication of
bandwidth load for every participant, though this should be much better
with the newest version of Jitsi and the newest Firefox.
See:
- https://github.com/jitsi/jitsi-meet/issues/4758
-
https://bugzilla.mozilla.org/buglist.cgi?columnlist=bug_type%2Cshort_desc%2Cproduct%2Ccomponent%2Cpriority%2Cassigned_to%2Ccf_status_firefox75%2Ccf_status_firefox76%2Ccf_status_firefox77%2Ccf_status_firefox_esr68%2Cbug_status%2Cresolution%2Cchangeddate&query_format=advanced&status_whiteboard=jitsi-meet&status_whiteboard_type=substring&query_based_on=

Regards,
beneroth

On 03.06.20 16:57, C K Kashyap wrote:
> Is Jitsi a phone only tool? I only see an apple/android download here
> -  https://jitsi.org/#download  
>
> Regards,
> Kashyap
>
> On Wed, Jun 3, 2020 at 7:55 AM C K Kashyap  > wrote:
>
> Wonderful idea indeed!
>
> On Wed, Jun 3, 2020 at 6:01 AM Davide BERTOLOTTO
> mailto:davide.bertolo...@gmail.com>>
> wrote:
>
> Wonderful idea
>
> On Wed, Jun 3, 2020, 13:27 O.Hamann  > wrote:
>
> ++
>
> On 03.06.20 07:54, Alexander Burger wrote:
> > I would propose informal Jitsi meetings every second
> Friday or so. The time
> > could be alternating 8:00 and 16:00 UTC, to allow
> attendance from most time
> > zones. No big planning and schedule. Let's start with
> questions, tutorials and
> > demonstrations.
>
> -- 
> UNSUBSCRIBE: mailto:picolisp@software-lab.de
> ?subject=Unsubscribe
>


Re: Fridays for Functions (Was: PilCon 2020)

2020-06-03 Thread Lindsay Lawrence
This is a great idea. Count me in.

On Tue, Jun 2, 2020 at 10:59 PM Alexander Burger 
wrote:

> Hi all,
>
> after we canceled PilCon 2020, we discussed in this list and in IRC the
> idea of
> doing something online instead. Some people proposed Jitsi.
>
> A linear format of just streaming presentations is a bit uninteresting.
> This
> could be done in a Youtube channel. What do you think about a free-form
> ongoing
> event, with regular shorter meetings?
>
> Beneroth already set up a Jitsi server. He also came up with the name
> "PilClub".
>
> I would propose informal Jitsi meetings every second Friday or so. The time
> could be alternating 8:00 and 16:00 UTC, to allow attendance from most time
> zones. No big planning and schedule. Let's start with questions, tutorials
> and
> demonstrations.
>
> Any thoughts?
>
> ☺/ A!ex
>
> --
> UNSUBSCRIBE: mailto:picolisp@software-lab.de?subject=Unsubscribe
>


Re: Fridays for Functions (Was: PilCon 2020)

2020-06-03 Thread C K Kashyap
Is Jitsi a phone only tool? I only see an apple/android download here -
https://jitsi.org/#download

Regards,
Kashyap

On Wed, Jun 3, 2020 at 7:55 AM C K Kashyap  wrote:

> Wonderful idea indeed!
>
> On Wed, Jun 3, 2020 at 6:01 AM Davide BERTOLOTTO <
> davide.bertolo...@gmail.com> wrote:
>
>> Wonderful idea
>>
>> On Wed, Jun 3, 2020, 13:27 O.Hamann  wrote:
>>
>>> ++
>>>
>>> On 03.06.20 07:54, Alexander Burger wrote:
>>> > I would propose informal Jitsi meetings every second Friday or so. The
>>> time
>>> > could be alternating 8:00 and 16:00 UTC, to allow attendance from most
>>> time
>>> > zones. No big planning and schedule. Let's start with questions,
>>> tutorials and
>>> > demonstrations.
>>>
>>> --
>>> UNSUBSCRIBE: mailto:picolisp@software-lab.de?subject=Unsubscribe
>>>
>>>


Re: Fridays for Functions (Was: PilCon 2020)

2020-06-03 Thread C K Kashyap
Wonderful idea indeed!

On Wed, Jun 3, 2020 at 6:01 AM Davide BERTOLOTTO <
davide.bertolo...@gmail.com> wrote:

> Wonderful idea
>
> On Wed, Jun 3, 2020, 13:27 O.Hamann  wrote:
>
>> ++
>>
>> On 03.06.20 07:54, Alexander Burger wrote:
>> > I would propose informal Jitsi meetings every second Friday or so. The
>> time
>> > could be alternating 8:00 and 16:00 UTC, to allow attendance from most
>> time
>> > zones. No big planning and schedule. Let's start with questions,
>> tutorials and
>> > demonstrations.
>>
>> --
>> UNSUBSCRIBE: mailto:picolisp@software-lab.de?subject=Unsubscribe
>>
>>


Re: Fridays for Functions (Was: PilCon 2020)

2020-06-03 Thread Davide BERTOLOTTO
Wonderful idea

On Wed, Jun 3, 2020, 13:27 O.Hamann  wrote:

> ++
>
> On 03.06.20 07:54, Alexander Burger wrote:
> > I would propose informal Jitsi meetings every second Friday or so. The
> time
> > could be alternating 8:00 and 16:00 UTC, to allow attendance from most
> time
> > zones. No big planning and schedule. Let's start with questions,
> tutorials and
> > demonstrations.
>
> --
> UNSUBSCRIBE: mailto:picolisp@software-lab.de?subject=Unsubscribe
>
>


Re: Fridays for Functions (Was: PilCon 2020)

2020-06-03 Thread O.Hamann
++

On 03.06.20 07:54, Alexander Burger wrote:
> I would propose informal Jitsi meetings every second Friday or so. The time
> could be alternating 8:00 and 16:00 UTC, to allow attendance from most time
> zones. No big planning and schedule. Let's start with questions, tutorials and
> demonstrations.

-- 
UNSUBSCRIBE: mailto:picolisp@software-lab.de?subject=Unsubscribe



Re: Fridays for Functions (Was: PilCon 2020)

2020-06-02 Thread George-Phillip Orais
Super! I will indeed join and listen to learn more, thanks Alex and
everyone!

On Wed, Jun 3, 2020 at 3:30 PM Jean-Christophe Helary <
jean.christophe.hel...@traduction-libre.org> wrote:

>
>
> > On Jun 3, 2020, at 14:54, Alexander Burger  wrote:
> >
> > I would propose informal Jitsi meetings every second Friday or so. The
> time
> > could be alternating 8:00 and 16:00 UTC, to allow attendance from most
> time
> > zones. No big planning and schedule. Let's start with questions,
> tutorials and
> > demonstrations.
> >
> > Any thoughts?
>
> Nice idea ! :)
>
>
> --
> Jean-Christophe Helary @brandelune
> http://mac4translators.blogspot.com
>
>
> --
> UNSUBSCRIBE: mailto:picolisp@software-lab.de?subjectUnsubscribe
>
>


Re: Fridays for Functions (Was: PilCon 2020)

2020-06-02 Thread Jean-Christophe Helary



> On Jun 3, 2020, at 14:54, Alexander Burger  wrote:
> 
> I would propose informal Jitsi meetings every second Friday or so. The time
> could be alternating 8:00 and 16:00 UTC, to allow attendance from most time
> zones. No big planning and schedule. Let's start with questions, tutorials and
> demonstrations.
> 
> Any thoughts?

Nice idea ! :)


-- 
Jean-Christophe Helary @brandelune
http://mac4translators.blogspot.com


--
UNSUBSCRIBE: mailto:picolisp@software-lab.de?subject=Unsubscribe



Re: Fridays for Functions (Was: PilCon 2020)

2020-06-02 Thread Mattias Sundblad
Hello everyone!

I like this idea. We could have a permanent arrangement like this, I think it 
would be very good for the community. 

A nice way to discuss things and raise questions. Count me in!

Mattias

Alexander Burger  skrev: (3 juni 2020 07:54:22 CEST)
>Hi all,
>
>after we canceled PilCon 2020, we discussed in this list and in IRC the
>idea of
>doing something online instead. Some people proposed Jitsi.
>
>A linear format of just streaming presentations is a bit uninteresting.
>This
>could be done in a Youtube channel. What do you think about a free-form
>ongoing
>event, with regular shorter meetings?
>
>Beneroth already set up a Jitsi server. He also came up with the name
>"PilClub".
>
>I would propose informal Jitsi meetings every second Friday or so. The
>time
>could be alternating 8:00 and 16:00 UTC, to allow attendance from most
>time
>zones. No big planning and schedule. Let's start with questions,
>tutorials and
>demonstrations.
>
>Any thoughts?
>
>☺/ A!ex
>
>-- 
>UNSUBSCRIBE: mailto:picolisp@software-lab.de?subject=Unsubscribe

--
UNSUBSCRIBE: mailto:picolisp@software-lab.de?subject=Unsubscribe


Fridays for Functions (Was: PilCon 2020)

2020-06-02 Thread Alexander Burger
Hi all,

after we canceled PilCon 2020, we discussed in this list and in IRC the idea of
doing something online instead. Some people proposed Jitsi.

A linear format of just streaming presentations is a bit uninteresting. This
could be done in a Youtube channel. What do you think about a free-form ongoing
event, with regular shorter meetings?

Beneroth already set up a Jitsi server. He also came up with the name "PilClub".

I would propose informal Jitsi meetings every second Friday or so. The time
could be alternating 8:00 and 16:00 UTC, to allow attendance from most time
zones. No big planning and schedule. Let's start with questions, tutorials and
demonstrations.

Any thoughts?

☺/ A!ex

-- 
UNSUBSCRIBE: mailto:picolisp@software-lab.de?subject=Unsubscribe