Sven Van Caekenberghe-2 wrote
> creating new readers for each section is one option
Thank you both. This worked quite well (23 LOC) vs. parsing the raw file
with NeoCSV and then trying to clean up and interpret the resulting arrays
(126 LOC).
-
Cheers,
Sean
--
View this message in context:
I'm almost sure this is not the right place to report it.
Im having a vm crash when looking at the history of a repository on iceberg.
urpharo: malloc.c:2394: sysmalloc: Assertion `(old_top == initial_top (av)
> && old_size == 0) || ((unsigned long) (old_size) >= MINSIZE && prev_inuse
> (old_top)
Do we have something like a merge UI that can be used on an underlying model
that may have nothing to do with VCS?
-
Cheers,
Sean
--
View this message in context:
http://forum.world.st/Adaptable-Tree-Based-Cherry-Pick-Tool-tp4957766.html
Sent from the Pharo Smalltalk Users mailing list arch
That worked - thanks very much.
On 29 July 2017 at 16:13, Esteban A. Maringolo wrote:
> Did you try setting the pragma in the list method?
> Esteban A. Maringolo
>
>
> 2017-07-28 18:40 GMT-03:00 Greg Hutchinson >:
> > I am new to Pharo/Seaside and it has been a long time since I have used
> >
Did you try setting the pragma in the list method?
Esteban A. Maringolo
2017-07-28 18:40 GMT-03:00 Greg Hutchinson :
> I am new to Pharo/Seaside and it has been a long time since I have used
> Smalltalk. I am trying to make a RESTful service and can’t get the pragmas
> to work the way I think it
Hello!
Once I finally added remote to my localgit repo, I cannot build my image
any more because Iceberg fails to parse the url. After first error I
tried ssh://, but it is protected as well.
The problem is, g...@host.site is just the way to say which user to log
in via ssh into the host. We
thx guille.
On Sat, Jul 29, 2017 at 9:40 PM, Guillermo Polito wrote:
> Actually class variables are stored in a dictionary in a class. You can
> access that by saying:
>
> aClass classPool.
>
> So resetting all values of a class variable could be easily done with
> something like
>
> aClass c
Actually class variables are stored in a dictionary in a class. You can
access that by saying:
aClass classPool.
So resetting all values of a class variable could be easily done with
something like
aClass classPool keys do: [ :k | aClass classPool at: k put: nil ].
Maybe that could be a nice
> On 29 Jul 2017, at 10:16, Esteban Lorenzano wrote:
>
>
>> On 28 Jul 2017, at 09:37, Herby Vojčík wrote:
>>
>> Hello!
>>
>> IMNSHO, now that Iceberg has three vendor-specific protocol (and before as
>> well, because of people like me who do not have github account), Iceberg
>> needs to gr
> On 28 Jul 2017, at 09:37, Herby Vojčík wrote:
>
> Hello!
>
> IMNSHO, now that Iceberg has three vendor-specific protocol (and before as
> well, because of people like me who do not have github account), Iceberg
> needs to gracefully revert to readonly access in case credentials are not
> p
I want to reset all the class variables in an application to nil.
I've got as far as finding them, for example...
packages := RPackageOrganizer default packages select:[:p|
(p name includesSubstring: 'PharoLauncher') ].
stateToReset := packages flatCollect: [:p|
p definedClasses
select:[:c | (c cl
11 matches
Mail list logo