[Pharo-users] Re: Telegram Bots with Pharo

2020-09-21 Thread Pablo Navarro
ice if the bot had a link to its > github repository and the framework’s repo so people could follow from there > ;) > > Cheers, > Guille > > > El 18 sept 2020, a las 22:55, Pablo Navarro escribió: > > > > Hi everyone, I share a tool for creating telegram Bot

[Pharo-users] Telegram Bots with Pharo

2020-09-18 Thread Pablo Navarro
Hi everyone, I share a tool for creating telegram Bots with Pharo. This library provides an interface for the Telegram Bot API. To create our telegram bot in Pharo, the first thing we need to do is to create a new object that inherits from Bottlegram. This object must define at least these thre

[Pharo-users] Re: roman numbers

2020-09-18 Thread Pablo Navarro
Hi! Maybe you can use this algorithm: Define a dictionary with these elements: 1000:'M', 900:'CM', 500: 'D', 400: 'CD', 100:"C", 90:'XC', 50:'L', 40:'XL', 10:'X', 9:'IX', 5:'V', 4:'IV', 1:'I' Using this dictionary (romansDic), you define a recursive function: toRomans(number){   i = retur

Re: [Pharo-users] mentor question 4

2020-04-30 Thread Pablo Navarro
ld possibly gain by doing so. > How do you do the equivalent of > #(0 2 4 6 8 1 3 5 7 9) at: char digitValue + 1 > in a regular expression and why would you want to? > > On Fri, 1 May 2020 at 01:31, Pablo Navarro wrote: > > > > Hello!. For this problem is possible to u

Re: [Pharo-users] mentor question 4

2020-04-30 Thread Pablo Navarro
Hello!. For this problem is possible to use Regular Expressions too. https://ci.inria.fr/pharo-contribution/job/UpdatedPharoByExample/lastSuccessfulBuild/artifact/book-result/Regex/Regex.html Saludos, Pablo. El 30 de abr. de 2020 10:11 -0300, Stéphane Ducasse , escribió: > It looks like a cool p

Re: [Pharo-users] Pharo image processing library

2020-02-05 Thread Pablo Navarro
Hi everyone I put available my code for Image Form in GitHub (https://github.com/pablo1n7/ImageForm). This afternoon, I did the operations with kernels :D. It's not 100% complete, I'm still working on it. I hope you find it useful and any suggestion is welcomed Best Regards, Pablo. El 25 de e

Re: [Pharo-users] Pharo image processing library

2020-01-28 Thread Pablo Navarro
Hi everyone! after what we talked about the other day, I started to work with the test cases of Form. I don´t know if the best form for share but I load some in my Github: https://github.com/pablo1n7/FormTest. There are still many tests to do but it's a beginning. For the other hand, I created

Re: [Pharo-users] Pharo image processing library

2020-01-27 Thread Pablo Navarro
hi, I’m looking. very interesting, thanks. Pablo. El 27 de ene. de 2020 00:35 -0300, Any question about pharo is welcome , escribió: > > https://80738163270632.blogspot.com/2018/10/pharo-script-of-day-proto-proto-image.html

Re: [Pharo-users] Pharo image processing library

2020-01-26 Thread Pablo Navarro
to Form and clearly the class Form itself > refers too much to it. > Now with more tests we would be more confident to change. > > > S. > > > On 25 Jan 2020, at 17:41, Pablo Navarro wrote: > > Hi everyone! Thanks for the comments, I don't create a repository yet

Re: [Pharo-users] Pharo image processing library

2020-01-25 Thread Pablo Navarro
inckwich > > wrote: > > > > You may have a look to Cuis library : > > https://github.com/Cuis-Smalltalk/Numerics > > There is an image analysis package. > > We have some plan in PolyMath to port it: > > https://github.com/PolyMathOrg/PolyMath/issues/

[Pharo-users] Pharo image processing library

2020-01-24 Thread Pablo Navarro
Hi everyone! I’m searching for one library for image processing in Pharo. I couldn't find anything (only wrappers) so I tried programming one for basic operations (sum, subtraction) with images using class “Form”. What do you think about this? For providing a context, I'm studying a PhD. in ima

Re: [Pharo-users] Hi Community

2019-12-30 Thread Pablo Navarro
Hi! Thanks for all your comments, I deployed a presentation made with Smallbook in Heroku (https://pharo-smallbook.herokuapp.com) I hope you like it. Best Regards Pablo. El 29 de dic. de 2019 07:18 -0300, Petter , escribió: Hei Pablo and thanks for an interesting project. I liked the feature th

Re: [Pharo-users] Hi Community

2019-12-28 Thread Pablo Navarro
llar) > > Norbert > > > Am 27.12.2019 um 23:55 schrieb Pablo Navarro : > > > > Hi everyone, my name's Pablo and I'm from Argentina. I'm taking my first > > steps in Pharo and created this tool > > (https://github.com/pablo1n7/Smallbook) to share w

[Pharo-users] Hi Community

2019-12-27 Thread Pablo Navarro
Hi everyone, my name's Pablo and I'm from Argentina. I'm taking my first steps in Pharo and created this tool (https://github.com/pablo1n7/Smallbook) to share with my colleagues and show them the power of Pharo. It's a simple library to create slide presentations and show them in a web browser.