On Jul 16, 2013, at 9:31 PM, Hernán Morales Durand
wrote:
> Doru, I can access the article through the "Full Text (PDF)" link at the
> right box titled "This Article". Maybe you have the right columns collapsed?
> There is an arrow button "Show all columns" if you cannot see the link.
> Let m
On Wed, Jul 17, 2013 at 8:14 AM, Sven Van Caekenberghe wrote:
> Yes please, I think just a link in the left menu would be enough
That's not possible. But I added a page, referenced from the menu on
the left that show this page:
http://www.pharo-project.org/community/consultants
> Damien, was it
On 17 Jul 2013, at 10:10, Damien Cassou wrote:
> On Wed, Jul 17, 2013 at 8:14 AM, Sven Van Caekenberghe wrote:
>> Yes please, I think just a link in the left menu would be enough
>
> That's not possible. But I added a page, referenced from the menu on
> the left that show this page:
> http://w
I will use the scheduler, thanks!
Sabine
--
View this message in context:
http://forum.world.st/scheduler-for-application-tasks-tp4698922p4699049.html
Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.
Hi,
I am looking for a Dictionary which sorts its entries by the keys.
Some Kind of "SortedDictionary".
I assume, there is none - right?
I only found the OrderPreservingDictionary (which is not the same).
Background: storing exchangerates by date.
Sabine
--
View this message in context:
correction/more precise: where I can define the sort order. If I add Dates as
keys in a dict, they are sorted by printstring (?). I need the dict to sort
date keys by time.
Sabine
--
View this message in context:
http://forum.world.st/no-SortedDictionary-available-tp4699050p4699052.html
Sent fr
On Jul 16, 2013, at 8:55 PM, Udo Schneider wrote:
> On 16.07.13 17:15, Marcus Denker wrote:
>> No. A decompiler has to be very specific for the code generated by the
>> compiler.
> I thought so.
>
>> For Pharo3, we even opted to not support decompilation at all… (IR -> AST).
>> We will instea
On Wed, Jul 17, 2013 at 10:22 AM, Sven Van Caekenberghe wrote:
> Maybe I can add a little section on that page describing what you have to do
> to get on the list.
either that or we keep this page as short as possible and put
everything on consultants.pharo.org. As you wish
--
Damien Cassou
ht
There is currently no sorted dictionary in Pharo.
There's only OrderedIdentityDictionary / OrderPreservingDictionary which
are different.
If you implement one or find an opensource implementation somewhere, Marcus
will be pleased to integrate it in Pharo.
2013/7/17 Sabine Knöfel
> correction/
Ok, it seems the problem was not having the sources file in the same
directory as the image.
Anyway, now I've another problem when trying to compile. cmake runs fine,
but make fails with the following error:
Scanning dependencies of target B3DAcceleratorPlugin
[ 57%] Building C object
B3DAccelera
Tony Fleig has an OrderedDictionary in a repo of his (
http://www.squeaksource.com/TFOrderedDictionary.html), but I think it's
pretty much the same as the OrderPreservingDictionary...
2013/7/17 Clément Bera
> There is currently no sorted dictionary in Pharo.
>
> There's only OrderedIdentityDict
Hi Clement,
thank you for the fast response.
I will use OrderPreservingDictionary instead.
Sabine
On Wed, Jul 17, 2013 at 11:32 AM, Clément Bera-4 [via Smalltalk]
wrote:
> There is currently no sorted dictionary in Pharo.
>
> There's only OrderedIdentityDictionary / OrderPreservingDictionary wh
I found out how to leave B3DAcceleratorPlugin out, but now I get this error
almost at the end of the compilation process:
[ 95%] Building C object
CMakeFiles/CogVM.dir/home/bromagosa/blessed/platforms/unix/vm/sqUnixMain.c.o
In file included from
/home/bromagosa/blessed/platforms/unix/vm/sqUnixMain
Hi!
before compiling you have to, inside the build folder, execute
codegen-scripts/extract-commit-info.sh
Besides, I was looking at luc's tutorial and it lacks one step to have
serial plugin built: install the patch he made [1]. Did you do that? I
added a comment in the blog entry just in case...
ouch! I forgot to execute the script this time, and didn't install the
patch either.. trying again, thanks! :)
2013/7/17 Guillermo Polito
> Hi!
>
> before compiling you have to, inside the build folder, execute
> codegen-scripts/extract-commit-info.sh
>
> Besides, I was looking at luc's tutoria
Okay, it seems the patch is already included in the latest VMMaker image,
so no need to apply it.
Still, having executed the script, I get yet another error, this time
related to gl.h (why does it need it? I left B3DAcceleratorPlugin out):
[ 95%] Building C object
CMakeFiles/CogVM.dir/home/bromag
On Wed, Jul 17, 2013 at 12:39 PM, Bernat Romagosa <
tibabenfortlapala...@gmail.com> wrote:
> Okay, it seems the patch is already included in the latest VMMaker image,
> so no need to apply it.
>
That's nice :). Anyone with grants in the issue tracker can close it?? :D
>
> Still, having executed
Great! I was missing the gl and alsa headers. All done now, thanks a lot :)
2013/7/17 Guillermo Polito
>
> On Wed, Jul 17, 2013 at 12:39 PM, Bernat Romagosa <
> tibabenfortlapala...@gmail.com> wrote:
>
>> Okay, it seems the patch is already included in the latest VMMaker image,
>> so no need to
So I compiled two VMs, one with the SerialPlugin as an internal plugin, the
other one as an external plugin.
On a Debian box, I connect an Arduino Diecimila board and I get its handler
at /dev/ttyUSB0. However, on both VMs with fresh Pharo 2.0 images:
SerialPort new openPort: '/dev/ttyUSB0'
Fai
It is indeed annoying and obviously buggy.
I kinda "fixed" it last year but since I didn't had any serial port stuff to
test it, it was just in abstract (Luc was using it, thought)
There was a report a couple of weeks ago to try using double slash.
SerialPort new openPort: '/dev//ttyUSB0'
Es
Yep, I found that thread and tried all possible combinations:
'/dev/ttyUSB0'
'/dev//ttyUSB0'
'/dev/ttyusb0'
'/dev//ttyusb0'
'ttyUSB0'
'ttyusb0'
and none worked... :(
2013/7/17 Esteban Lorenzano
> It is indeed annoying and obviously buggy.
> I kinda "fixed" it last year but since I didn't had
On Jul 15, 2013, at 6:41 PM, Sven Van Caekenberghe wrote:
> Igor,
>
> On 15 Jul 2013, at 17:48, Igor Stasenko wrote:
>
>> since you gave listing at the end of page,
>> i wonder, how much PHP (yes! :) code it would take to implement same app? :)
>>
>> of course , PHP is not really fair compar
you have also pastell and soup to query XML
On Jul 15, 2013, at 11:47 PM, Sven Van Caekenberghe wrote:
> Hi Juraj,
>
> On 15 Jul 2013, at 23:10, Juraj Kubelka wrote:
>
>> Hi!
>>
>> I want to parse, search, manipulate and save XML document in Pharo. What
>> libraries are the best to use?
>>
Thank you all.
Cheers,
Jura
2013/7/17 Stéphane Ducasse
> you have also pastell and soup to query XML
>
> On Jul 15, 2013, at 11:47 PM, Sven Van Caekenberghe wrote:
>
> > Hi Juraj,
> >
> > On 15 Jul 2013, at 23:10, Juraj Kubelka wrote:
> >
> >> Hi!
> >>
> >> I want to parse, search, manipulat
On Sun, May 19, 2013 at 1:12 PM, Benjamin <
benjamin.vanryseghem.ph...@gmail.com> wrote:
> Me too :)
>
> I think I will implement one soon :)
>
Any progress on this ? ;)
> Ben
>
> On May 19, 2013, at 1:08 PM, Usman Bhatti wrote:
>
> Hello all,
>
> I am looking for a widget/control in Pharo tha
Absolutely none :)
Ben
On Jul 17, 2013, at 3:05 PM, Usman Bhatti wrote:
>
>
>
> On Sun, May 19, 2013 at 1:12 PM, Benjamin
> wrote:
> Me too :)
>
> I think I will implement one soon :)
>
> Any progress on this ? ;)
>
> Ben
>
> On May 19, 2013, at 1:08 PM, Usman Bhatti wrote:
>
>> Hel
On 17.07.13 11:05, Marcus Denker wrote:
What you need to do for that is to implement a class that has the same public
API as OpalCompiler and Compiler…
Then you can set this is the compiler of your class (override #compiler on the
class side).
This compiler then takes care to create the Compil
Hi Marcus,
Thank you for the comments, I have been checking the link distribution
conditions and they say people can access the article only from the Oxford
Journals website for academic purposes, so here it is:
http://bioinformatics.oxfordjournals.org/content/early/2013/07/09/bioinformatics.btt3
I've been developing in the same Pharo2 image for a couple weeks and its
now 180MB. I use the same development habits as in Pharo 1.4 but there
the image would only be about 40MB.
Using SpaceTally I can see that I have 40 MB of Arrays. And 10MB of
Bitmaps. 8MB of Floats, Strings, & OrderedCollect
Did you check on Dictionaries / Sets (+ their Identity* versions) and Symbols
as well?
Another possibility would non terminated Processes (process browser)?
The Arrays themselves already look suspicious.
Usually the way to track such objects down is to find and interesting candidate
and inspec
Have a look at:
http://www.smalltalkhub.com/#!/~hernan/SortedDictionary
use at your own risk, given I have no time for writing tests now.
Cheers,
Hernán
El 17/07/2013 5:31, Sabine Knöfel escribió:
Hi,
I am looking for a Dictionary which sorts its entries by the keys.
Some Kind of "SortedDict
Hi
Have you tried: http://www.squeaksource.com/BTree
Used it long ago and worked well.
Regards
Carlo
On 18 Jul 2013, at 2:10 AM, Hernán Morales Durand
wrote:
Have a look at:
http://www.smalltalkhub.com/#!/~hernan/SortedDictionary
use at your own risk, given I have no time for writing tests
Thanks ... got the Zinc server to work
but could not get to smalltalkhub.com
I just get a "Loading please wait" message that sits till I give up
What is the way to get the HOSeaside Package
regards
Sanjay
-
---
Regards, Sanjay
--
View this message in context:
http://forum.world.st/install
On Jul 17, 2013, at 9:59 PM, Paul DeBruicker wrote:
> I've been developing in the same Pharo2 image for a couple weeks and its
> now 180MB. I use the same development habits as in Pharo 1.4 but there
> the image would only be about 40MB.
>
I already saw that the current 3.0 download has 110.0
34 matches
Mail list logo