Re: [Pharo-users] Accessing DLLs in Smalltalk/V

2014-05-29 Thread Joachim Geidel
Hello Clément, Am 29.05.2014 um 17:23 schrieb Clément Bera : > NativeBoost is clearly the best option because it is the fastest, it is > mostly implemented in the image so you can look at the code and it is by > default in the image. > > FFI from the VM typically manages much better callbacks,

Re: [Pharo-users] Sending transactional emails from Pharo

2014-05-29 Thread Esteban A. Maringolo
As promised... I tested it, and worked. Thank you again Norbert! I chose Mandrill over Postmark by two main reasons (other than better looking UI): * It doesn't require me to authenticate the from address (which is unexistant, because it is a no-reply address, and the domain doesn't even have a MX

Re: [Pharo-users] Wiki system for Pharo (smalltalk)?

2014-05-29 Thread Esteban Lorenzano
as a wiki, marina need some work (is more a cms, now… it needs something on top to make it cool). it you are willing to do it, we would welcome the work :) https://github.com/tide-framework/marina Esteban On 29 May 2014, at 18:37, Mircea wrote: > Already knew about Pier CMS as it's used to

Re: [Pharo-users] Wiki system for Pharo (smalltalk)?

2014-05-29 Thread Mircea
Already knew about Pier CMS as it's used to write the Seaside and Pharo book. Do you have a link for Marina? Pe 30.05.2014, la 00:23, stepharo a scris: > you mean wiki implemented in Pharo? >pier >marina > > Stef >> On 29/5/14 19:57, Mircea S. wrote: >> What Wiki systems are still arou

Re: [Pharo-users] Wiki system for Pharo (smalltalk)?

2014-05-29 Thread stepharo
you mean wiki implemented in Pharo? pier marina Stef On 29/5/14 19:57, Mircea S. wrote: What Wiki systems are still around for Pharo (smalltalk)? Thank you.

[Pharo-users] Wiki system for Pharo (smalltalk)?

2014-05-29 Thread Mircea S.
What Wiki systems are still around for Pharo (smalltalk)? Thank you.

Re: [Pharo-users] Sending transactional emails from Pharo

2014-05-29 Thread Esteban A. Maringolo
2014-05-29 12:07 GMT-03:00 Norbert Hartl : > > Am 29.05.2014 um 16:55 schrieb Esteban A. Maringolo : > >> Looks very nice. >> >> How do you send the mails? >> >> Do you have a helper class you're willing to share? :) >> > I have some classes but as always I just started an implementation and didn’t

Re: [Pharo-users] Accessing DLLs in Smalltalk/V

2014-05-29 Thread Clément Bera
Hello, To do what you want, there are 3 options: - using NativeBoost - using FFI from the VM - compiling your dll as part of the vm (VM plugin) NativeBoost is clearly the best option because it is the fastest, it is mostly implemented in the image so you can look at the code and it is by default

Re: [Pharo-users] Sending transactional emails from Pharo

2014-05-29 Thread Norbert Hartl
Am 29.05.2014 um 16:55 schrieb Esteban A. Maringolo : > Looks very nice. > > How do you send the mails? > > Do you have a helper class you're willing to share? :) > I have some classes but as always I just started an implementation and didn’t find much time to make something useful out of it.

Re: [Pharo-users] Sending transactional emails from Pharo

2014-05-29 Thread Esteban A. Maringolo
Looks very nice. How do you send the mails? Do you have a helper class you're willing to share? :) Regards! Esteban A. Maringolo 2014-05-29 11:40 GMT-03:00 Norbert Hartl : > > Am 29.05.2014 um 15:10 schrieb Esteban A. Maringolo : > > What is the simplest way we have in Pharo to send emails? >

Re: [Pharo-users] Accessing DLLs in Smalltalk/V

2014-05-29 Thread stepharo
For nativeBoost have a look at the tutorial to use NB to bind X11 https://ci.inria.fr/pharo-contribution/job/PharoForTheEnterprise/lastSuccessfulBuild/artifact/NativeBoost/NativeBoost.pier.html I'm sorry but if igor does not write documentation, it takes far too much energy from me to understa

Re: [Pharo-users] Accessing DLLs in Smalltalk/V

2014-05-29 Thread kilon alios
The PharoForTheEnterprise book has a chapter on Nativeboost. You can find the book here in pdf format https://ci.inria.fr/pharo-contribution/job/PharoForTheEnterprise/lastSuccessfulBuild/artifact/ also you can click on the folder to download only the Nativeboost chapter, but I advice to download

Re: [Pharo-users] Sending transactional emails from Pharo

2014-05-29 Thread Norbert Hartl
Am 29.05.2014 um 15:10 schrieb Esteban A. Maringolo : > What is the simplest way we have in Pharo to send emails? > > We're going to send a bunch of "no-reply@mydomain" style mails > confirming transactions and similars. ~3000 mails. > > Anybody already doing this? > Yes. I’m using Mandrill h

[Pharo-users] Accessing DLLs in Smalltalk/V

2014-05-29 Thread Bob Williams
I found an old Smalltalk/V imagine from 2000 and tracked down how I was able add calls to Windows DLLs and to add my own. It was in the class DynamicLinkLibrary and its subclasses, e. g., a call to the GDIDLL to draw a Bezier spline (which I believe I added) was: bezierTo: hDC lpPoints: anLPPO

Re: [Pharo-users] Sending transactional emails from Pharo

2014-05-29 Thread Esteban A. Maringolo
Thank you guys, I'll give Postmark a try. I already defined the DKIM/SPF records in the DNS Zone. It's the first time I see such thing in a DNS table, I hope this works well... Regards! Esteban A. Maringolo 2014-05-29 11:06 GMT-03:00 Johan Fabry : > > I used postmark as well some time ago, and

Re: [Pharo-users] Sending transactional emails from Pharo

2014-05-29 Thread Johan Fabry
I used postmark as well some time ago, and it worked like a charm. In the mean time I switched to using the builtin smtp client, because it’s a very low amount of mails and I could use the department’s smtp server :-) On May 29, 2014, at 9:17 AM, Marcus Denker wrote: > > On 29 May 2014, at 1

Re: [Pharo-users] Sending transactional emails from Pharo

2014-05-29 Thread Marcus Denker
On 29 May 2014, at 15:10, Esteban A. Maringolo wrote: > What is the simplest way we have in Pharo to send emails? > For ESUG we are using Postmark: https://postmarkapp.com There is a library for Pharo that makes it very easy to use. http://tulipemoutarde.be/2011/12/29/send-

[Pharo-users] Sending transactional emails from Pharo

2014-05-29 Thread Esteban A. Maringolo
What is the simplest way we have in Pharo to send emails? We're going to send a bunch of "no-reply@mydomain" style mails confirming transactions and similars. ~3000 mails. Anybody already doing this? Regards. Esteban A. Maringolo ps: This will be running in a DigitalOcean droplet, so I could i

Re: [Pharo-users] NeoJSON mapping of nil properties

2014-05-29 Thread Esteban A. Maringolo
2014-05-28 16:03 GMT-03:00 Sven Van Caekenberghe : > > Hi Esteban, > > Your wish is my command ;-) > > In #bleedingEdge you can now do: > > String streamContents: [ :stream | > (NeoJSONWriter on: stream) > writeNil: true; > mapAllInstVarsFor: Point; > nextPut: Point new. > >

Re: [Pharo-users] [smallwiki] Pillar annotations for Latex

2014-05-29 Thread Damien Cassou
On Wed, May 28, 2014 at 7:17 PM, Ben Coman wrote: > So, thats a small start. Anything obvious it might break? that looks awesome. Thank you very much for your fix. I can't find your mcz though. You can just commit to the http://www.smalltalkhub.com/#!/~Pier/Pillar repository. Best -- Damien

Re: [Pharo-users] deep into pharo(esug 2013) translate to korean draft version.

2014-05-29 Thread peter yoo
I have already did put this URL(http://deepintopharo.com) in my translated book.

[Pharo-users] [ANN] iStoa 14.06

2014-05-29 Thread Hilaire Fernandes
Hi, If you have young kids (around 5-6 years old) and a linux workstation, you may want ot give a try to latest iStoa. https://launchpad.net/istoa/trunk/14.06 I translated it in French as well ;) If interest to translate in other languages (including asian ones) let me know. Hilaire -- Dr. Ge

Re: [Pharo-users] Cloud Shoppie - App Contest Poll

2014-05-29 Thread Thushar G R
Hi Strpharo, Thanks a lot. Its still a prototype, if we manage to win, we might get the opportunity to launch it live. biting nails. Thanks a lot, Thushar On Thu, May 29, 2014 at 12:25 PM, stepharo wrote: > http://pharoweekly.wordpress.com/2014/05/29/cloud-shoppie/ > > you should send an a

Re: [Pharo-users] Two suggestions for the new pharo website

2014-05-29 Thread stepharo
On 26/5/14 12:52, kmo wrote: I think the new pharo website could be improved by the addition of two new pages. Firstly, the site badly needs a "Success Stories" page. The old web site had one of these so presumably that can be added easily. You have to show newcomers that pharo can be used for