Re: [Pharo-dev] Sharing/Versioning Data

2014-07-07 Thread Sean P. DeNigris
abergel wrote Mime64 is your friend :-) Thanks for the pointer! I did a little experiment... how does this look? sampleObjectToSerialize := { Date today. Time now }. ba := ByteArray streamContents: [ :str | FLSerializer serialize: sampleObjectToSerialize on: str ]. storableInMethod := ba

Re: [Pharo-dev] Sharing/Versioning Data

2014-07-02 Thread p...@highoctane.be
Ah, interesting. I was looking at the theme icons yesterday and importing/exporting those would benefit from this view on resources. Also, there is the Seaside WAFileLibrary which provides some support on that front, allowing one to do a #deployFiles and get them out and also there is the

Re: [Pharo-dev] Sharing/Versioning Data

2014-07-01 Thread Eliot Miranda
Hi Guillermo, On Sat, Jun 28, 2014 at 11:07 PM, Guillermo Polito guillermopol...@gmail.com wrote: With Martin we started on friday to sketch a kind of resource manager with an internal file system. Our idea is to plug a resource manager to each package and then serialize a fuel file of it

Re: [Pharo-dev] Sharing/Versioning Data

2014-06-29 Thread Guillermo Polito
With Martin we started on friday to sketch a kind of resource manager with an internal file system. Our idea is to plug a resource manager to each package and then serialize a fuel file of it inside the mc package. But we just started it... On Sun, Jun 29, 2014 at 5:22 AM, Sean P. DeNigris

Re: [Pharo-dev] Sharing/Versioning Data

2014-06-29 Thread Hernán Morales Durand
Have a look at ConfigurationOfNacl in doits category, I've used Dropbox to download resource files to a directory. Hernán 2014-06-29 0:22 GMT-03:00 Sean P. DeNigris s...@clipperadams.com: How do we do this now with MC? Are there options other than encode in string returned by method like

Re: [Pharo-dev] Sharing/Versioning Data

2014-06-29 Thread Sean P. DeNigris
Guillermo Polito wrote With Martin we started on friday to sketch a kind of resource manager Sounds exciting. Can't wait to play with it! - Cheers, Sean -- View this message in context: http://forum.world.st/Sharing-Versioning-Data-tp4765528p4765645.html Sent from the Pharo Smalltalk

Re: [Pharo-dev] Sharing/Versioning Data

2014-06-29 Thread Sean P. DeNigris
Hernán Morales Durand wrote I've used Dropbox to download resource files to a directory. Thanks I'll check it out - Cheers, Sean -- View this message in context: http://forum.world.st/Sharing-Versioning-Data-tp4765528p4765646.html Sent from the Pharo Smalltalk Developers mailing list

Re: [Pharo-dev] Sharing/Versioning Data

2014-06-29 Thread Alexandre Bergel
Hi Sean! I guess you can use the very same technique to store pictures in the image. Mime64 is your friend :-) I can look for code snippets if you need… Let me know Cheers, Alexandre On Jun 28, 2014, at 11:22 PM, Sean P. DeNigris s...@clipperadams.com wrote: How do we do this now with MC?

[Pharo-dev] Sharing/Versioning Data

2014-06-28 Thread Sean P. DeNigris
How do we do this now with MC? Are there options other than encode in string returned by method like I've seen done for image data? My use case is that I have a very static domain, and so doesn't require user changes. I think the easiest way to distribute it would be to edit the data on a dev