Re: [Pharo-dev] AWS SDK for Pharo

2019-02-27 Thread Jan van de Sandt
Hi, Here is yet another (very) partial implementation of an AWS SDK for Pharo: https://github.com/jvdsandt/pharo-aws-toolbox But it does have the latest (V4) signing algoritm! It would be very nice if you can generate a Pharo implemetation of an AWS service from a meta description! Jan. On

Re: [Pharo-dev] [ANN] Pharo Lambda Runtime

2018-12-28 Thread Jan van de Sandt
this image to AWS Lambda would be a great feature! > Anyway, l’ll Give it a go and see how the results compare - it was > surprisingly fast using the js shim - but this seems like a much better > solution. > > Thanks for sharing - it’s an executing world. > > Tim > > Than

Re: [Pharo-dev] [ANN] Pharo Lambda Runtime

2018-12-28 Thread Jan van de Sandt
and see how > it works with this. I was looking forward to doing more with Lambda, so > this is great timing. > > Tim > > Sent from my iPhone > > On 27 Dec 2018, at 10:32, Jan van de Sandt wrote: > > Hi, > > Last month Amazon extended their serverless runti

[Pharo-dev] [ANN] Pharo Lambda Runtime

2018-12-27 Thread Jan van de Sandt
Hi, Last month Amazon extended their serverless runtime platform AWS Lambda with support for custom runtimes. I created a Pharo Lambda Runtime so now we can implement Lambda functions in Smalltalk and easily deploy them on the Lambda platform. Lamba has quite a large "free-tier", more than enough

Re: [Pharo-dev] LMDB

2016-11-11 Thread Jan van de Sandt
Hi, On OSX you can use Homebrew to install LMDB. This will install the 64bit version. If you want the 32bit version you will have to tweak the recipe. Jan. On Fri, Nov 11, 2016 at 11:32 AM, Stephan Eggermont <step...@stack.nl> wrote: > On 05/11/16 13:55, Jan van de Sandt wrote:

Re: [Pharo-dev] Instructions for Pharo 6 64bits

2016-11-05 Thread Jan van de Sandt
eba...@gmail.com> wrote: > > > On 5 Nov 2016, at 12:27, Thierry Goubier <thierry.goub...@gmail.com> > wrote: > > > > Le 05/11/2016 à 12:12, Jan van de Sandt a écrit : > >> Hi, > >> > >> With the latest 64bits VM (201611042126) and image (60282) UFFI

Re: [Pharo-dev] Instructions for Pharo 6 64bits

2016-11-05 Thread Jan van de Sandt
you are looking for it seems pretty good. I haven't used it in any production systems yet. But it is used as a storage engine in quite a few open source projects. For example OpenLDAP. Jan. On Sat, Nov 5, 2016 at 1:43 PM, Jan van de Sandt <jvdsa...@gmail.com> wrote: > Hi, > > The o

Re: [Pharo-dev] Instructions for Pharo 6 64bits

2016-11-05 Thread Jan van de Sandt
environments. For now just you can just use #rebuildFieldAccessors Jan. On Sat, Nov 5, 2016 at 12:27 PM, Thierry Goubier <thierry.goub...@gmail.com> wrote: > Le 05/11/2016 à 12:12, Jan van de Sandt a écrit : > >> Hi, >> >> With the latest 64bits VM (201611042126)

Re: [Pharo-dev] Instructions for Pharo 6 64bits

2016-11-05 Thread Jan van de Sandt
Hi, With the latest 64bits VM (201611042126) and image (60282) UFFI is also looking good. I'm testing a small library of mine [1] to interface with LMDB [1], a memory mapped key-value database. Almost all tests are green. This is great progress! I only ran into one issue, a PrimitiveFailed error

[Pharo-dev] UnifiedFFI Interrupted system call error on OSX

2016-05-17 Thread Jan van de Sandt
Hi, I'm helping with the port of LibGit [1] from Pharo 4 to Pharo 5 [2]. This project provides Smalltalk bindings for the libgit2 library. Very useful for better Git support in Pharo. The port means using the new UnifiedFFI instead of NativeBoost. The project is still in the alpha stage but a

Re: [Pharo-dev] RBRefactoring docs

2016-04-16 Thread Jan van de Sandt
Hi, I think this is the original documentation: http://www.refactory.com/tools/refactoring-browser Jan. On Sat, Apr 16, 2016 at 5:42 PM, Peter Uhnák wrote: > Hi, > > is there any documentation for RBRefactoring? > Since there are not even class comments the only thing I

Re: [Pharo-dev] Example implementation of associations with Slots in Pharo 4.0

2015-02-27 Thread Jan van de Sandt
Hello, Thanks for your suggestions. I have improved the naming and definition to this: Object subclass: #SlotExampleMovie slots: { #name. #year. #director = ToOneRelationSlot inverse: #directedMovies inClass: #SlotExamplePerson. #actors = ToManyRelationSlot inverse: #actedInMovies inClass:

[Pharo-dev] Example implementation of associations with Slots in Pharo 4.0

2015-02-21 Thread Jan van de Sandt
Today I experimented a little with the new Slots feature of Pharo 4.0. As an example I implemented support for associations/relationships. With it you can link two slots together so an update on one side will also update the other side of the association/relationship. I used these Movie and

Re: [Pharo-dev] Cloudfork HMAC-SHA256 in System-Hashing

2014-06-20 Thread Jan van de Sandt
Hello, I added the SHA256 class to Cloudfork a few years ago. The class was mostly copied from the Cryptography [1] project. Cheers, Jan. [1] http://www.squeaksource.com/Cryptography/ On Fri, Jun 20, 2014 at 10:56 AM, François Stephany tulipe.mouta...@gmail.com wrote: Max, Yes, it's

Re: [Pharo-dev] Cloudfork HMAC-SHA256 in System-Hashing

2014-06-20 Thread Jan van de Sandt
And I think it's a good idea to make SHA2 hash functions part of the System-Hashing package! On Fri, Jun 20, 2014 at 5:01 PM, Jan van de Sandt jvdsa...@gmail.com wrote: Hello, I added the SHA256 class to Cloudfork a few years ago. The class was mostly copied from the Cryptography [1