Hi,
it says on "https://pharo.org/contribute-propose-fix"; that Manuscript
used to be called "Fugbugz" - although an understandable mistake, I
believe it was called "Fogbugz" :-)
Kind regards
Markus
Hello Leo,
sorry, I was unavailable.
I personally am running 14.04 due to LTS status, but will see if I can
recreate your error.
Kind regards,
Markus
On 26.05.2015 11:23, Dimitris Chloupis wrote:
> I have tried to use sudo apt-get update , but when i open
> pharolauncher using the pharo command in the terminal i see no option
> to download a pharo 5 image, Any clue how I can update it ?
Hello Dimitris,
Damien was so kind to forward your mail -
Hello Martin,
if you're using the ubuntu ppa, the sources file is *NOT* required by
the launcher (it works without it).
You can install the source by executing "apt-get install
pharo-sources-files"
Kind regards,
Markus
On 04.03.2015 09:26, Martin Bähr wrote:
> Excerpts from Marcus Denker's me
Hello list,
it looks to me that old and new packages have different dependencies.
If you're *not* using pillar or phratch, and have problems updating the pharo
packages, please execute
dpkg -l | grep -i pharo | awk ' { print $2 } ' | xargs sudo apt-get -y
purge ; sudo apt-get update && sudo apt
Hello Vincent,
On 2014-12-15 10:23, Blondeau Vincent wrote:
Hello Markus,
But you can't read easily the content of the archive...
The *Archive classes are more complete but they seems indeed not
compatible to the new file system api.
thank you for your reply, that was exactly what I was lookin
Hello,
is there a quick way to create a zip file from a memory filesystem that
I can't see, or are the *Archive classes not compatible with the new
filesystem api yet?
Best regards,
Markus
On 2014-12-11 13:48, Marcus Denker wrote:
If
MethodFinder methodFor: #(('HaLLol' 'll' 'tt') 'Hattol')
doesn't find anything, does that mean "no" right away?
No, method finder uses a whitelist that is not maintained.
Thanks for claryfying.
The answer to my first question:
| r |
r := 'll' as
Hi,
is there a way to search case insensitively and replace in Strings in
one shot?
If
MethodFinder methodFor: #(('HaLLol' 'll' 'tt') 'Hattol')
doesn't find anything, does that mean "no" right away?
Kind regards
Markus
On 2014-12-10 01:23, Юрий Мироненко wrote:
General idea was to use ZipArchive instead of MCZ-related code.
Sorry, I wasn't clear. MCZ was just my example. The real question was,
if the ZipFileSystem API can be used or not... I will go with ZipArchive
and friends then.
On 2014-12-09 20:47, Hernán Morales Durand wrote:
| zipArchive fileRef |
zipArchive := ZipArchive new.
fileRef := 'myFile.zip' asFileReference.
[ zipArchive
readFrom: fileRef fullName;
extractAllTo: FileSystem workingDirectory ]
ensure: [ zipArchive close ].
Thank you!
On 2014-12-09 18:19, Юрий Мироненко wrote:
Do you want to work with ZIP files, or specifically with MCZ ?
Just a zip file with a member called project.xml which I want to
extract, change and rezip...
Best regards,
Markus
Hi,
by peeking around in "Deep into Pharo" I thought that
| zf fr |
fr := 'I:\SAS_Projekte\project.egp' asFileReference.
zf := FileSystem zip: fr.
zf store open.
should be used to open a zip file programmatically. That fails with
"ZnInvalidUTF8: Invalid utf8 input detected"
Looking at MCMczRe
Hello Olivier,
did you create the DSN using
C:\WINDOWS\SysWow64\odbcad32.exe
?
The 32 Bit ODBC Adminstration Console is located in SysWow64, if you
just start the ODBC Adminstration Console from the system admin tools,
you will get the 64 Bit version, which is located in C:\WINDOWS\system32 :)
On 2014-11-17 23:14, Brad wrote:
I think it's "(Smalltalk at: #NBPharoOpenDBX) installAsCurrent.
That sounds familiar. But since I didn't read a "hooray", I guess that
didn't do the trick either?
Off for some sleep
Hi,
So as far as I can see, you have all dependencies...
I remember that I had to reinitialize the OpenDBX libraries to change
the adaptor to the native library calls (from FFI to NBPharoOpenDBX or
similar). Unfortuanetly, I don't have the image at hand.
Hello Brad,
as far as I can tell, you have the 32 bit mysql client libraries
installed (don't worry, the 64 and 32 bit version can coexist) - but I
am not sure about opendbx.
Please try
sudo apt-get install libopendbx1:i386 libopendbx1-mysql:i386
Best regards,
Markus
Hello Brad,
On 2014-11-17 17:34, bsselfri...@gmail.com wrote:
My database is 64 bit on my 64bit Ubuntu machine.
However, on my 32bit Ubuntu 14.04 machine, I have a 64 debian VM
running
that has a 64bit MySQL running which I can access just fine from 32bit
host
machine running Pharo.
I woul
On 21.09.2014 22:10, Sven Van Caekenberghe wrote:
> Is that quick enough ?
Orsum, thx!
Kind regards,
Markus
On 2014-09-21 20:52, Sven Van Caekenberghe wrote:
> Hi Markus,
>
> NeoCSVReader is not like most CSV readers
>
> (NeoCSVReader on: '"COL1";"COL2";"COL3";"DESCRIPTION"
> 1;"A string";13;"This is a long
> description spanning multiple lines,
> which is a challenge for most csv readers!"
> 2;"Another
Hi,
I am having a csv file looking like
"COL1";"COL2";"COL3";"DESCRIPTION"
1;"A string";13;"This is a long
description spanning multiple lines,
which is a challenge for most csv readers!"
2;"Another string";42;""
(CRLF line endings)
Is there a combination of settings to NeoCSVReader that will
Hello,
I'm revisiting some old code that I started to sort my favorites on my
tv settop box. I noticed that ServerDirectory is gone. I naively
replaced ServerDirectory by FTPClient, but I get an error that the iv
stream is nil.
So I looked at the comment of FTPClient - which recommends me to look
On 30.05.2014 08:50, Joachim Geidel wrote:
> Yes, this page helped, but as you wrote: basic and simple example -
> the more involved stuff remains undocumented. When working on JNIPort,
> I struggled with simple things like de-referencing a pointer to a
> pointer to a struct etc. - I didn’t find d
Hi,
I am working on some NativeBoost bindings to a library. I am organizing
my work along the API of a java binding of the same library. As nights
go by, I created some methods that I didn't have yet use for as "self
shouldBeImplemented", writing the others with test first.
What is the easiest wa
On 2014-04-30 11:35, Igor Stasenko wrote:
So, it seems that it is DLL function wants stack alignment.
So does that mean (doing it the right way) that I will have to change my
stackAlignment method or do I have to use different nbCall-sonventions?
Best regards,
Markus
On 2014-04-30 04:58, Igor Stasenko wrote:
NBFFICallout>>foreignCall: aBlock
callInfo := self newCallInfo.
callInfo alignment: 16.
asm performingCall: callInfo in: aBlock.
while use:
NativeBoostWin32>>stackAlignment
^ 1
This seems to work - however, I did not to subsequent calls.
and the
Hello Igor,
> Also, i doubt it, but try change the alignment
> NativeBoostWin32>>stackAlignment
> to use 16
That did the trick - it was ^ 1 - changed it to ^ 16 and now the DoIt
opens an inspector on a TM1P object.
Should this be reported on fogbugz?
Thank you
Markus
g handle ivar, and
> #asNBExternalType: inherited at class side, tested and working..?
>
>
> So, try
>
> NBFFICallout new resolveType: #TM1U
>
> what it gives?
>
> On 28 April 2014 23:44, Markus Fritsche wrote:
>
>>
>> On 28.04.2014 13:30, Igor
On 28.04.2014 13:30, Igor Stasenko wrote:
> This is strange.. should work fine. There's no way how
> NBExternalObjectType could return an instance of NBExternalHandle.
> Please check your code again.
Been there, done that => thrown everything away and restarted the code
from scratch... Sourcecode
Hello,
tl;dr: what's the reason to get aNBExternalHandle even if you expect a
MySuperHandle object from an nbCall?
I am trying to build my first DLL wrapper with NativeBoost. I am having
a problem that instead of returning a handle object (as I thought), my
"primitive" throws NBExternalHandl
On 2014-04-24 11:10, Sebastian Tleye wrote:
Hi,
I am doing some experiments in Pharo and I need to model Normal and
Log-Normal distributions in pharo.
Is there any existing package for that?
Hello Sebastion,
have you tried the "NumericalMethods" Package in the Configuration
browser? It lo
On 09.04.2014 00:51, Stephan Eggermont wrote:
> That would be nice but creates problems. There is existing third
> party code we want to use. We can be much more precise in naming, and
> should not use generic names for specific implementations.
> "When #totalWeight is no longer below #maximumW
Hello,
is not having a field for description or a link to a description in
ConfigurationBrowser a design decision?
Best regards,
Markus
Hello,
according to fogbugz, issue 10852 has been closed. I was just running the
test in Pharo3.0 on Ubuntu 13.10 64bit with btrfs filesystem and I see the
test failing. handle size answers 5. Is anyone else seeing this?
https://pharo.fogbugz.com/f/cases/10852/
Regards,
Markus
On 10.06.2013 17:29, Marcus Denker wrote:
The problem is that Pharo (I guess Pharo 4) will bootstrap from scratch….
;-)
I thought scratch wasn't smalltalk anymore?
Personally, I'd have the pretty nice logo and something not as geeky.
"Pharo. Neat logo, neat language." or the like. Maybe so
On 07.06.2013 17:55, Paul DeBruicker wrote:
From the below it seems to be something with running on linux 64bits
with a UI slows it down by a factor of 10x.
Command line per Camillo below on ubuntu 13.04 64bit on the hardware
was: 134ms
Using Pharo-2 windows all in one on a windows xp virtual
On 07.06.2013 11:27, Camillo Bruni wrote:
you can register on the penelope page.
avoid the dot in your gmail address (BTW: gmail ignores the dots anyway. you
can put as many dots as you want and still receive mails).
Ah, thanks - I think I used that form before with the dot.
When should I cons
Hello Marcus & List,
On 07.06.2013 10:44, Marcus Denker wrote:
Normally I thought that fogbugz should send you updates on bugs you
reported? We need to check that.
I got one mail with an URL that I could check for updates...
In this case, we have fixed in in 3.0 and 2.0 (the bug as a "Parent
Hello Sven & List,
On 07.06.2013 10:45, Sven Van Caekenberghe wrote:
Yes, it is an important problem (but the trigger is a change in Ubuntu 13.04).
I am not an Ubuntu desktop user, I can only hope that those who are will help.
Well, I have 13.04 on a few laptops (2GB Atom netbook, 8GB i7 dual c
Hello,
I reported a bug I found in
https://pharo.fogbugz.com/default.asp?10849_d0g95e46s78671vi
The issue was closed in fogbugz. I couldn't really figure out why, until I
looked at Penelope to find out that bug was considered a duplicate.
I had a hard time finding that information and the infor
40 matches
Mail list logo