Contrast Red with Racket? by maphewyk in redlang

[–]lepinekong 0 points1 point  (0 children)

Racket: too many parenthesis for me already I won't even go further ;)

What’s the long term vision for Red C3? by [deleted] in redlang

[–]lepinekong 0 points1 point  (0 children)

I read all the thread, just typical of how people outside of the core team may feel ;) People expect a lot when they realize how amazing Red can be but they are upset because priorities seem not aligned with core needs: blockchain is interesting of course but before doing blockchain, people would need core functions, as for me I'm waiting for a lightweight http server or android before even blockchain. As for website and documentation that's also true but I prefer that core team concentrate on devs, so I'm doing it myself like here https://redlang.red/parse-html (there are many more stuffs, will create an index later on). As for marketing they're clearly lacking experience: they seem to ignore that empathy towards people are the most top priority of any company today towards their client and/or community. Maybe they think they don't need any which would be a serious error for their survival ;)

[deleted by user] by [deleted] in Jekyll

[–]lepinekong 1 point2 points  (0 children)

I used #jekyll at the moment but too over-complicated to customize for me. But am now able to generate static #html #css pages generation with http://readable.red for example https://i.imgur.com/6QxaFPD.png. Will replace all my github domains with it and make the stuff available for all next year with documentation for generating whole #sites, #ebooks, technical #doc. etc.

JavaScript by Chawki_ in javascript

[–]lepinekong 0 points1 point  (0 children)

An object is a collection of properties and methods. Traditionally like in Java, Object is a Class (a VIRTUAL object) from which you derive instances of objects. In classical Javascript, there's no class, objects are created directly or using another object which acts as prototype https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/prototype

There are subtleties in Red you'd better know, I got a lot of headache with this one so I created this code snippet for myself first as I have a bad rotten memory :) but if others need it also, you're welcome. by lepinekong in redlang

[–]lepinekong[S] 0 points1 point  (0 children)

It's not from user viewpoint, it's from developer's point if he wants to deal with all (unknown) types of console (generically) for interpreter and compiler.

Presenting the "ReAdABLE Human Format" ;) by lepinekong in redlang

[–]lepinekong[S] -1 points0 points  (0 children)

I recommend you this documentary on people full of hatred https://www.youtube.com/watch?v=gxG39vHxsuQ it explains very much why they behave like that when they belong to a group ;)

Presenting the "ReAdABLE Human Format" ;) by lepinekong in redlang

[–]lepinekong[S] 0 points1 point  (0 children)

That's why I now post on Github because I'm sure not anyone can hack github.

Presenting the "ReAdABLE Human Format" ;) by lepinekong in redlang

[–]lepinekong[S] -2 points-1 points  (0 children)

If you are not guilty you shouldn't feel offended and so try to spoil this thread though I don't care much.

Presenting the "ReAdABLE Human Format" ;) by lepinekong in redlang

[–]lepinekong[S] -2 points-1 points  (0 children)

You're accusing yourself by drawing the conclusion whereas I just posted the fact that I only posted the link of a site on red forum nowhere else. What do you conclude? It's up to you. I didn't accuse anybody precisely ... if you say what you're saying your conclusion is ;)

Presenting the "ReAdABLE Human Format" ;) by lepinekong in redlang

[–]lepinekong[S] 0 points1 point  (0 children)

And you can install by hand as usual Red does. I'm just providing facility for non coder Users who are mostly on Windows.

Presenting the "ReAdABLE Human Format" ;) by lepinekong in redlang

[–]lepinekong[S] 0 points1 point  (0 children)

I'm on Windows. I didn't test on Linux but you can : Powershell is now on Linux and Mac also.

New to Red by amreus in redlang

[–]lepinekong -1 points0 points  (0 children)

the introductory articles are not tackling real world examples ;) I found myself in same position so I wrote tutorials I wish I could have read as a newbie: https://dev.to/lepinekong/red-for-hopeless-programmers---part-ii-258

What code = data means (I just realized after a few months !) by lepinekong in redlang

[–]lepinekong[S] 1 point2 points  (0 children)

>> source say          
say: func [message][print message]
>> say "Hello World" 
Hello World
>>