Re: [Pharo-dev] About strange email related to smalltalkhub read-only on squeak-dev

2020-05-31 Thread Paul DeBruicker
Hi Norbert, The EFF gives a nice overview of the US situation: https://www.eff.org/deeplinks/2019/08/us-export-controls-and-published-encryption-source-code-explained Although you are not a US citizen, and don't live here, so I don't know how it could affect you. In the link above the EFF

Re: [Pharo-dev] Pharo4pharo mailing-list announce

2020-01-30 Thread Paul DeBruicker
+1 Pharo Smalltalk Developers mailing list wrote > Wow! > > That post on Pharo Weekly ( > https://pharoweekly.wordpress.com/2020/01/30/ann-pharo-4-pharo-mailing-list/ > ) really sets a great welcoming ambiance for any newcomer interested by > Pharo who'll read that or who'll stumble on it by

Re: [Pharo-dev] Dependencies between git projects ?

2019-05-07 Thread Paul DeBruicker
In Pharo settings you can set it to use HTTPS for all github: repos. Maybe on the first github authentication error it could ask whether they'd prefer to use anonymous HTTPS to connect to github. Sven Van Caekenberghe-2 wrote >> On 7 May 2019, at 21:32, Sean P. DeNigris > sean@ >

Re: [Pharo-dev] Problems trying to install pharo in centos 5.11

2019-05-07 Thread Paul DeBruicker
try it with a trailing slash e.g. curl https://get.pharo.org/64/ | bash Juan-2 wrote > Hi all > > Today I was trying to install pharo, in a Centos release 5.11 (Final), but > without success. > the error message is > > with curl > > curl https://get.pharo.org/64 | bash > > curl: (51)

Re: [Pharo-dev] AWS SDK for Pharo

2019-02-27 Thread Paul DeBruicker
Richard Prinz made one for Google's APIs The code is here: https://github.com/seandenigris/St-Google-API (also Sean - maybe merge them PRs! :) ) The blog post describing what he did is here: https://www.min.at/prinz/?x=entry:entry150318-104537 Maybe Amazon publishes a similar resource you

Re: [Pharo-dev] Using Metacello scripting API with non-github repo

2019-02-19 Thread Paul DeBruicker
gt; as Cyril suggested ... > >> On 19 Feb 2019, at 19:08, Paul DeBruicker > pdebruic@ > wrote: >> >> Does >> >> Metacello>>#bitbucketUser:project:commitish: path: >> >> do what you want? >> >> >> You can set your bi

Re: [Pharo-dev] Using Metacello scripting API with non-github repo

2019-02-19 Thread Paul DeBruicker
Does Metacello>>#bitbucketUser:project:commitish: path: do what you want? You can set your bitbucket username/password with MCBitbucketRepository siteUsername: myUsername sitePassword: myPassword Which should let you access your private repo Sven Van Caekenberghe-2 wrote > Hi, > > My

Re: [Pharo-dev] Roadmap for Pharo 8.0

2019-02-08 Thread Paul DeBruicker
Hi - Looks interesting. Is sista still a thing that is in the pipeline? Thanks for all your effort. Paul EstebanLM wrote > Hi list, > > We started Pharo 8.0 development and we wanted to share (and discuss, if > needed) what is our current Roadmap for Pharo 8.0. > As you can see, Windows

Re: [Pharo-dev] IceGitHubError API rate limit exceeded

2019-01-15 Thread Paul DeBruicker
hi - Once you get a no-scope token from https://github.com/settings/tokens You can configure Monticello to use it to access github by running MCGitHubRepository siteUsername: 'myUsername' sitePassword: 'token' Paul DeBruicker wrote > github allows 60 unauthenticated requests

Re: [Pharo-dev] IceGitHubError API rate limit exceeded

2019-01-12 Thread Paul DeBruicker
github allows 60 unauthenticated requests per hour per IP. IF you authenticate your requests you can make 5,000 per hour. If you don't want to wait an hour after hitting this error you should create a personal, no scope token following the instructions here:

Re: [Pharo-dev] Is ZipArchive broken?

2018-10-12 Thread Paul DeBruicker
See https://pharo.fogbugz.com/f/cases/21867/cannot-load-save-to-ftp-repository Stephane Ducasse-3 wrote > Hi > > When I drop a MCZ on a Pharo 70 image I get an instance of Character > does not understand bitOr: and I wonder if there is not a regression > in ZipArchive. > I can rename the file

Re: [Pharo-dev] [rmod] About the infinite debugger

2018-08-07 Thread Paul DeBruicker
Hi Tim, Just in the event you didn't know there is an option in the World menu to close all the open debuggers. Its in the "Windows" section, about half way down. Paul Tim Mackinnon wrote > ... > > On the plus side - its rare that you crash you image and then have to > recover changes -

Re: [Pharo-dev] Web Frameworks and "Modern" Features

2018-06-09 Thread Paul DeBruicker
Hi I think we're doing OK and that its a "discoverability" problem not a "does not exist or work" problem. E.g. here is Johan's talk about integrating ReactJS & Seaside https://www.youtube.com/watch?v=1eSGO7QSz5c I think part of the problem is that Facebook/Google/Amazon dominate the 'new

Re: [Pharo-dev] Missing Scriptaculous classes in Pharo "Seaside-3.1-portable.app"

2018-06-05 Thread Paul DeBruicker
Hi William, Your image probably doesn't have the Scriptaculous classes loaded. You can load them by running the following code in a workspace: ConfigurationOfSeaside3 project stableVersion load: 'Scriptaculous' Scriptaculous isn't deprecated but isn't the future. jQuery has better

Re: [Pharo-dev] files.pharo.org, get.pharo.org problems?

2018-05-24 Thread Paul DeBruicker
If it is a static site you can use this to manage it and host it on S3 https://github.com/laurilehmijoki/s3_website This is S3 pricing: https://aws.amazon.com/s3/pricing/ & calculator http://calculator.s3.amazonaws.com/index.html Marcus Denker-4 wrote >> On 24 May 2018, at

Re: [Pharo-dev] DateAndTime Offset Bug Proposal

2018-04-09 Thread Paul DeBruicker
I think #= is a bad selector for Date and should be avoided when determining whether something happens on a date, or whether two dates are the same. We all know March 24th in London covers a different 24 hours than March 24th in Hawaii but Date>>#= does not. I think whats needed are more

Re: [Pharo-dev] Calendrical capabilities

2017-12-26 Thread Paul DeBruicker
There is a port to Pharo (and gemstone) of Chronos here: http://smalltalkhub.com/#!/~Chronos/Chronos I think I last tested it in Pharo 4. publius789 wrote > This is very helpful. Nice holiday weekend reading! > > Sure, if its not too much trouble you can send it to me. > > Thanks. > >

Re: [Pharo-dev] shameless request: please star pharo-project/pharo in GitHub :)

2017-10-09 Thread Paul DeBruicker
for the lazy: https://github.com/pharo-project/pharo EstebanLM wrote > just to get better rating ;) > > Esteban -- Sent from: http://forum.world.st/Pharo-Smalltalk-Developers-f1294837.html

Re: [Pharo-dev] PharoJS crashes at first try

2017-08-13 Thread Paul DeBruicker
Hi Frank, I'd guess you anticipated this astute comment as well: What would you be willing to pay for a professionally commented, functioning, and documented PharoJS? Maybe offer that amount to the projects devs and see if they are willing to develop the system you want to use. Its hard to

Re: [Pharo-dev] remote logging tool?

2017-07-14 Thread Paul DeBruicker
Kinda. I made a segment.com API tool here: http://smalltalkhub.com/#!/~pdebruic/SegmentIO and they take the logging events and can send it to any of these 200+ tools: https://segment.com/catalog Last time I checked it was working but its been a while. Unless they've changed things

Re: [Pharo-dev] Recursively downloading Pharo packages / Building images with Nix

2017-06-27 Thread Paul DeBruicker
Luke Gorrie wrote > Hi Paul, > > On 23 June 2017 at 22:11, Paul DeBruicker > pdebruic@ > wrote: > >> For those projects described with Metacello baselines or configurations >> you >> can issue a #fetch command to download all the Monticello packag

Re: [Pharo-dev] Recursively downloading Pharo packages / Building images with Nix

2017-06-23 Thread Paul DeBruicker
For those projects described with Metacello baselines or configurations you can issue a #fetch command to download all the Monticello packages needed to load the projects into your image e.g. Metacello new configuration:'Seaside3'; repository:

Re: [Pharo-dev] Invoice management

2016-11-13 Thread Paul DeBruicker
SmallPOS may have invoice management. It is a point-of-sale system. But I haven't used it. dario trussardi wrote > Ciao, > > I hope this email and relative question does not create problems to the > list. > > A dear friend asked me if I was able to handle the invoice

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

2016-11-05 Thread Paul DeBruicker
I never got around to it resurrecting it (I don't have the skill, yet (ever?) ;) ) but there is the BerkeleyDbPlugin which should be portable to LMDB here: https://github.com/pdebruic/BerkeleyDBPlugin Jan van de Sandt wrote > Hi, > > With the latest 64bits VM (201611042126) and image

Re: [Pharo-dev] About Year not knowing exact daysInMonth

2016-09-10 Thread Paul DeBruicker
You could use Month class>>#daysInMonth:forYear: Which I think does what you want already. stepharo wrote > Hi > > I started to write a little utility to generate bills. > > And I need to know the number of days in a month and I was surprised that > > (Month month: 2) daysInMonth returns

Re: [Pharo-dev] SUnit improvements need review and feedback

2016-09-03 Thread Paul DeBruicker
Oh wait I see in the first message in this thread you have self timeLimit: 10 seconds Paul DeBruicker wrote > How do you propose raising the limit for a specific test would go? > > Pragma? > Denis Kudriashov wrote >> Super!!! It's integrated (In 60201). Thank's integ

Re: [Pharo-dev] SUnit improvements need review and feedback

2016-09-03 Thread Paul DeBruicker
How do you propose raising the limit for a specific test would go? Pragma? Denis Kudriashov wrote > Super!!! It's integrated (In 60201). Thank's integrators. > > Now we need correct default time limit and mark long tests as long. I > opened new issue 19035 >

Re: [Pharo-dev] Odd Commits to Soup Repo

2016-07-28 Thread Paul DeBruicker
Sure you can delete mcz from Smalltalkhub. Or at least the Web UI offers a 'Delete .mcz' button, which appears to work. Sign in Navigate to the project Click on Commits Find the MCZ you want to delete Click the name of the MCZ Click the "Delete .mcz" button It should then be deleted. As a

Re: [Pharo-dev] Reordering working directory mess

2016-06-24 Thread Paul DeBruicker
Can't this be accomplished today with a symbolic link to a package directory somewhere on your HD? e.g. rm -rf package-cache ln -s /path/to/my/common/package/repo package-cache Works for me at least. Nicolas Passerini wrote > I agree with Javier, it would be much nicer to have only one

Re: [Pharo-dev] Problem with delay waiting (OSSubprocess code) on Pharo 5.0

2016-05-18 Thread Paul DeBruicker
the reason I asked about OSProcess in Pharo 5 was that OSProcess waitForCommand: 'ls' never returned. Maybe its another instance of this problem. And it happens everytime. There is a 50ms delay in the #waitForCommand: method hope this helps Paul Mariano Martinez Peck wrote >

Re: [Pharo-dev] new collaborators in Pharo 5

2016-04-29 Thread Paul DeBruicker
I'm pad I think. EstebanLM wrote > Hi, > > So, according to my script, this are the new collaborators (people who > started contributing after 1st march 2015): > > Maxleske > CyrilFerlicot > Latsabben > Nicolaihess > synectique > BorisSpasojevic > Stef > Bite > hn > SvenVanCaekebenberghe >

Re: [Pharo-dev] Pharo's VM --memory seems to be ignored

2016-04-22 Thread Paul DeBruicker
On mac it doesn't work. You need to change the setting in the plist file as described here: http://forum.world.st/running-out-of-memory-while-processing-a-220MB-csv-file-with-NeoCSVReader-tips-tp4790264p4790594.html Mariano Martinez Peck wrote > Hi guys, > > I have a large image, and I

Re: [Pharo-dev] canc/del closes windows

2016-04-07 Thread Paul DeBruicker
Hi Davide & Ben, I've seen this while using an external keyboard, on a Mac Air laptop (10.11.4 right now), using Pharo 4. The mac laptop has a key marked 'Delete' which is in the 'backspace' location .e.g two keys above enter/return, it doesn't happen with that key. It happens with the Del key

Re: [Pharo-dev] Call a WebService with authentication

2016-03-22 Thread Paul DeBruicker
ZnClient new url: 'https://www.example.com'; username: 'myuser' password: 'mypwd'; get angelo.favero wrote > Hi, all. > > I'm calling a web service with java using this java code to authenticate. > >

Re: [Pharo-dev] TimeZoneDatabase - are we using this?

2016-03-14 Thread Paul DeBruicker
I just added a DateTime class as a subclass of DateAndTimeto that project today, which retains the time zone name with the instance so times in the future can, as needed have their offsets changed to reflect new legislative decisions. It works in Pharo 4 on Mac/Linux. Not on Windows at the

[Pharo-dev] issue 15733 - OK to change the test?

2016-03-03 Thread PAUL DEBRUICKER
See http://forum.world.st/The-Inbox-System-mt-697-mcz-td4802003.html for the orginial discussion that this fix is attempting to fix. Basically there is an extra and unnecessary #home send in MessageTally>>#tally:by: MessageTally>>#tally:in:by: and QSystemTally>>#tally:by: Prior to the fix

Re: [Pharo-dev] Call about Numerical Methods in Pharo :)

2016-03-02 Thread Paul DeBruicker
+1 Nicolas Cellier wrote > SciPharo? Not so great news from my POV. > What is so much pharo specific in this library? > Is Smalltalk scientific community large enough for yet another split? > > 2016-03-02 14:56 GMT+01:00 Serge Stinckwich > serge.stinckwich@ > : > >> On Wed, Mar 2, 2016 at

Re: [Pharo-dev] What is the limit of prespur VM memory under Windows?

2016-02-29 Thread Paul DeBruicker
A while ago Eliot Miranda posted this script to see when an image runs out of memory: | them | them := OrderedCollection new. [[them addLast: (ByteArray new: 1600). Transcript cr; show: ((Smalltalk vm parameterAt: 3) / (1024*1024.0) printShowingDecimalPlaces: 1); flush] repeat] on:

[Pharo-dev] New #s senders search functionality was in Spotter Re: Understanding Spotter?

2016-01-11 Thread Paul DeBruicker
Hi Doru, The lack of this functionality has been my main complaint against spotter. So thanks for adding it. Is the #s functionality backported to/loadable in Pharo 4? is there an equivalent search for implementors? Will you also please please please fix it such that the entire list of

[Pharo-dev] Replacing FogBugz with an open source alternative. was: Re: [squeak-dev] The Trunk: Network-topa.166.mcz

2015-10-22 Thread Paul DeBruicker
Gitlab.com has an import tool for fogbugz issues. Their hosted service is https://about.gitlab.com/gitlab-com/ I'm not sure of the quality of their issue tracker but it could be a way out. The gitlab source issue tracker is here: https://gitlab.com/gitlab-org/gitlab-ce/issues to see what its

Re: [Pharo-dev] [review needed] speed up RBClassNotReferencedRule

2015-09-17 Thread Paul DeBruicker
Marcus Denker-4 wrote > Hi, > > Review needed for > > > https://pharo.fogbugz.com/f/cases/16074/Is-RBClassNotReferencedRule-200x-slower-in-Pharo-4-vs-Pharo-3 > > Speedup can be checked with: > > rule:=RBClassNotReferencedRule new. > environment:=RBBrowserEnvironment new forPackageNames:

Re: [Pharo-dev] Random access to meta repos?

2015-08-24 Thread Paul DeBruicker
per this discussion: https://github.com/dalehenrich/metacello-work/issues/354 You might check that your copy of MCFileRepositoryInspector#refresh doesn't refer to a nonexistent instvar Uko2 wrote Hi, I’ve noticed that when I try to open a gitfiletree repo, before displaying its contents

Re: [Pharo-dev] Getting some tag in an HTML file

2015-08-13 Thread Paul DeBruicker
You probably want this: http://smalltalkhub.com/#!/~PharoExtras/Soup abergel wrote Hi! Together with Nicolas we are trying to get all the from html files. We have tried to use XMLDOMParser, but many webpages are actually not well formed, therefore the parser is complaining. Anyone

[Pharo-dev] Slice 16018 add 'Debug tests' menu item to Pharo4 is in the pharo 40 inbox

2015-07-23 Thread Paul DeBruicker
I added an issue: https://pharo.fogbugz.com/f/cases/16018/Add-Debug-test-method-to-Pharo-4-Nautilus-so-you-can-debug-a-test-from-nautilus The code is in the Pharo40Inbox But am not too concerned about it getting into a future release of Pharo 4 because I haven't addressed any of the bugs

Re: [Pharo-dev] why we removed debugTest from nautilus?

2015-07-23 Thread Paul DeBruicker
Load the Slice #16018 into your Pharo 4 image and it will add the menu item back. Francisco Ortiz Peñaloza wrote Hi, i'm really missing the debug feature in nautilus. +1 to restore it! But it's worse than what others describe, lets say you write a tests that fails, i've to press ALT +

Re: [Pharo-dev] xmlwriter change brakes an issuetracker-image test

2015-07-22 Thread Paul DeBruicker
Is there a spec for XML documents and if so what does it say is the correct behavior? I would guess the encoding declaration is optional according to the spec and shouldn't be relied on in the test as being there in default. Probably need to add the encoding explicitly if its required by the

Re: [Pharo-dev] Getting the mbox file for this mailing list?

2015-07-06 Thread Paul DeBruicker
I ported some code that does a good job of extracting the interesting parts from an email reply: http://smalltalkhub.com/#!/~pdebruic/EmailReplyParser It has examples and can parse raw mails and text only or multipart emails. Its based on what github uses

[Pharo-dev] added a BaselineCommandLineHandler to the Pharo40Inbox

2015-06-18 Thread Paul DeBruicker
The issue is: https://pharo.fogbugz.com/f/cases/15802/Add-BaselineCommandLineHandler-to-load-BaseilneOf-from-the-command-line The slice with the code is in the inbox. I hven't looked at Pharo 5 but would assume that this would drop right in unless there have been changes to

Re: [Pharo-dev] Pharo 4, format on accept/display

2015-06-11 Thread Paul DeBruicker
The 'fix' for Pharo40 is in the Pharo40Inbox as Slice-14387. It formats code on accept and/or display using the RBConfigurableFormatter. Marcus Denker-4 wrote On 11 Jun 2015, at 08:16, Peter Uhnák lt; i.uhnak@ gt; wrote: If my understanding of Pharo's release management is correct,

Re: [Pharo-dev] Pharo 4, format on accept/display

2015-06-11 Thread Paul DeBruicker
Format on display does horrible things to the Playground for the version I uploaded yesterday. A new version is in the inbox that does not do them. Marcus Denker-4 wrote Thanks, I will have a look. On 11 Jun 2015, at 16:39, Paul DeBruicker lt; pdebruic@ gt; wrote: The 'fix

[Pharo-dev] Pharo 4, format on accept/display

2015-06-10 Thread Paul DeBruicker
Hi I've hacked together an implementation of format on accept display. I know someone is redoing that functionality to better suit future needs. Should I publish what I've got as a slice to the Pharo40Inbox for people to use that may miss it now that do not want to wait for the new

Re: [Pharo-dev] Seaside One Click Experience on Pharo 4?

2015-04-21 Thread Paul DeBruicker
I'm against it without a commitment to also update all the docs that use the one click. So its not just repackaging an image and vm into a one click experience. Its a bigger task that will need weeks of work. The docs are debugged and work. Seaside hasn't changed much. Pharo has changed ...

Re: [Pharo-dev] pharo-contribution CI out of space?

2015-01-20 Thread Paul DeBruicker
Stephan Eggermont wrote Who is dealing with CI? The queue is still growing and nothing seems to finish. Stephan Jenkins tells me there are only 4 jobs using any significant amount of space: - FileTree-Pharo30-dev, - Fuel-Stable - Fuel-Development - PharoProjectCatalog2 The total

Re: [Pharo-dev] [ANN] Visual Memory profiler

2015-01-14 Thread Paul DeBruicker
Looks interesting. Does this work in Pharo 3? If so, where can I find the correct configuration of Spy? ITs not in the configuration browser in my image. Thanks Paul abergel wrote Dear Friends and Colleagues, We are happy to announce Memory Profiler, a new profiler for Pharo. This

Re: [Pharo-dev] The Smalltalk Renaissance Program

2015-01-13 Thread Paul DeBruicker
Can't believe I forgot about this one: http://squeak.joyful.com/LanguageNotes I used to use it all the time when learning the basics horrido wrote My Resources page is looking rather sparse. Doesn't anybody have any favourite Smalltalk resources? Especially for advanced Smalltalkers.

[Pharo-dev] '(\w+s*){1, 3}' asRegex - image locks up in Pharo 3 4

2015-01-09 Thread Paul DeBruicker
Hi - In a workspace, if you inspect (or print, doIt, ... ) the following: '(\w+s*){1,3}'' asRegex The image will enter into a loop that the Cmd+. can't break out of. '(\w\s){1,3}' asRegex does not lock up the image. Including just one + or * causes the infinite loop when using a

[Pharo-dev] using the command line to recompile a method that has a halt but shouldn't

2015-01-08 Thread Paul DeBruicker
Without thinking about it too much I put a halt in RxParser#buildFrom: then saved restarted the image. Now my image is in an infinite loop because buildFrom: is used in logging halts. How can I recompile or revert #buildFrom: to the previous version? Thanks A sample of the stack is:

[Pharo-dev] Are there lazy quantifiers in Pharo's Regex implementation ?

2015-01-07 Thread Paul DeBruicker
I can see and use the {1,3} quantifiers but are there lazy quantifiers too? e.g. http://msdn.microsoft.com/en-us/library/3206d374(v=vs.110).aspx It seems like the ? is parsed as a lookahead or as an optional element. Attempting to use it as a lazy quantifier gives an error.

Re: [Pharo-dev] Is immutability on Pharo's roadmap?

2015-01-01 Thread Paul DeBruicker
did you see this thread a while back: http://forum.world.st/Should-literals-be-immutable-td4786938.html sebast...@flowingconcept.com wrote Sorry for the naive question but I’m seeing an avalanche of interest in functional programming and many there uses immutability as foundation. So I

Re: [Pharo-dev] The Smalltalk Renaissance Program

2014-12-31 Thread Paul DeBruicker
everything by Andres was good to read: http://www.amazon.com/s/ref=dp_byline_sr_book_1?ie=UTF8field-author=Andres+Valloudsearch-alias=bookstext=Andres+Valloudsort=relevancerank And also http://www.amazon.com/Smalltalk-Best-Practice-Patterns-Kent/dp/013476904X horrido wrote My Resources page

Re: [Pharo-dev] On Twitter

2014-12-28 Thread Paul DeBruicker
https://www.twitter.com/renggli/lists/smalltalk-people https://twitter.com/renggli/lists/smalltalk-companies horrido wrote Whoa! This is good! I didn't know about these. We should have more Twitter accounts, though. We need more participation * from the rank and file * of the Smalltalk

Re: [Pharo-dev] [ANN] NetGen - OSM Roassal Demo

2014-11-19 Thread Paul DeBruicker
Hi - This looks good useful. What is the license? Thanks Paul Onil Goubier wrote Hi all, We are pleased to announce a wireless sensor network animation demo in Pharo, Roassal and OpenStreetMap. https://github.com/OnilGoubier/Cirela The release contains 2 packages: 1. Cirela-OSM

[Pharo-dev] How do I get a 512MB image with Pharo 3 on a mac?

2014-11-16 Thread Paul DeBruicker
Hi - I don't have a need for a big image. I just discovered I have no idea how to make one larger than ~512MB, and am curious. I was running into an out of memory error and discussing it in a thread on pharo-users list

[Pharo-dev] cross platform issue with versionner in pharo 3.0 - want a slice?

2014-11-15 Thread Paul DeBruicker
Hey - I'm thinking about making a slice to that versionner doesn't use Symbols for class names when creating baselines. The problem is that on GemStone symbols and strings don't compare as equal, so looking up a class in a repo fails. Is that slice something that is generally

Re: [Pharo-dev] Spotlight2 for Pharo40

2014-11-12 Thread Paul DeBruicker
Can you list the changes necessary to get the existing Spotlight2 into Pharo 3/4 ? Or should someone else work on that while the new hotness is developed? Tudor Girba-2 wrote Hi Mariano, We want to build a moldable search interface that allows one to find objects. It will likely be a

Re: [Pharo-dev] Webdoc: status?

2014-11-11 Thread Paul DeBruicker
I don't understand. Is smalltalkhub backed up in a way that would prevent someone else from doing this with their inria paid for repos? Are there backups available now that just haven't been restored because of lack of time/people? stepharo wrote Thanks Max. Camillo did not get the

Re: [Pharo-dev] Fix 'Search Code' menu item in Nautilus

2014-11-05 Thread Paul DeBruicker
for that is simple: I will not do it, but if the fix is important enough *for someone else* to back port, than this is of a kind that should be considered. = We need to be cautious with new features… but then there might be cases where it makes sense. On 04 Nov 2014, at 17:45, Paul DeBruicker lt

[Pharo-dev] fixing 'format on display' and 'format on accept'

2014-11-04 Thread Paul DeBruicker
Hi - I'm going to get 'format on display' and 'format on accept' working in Nautilus. In Pharo 3 in the settings browser under 'code browsing' there is a 'pretty print' check box. As far as I can tell it doesn't affect code displaying at all in Nautilus. Is it OK to repurpose that

Re: [Pharo-dev] fixing 'format on display' and 'format on accept'

2014-11-04 Thread Paul DeBruicker
Slice is in the Pharo30Inbox https://pharo.fogbugz.com/f/cases/14387/ressurrect-format-on-accept-and-format-on-display It uses the settings browser as described below and auto-formats methods (on display or accept or both) in Nautilus and the senders/implementors browser. Paul DeBruicker

[Pharo-dev] Fix 'Search Code' menu item in Nautilus

2014-11-03 Thread Paul DeBruicker
Hi - The attached slice makes the 'Search Code' menu item in Nautilus work like it did prior to the adoption of Nautilus in Pharo 3. I do not have commit rights to Pharo30Inbox but would submit it there if I did. I have not sent the contributor agreement but will tomorrow. The issue in

Re: [Pharo-dev] Way to embed efficiently data?

2014-10-29 Thread Paul DeBruicker
philippeback wrote Could be nice... http://blog.bittorrent.com/2013/05/23/how-i-created-my-own-personal-cloud-using-bittorrent-sync-owncloud-and-raspberry-pi/ Phil If you go that route don't install ownCloud via the repositories:

Re: [Pharo-dev] Can anyone provide me with clear, complete, and detailed instructions for loading PetitParser into Pharo 3.0?

2014-10-27 Thread Paul DeBruicker
If ConfigurationOfPetitParser is loaded in your image you should be able run the following code in a workspace to load the 'Core' metacello group: ConfigurationOfPetitParser project stableVersion load: 'Core' I'm not sure of the canonical location of the ConfigurationOfPetitParser though, as

Re: [Pharo-dev] Someone remember a video ?

2014-10-07 Thread Paul DeBruicker
Was it this BabyMock one: https://www.youtube.com/watch?v=ZDjEky4u16o SergeStinckwich wrote I remember someone (Stef ?) send a link to a video demo in the mailing-list about a framework in order to verify lively that an object is initialized correctly. Everytime you send a message to a new

Re: [Pharo-dev] Issue 14160: Introduce isXXX dialect testing methods to SmalltalkImage to ease cross-dialect development

2014-10-05 Thread Paul DeBruicker
Would using Metacello's knowledge of the platform work for you? e.g. (MetacelloPlatform current defaultPlatformAttributes includes: '#squeak') ifTrue:[ ... ] (MetacelloPlatform current defaultPlatformAttributes includes: '#pharo1.2') . (MetacelloPlatform current defaultPlatformAttributes

Re: [Pharo-dev] Sending SMS through Pharo/HTTP

2014-10-02 Thread Paul DeBruicker
Tropo.com has free developer accounts. I've made an interface to their WebAPI that allows you to send receive SMS messages and telephone calls from Pharo, GemStone, and, last time I checked, Squeak. The code is here: http://smalltalkhub.com/#!/~pdebruic/Tropo beware the 'About Tropo'

[Pharo-dev] extracting data from PDFs - do we have anything that does that kinda thing?

2014-09-16 Thread Paul DeBruicker
Hi - I'm specifically interested in something like pdf2table (http://ieg.ifs.tuwien.ac.at/projects/pdf2table/) Thanks in advance Paul

Re: [Pharo-dev] WhatsUp from: 2014-07-21 until: 2014-07-31

2014-07-22 Thread Paul DeBruicker
Did you know it was already part of the JQueryWidgetBox package? http://smalltalkhub.com/#!/~Seaside/JQueryWidgetBox at least up to Full calendar version 1.6 ish. Esteban A. Maringolo wrote 2014-07-21 2:00 GMT-03:00 lt; seaside@.inria gt;: Hi! We're sending this automatic

Re: [Pharo-dev] RFB broken

2014-07-17 Thread Paul DeBruicker
Have you seen this: http://www.samadhiweb.com/blog/2014.05.01.rfb.pharo3.html Damien Cassou wrote Hi, some changes in Pharo 3 broke the RFB Server menu (loadable from PharoExtra/RFB, there is a configuration). What happened is that: 1/ Pharo 30507, slice 11492, UpdatingMenuItemMorph

[Pharo-dev] exact differences between two bits of JSON

2014-07-17 Thread Paul DeBruicker
Hi - Is there a convenient way to get only the differences between two json strings (or JSONObjects, or Dictionaries)? Say I have JSON objects (or dictionaries constructed from JSON strings): A { glossary: { title: example glossary, GlossDiv: { title:

[Pharo-dev] can I be added to the pharoextras team?

2014-06-25 Thread Paul DeBruicker
If not, could I be added as a contributor to the PharoExtras/XMLSupport repo? my sthub username is pdebruic Thanks for your help Paul

[Pharo-dev] ConfigurationOfZincHTTPComponents class#catalogKeywords - can we change that a little bit?

2014-06-10 Thread Paul DeBruicker
The current method is #catalogKeywords ^ #(#networking #internet #http #client #server #request #response #url #mime-type #character-encoding) Can we change it to #catalogKeywords ^ #(#networking #internet #http #client #server #request #response #url #mimeType

Re: [Pharo-dev] Mustache

2014-05-20 Thread Paul DeBruicker
Well if you get a few minutes and feel like doing something send a pull request with the changes to their github pages site you'd like to see. Makes it easy on them. NorbertHartl wrote I tried that already. But as with most hipster projects nobody feels responsible anymore. I contacted

Re: [Pharo-dev] Hijri calendar

2014-04-23 Thread Paul DeBruicker
Chronos has: IslamicFatimidCalendar Concept: IslamicFatimidCalendar implements the Islamic Fatimid Calendar. The Islamic Fatimid Calendar (also called the Tabular Islamic Calendar) is an arithmetical variation of the Astronomical Islamic Calendar (the one most Muslims

Re: [Pharo-dev] Hijri calendar

2014-04-23 Thread Paul DeBruicker
Torsten Bergmann wrote Paul DeBruicker wrote Chronos has: ... Is that what you want? The www.chronos-st.org seems to be gone. But there is http://smalltalkhub.com/#!/~Chronos/Chronos/ Thanks - I will have a look. Is it known to work in Pharo 3.0? Thx T. Eh it will probably die

[Pharo-dev] Please add me as a contributor to PharoExtras/XMLWriter

2014-02-15 Thread Paul DeBruicker
the repository is here: http://www.smalltalkhub.com/#!/~PharoExtras/XMLWriter/contributors my username is pdebruic.. I'd like to add a #stable: method to the configuration Thanks Paul

Re: [Pharo-dev] Comparing dates

2014-02-02 Thread Paul DeBruicker
Why are you adding hours to a Date in the first place? I don't understand. Does that make it the next day or the same day 2 hours past the start of the day in whatever timezone you are in, intuitively? I vote: b. Bug. #= should compare calendar (gregorian, julian etc,), year, month, day or

Re: [Pharo-dev] Comparing dates

2014-02-02 Thread Paul DeBruicker
#translateTo: just shifts the timezone. So he's not adding hours to anything. Why are you adding hours to a Date in the first place? I don't understand. Does that make it the next day or the same day 2 hours past the start of the day in whatever timezone you are in, intuitively? I vote:

Re: [Pharo-dev] Json case: Mapping objects to dictionaries

2013-12-05 Thread Paul DeBruicker
FWIW - The ElasitcSearch stuff only maps to Dictionaries because of an oversight on my part. It should be fine if those objects materialized as JsonObjects. What are you doing to get Dictionaries? Its been a while since I looked at the code. To map domain objects I usually do something

Re: [Pharo-dev] How to encrypt a password?

2013-11-21 Thread Paul DeBruicker
Davide Varvello wrote Paul, I've already tried to load PasswordHashingFFI-PaulDeBruicker.16.mcz, but a warning shows: This package depends on the following classes: ExternalStructure You must resolve these dependencies before you will be able to load these definitions:

Re: [Pharo-dev] Feature request poll

2013-11-05 Thread Paul DeBruicker
For whomever wonders what what have the romans ever done for us is about watch: http://www.youtube.com/watch?v=9foi342LXQE you can stop around 2:10 -- View this message in context: http://forum.world.st/Feature-request-poll-tp4718993p4719475.html Sent from the Pharo Smalltalk Developers

Re: [Pharo-dev] Add HTTPRequest plugin to CI

2013-11-01 Thread Paul DeBruicker
authorization info in the HTTPRequest module on Inria's CI. thanks again, Paul Camillo Bruni-3 wrote On 2013-10-31, at 19:55, Paul DeBruicker lt; pdebruic@ gt; wrote: Is it OK/possible to add this plugin to Jenkins: https://wiki.jenkins-ci.org/display/JENKINS/HTTP+Request+Plugin From what

Re: [Pharo-dev] inria ci problem - content encoding error when clicking 'new job' in JobTemplate page

2013-10-31 Thread Paul DeBruicker
Hi Camillo, That fixed it. Thanks Paul Camillo Bruni-3 wrote probably :), I put you on admin, could you try again? On 2013-10-29, at 15:29, Paul DeBruicker lt; pdebruic@ gt; wrote: Is this error happening because my user is neither an Admin nor a Slave Admin and therefore I

[Pharo-dev] Add HTTPRequest plugin to CI

2013-10-31 Thread Paul DeBruicker
Is it OK/possible to add this plugin to Jenkins: https://wiki.jenkins-ci.org/display/JENKINS/HTTP+Request+Plugin With it a person could, if they wanted, set the Inria Jenkins to monitor some smalltalk mc repo urls and then trigger a github hook which would start travis-ci building a

Re: [Pharo-dev] inria ci problem - content encoding error when clicking 'new job' in JobTemplate page

2013-10-30 Thread Paul DeBruicker
Is this error happening because my user is neither an Admin nor a Slave Admin and therefore I cannot create jobs? Thanks Paul Paul DeBruicker wrote Hi - After logging in, when I visit this page: https://ci.inria.fr/pharo-contribution/view/all/newJob I get a 'content encoding

[Pharo-dev] inria ci problem - content encoding error when clicking 'new job' in JobTemplate page

2013-10-28 Thread Paul DeBruicker
Hi - After logging in, when I visit this page: https://ci.inria.fr/pharo-contribution/view/all/newJob I get a 'content encoding error' and nothing is displayed in the browser. Is there another way to create a job? Thanks Paul

Re: [Pharo-dev] default monospaced code font

2013-10-15 Thread Paul DeBruicker
philippeback wrote Theming Pharo dark is a major undertaking (as colors are all over in the most erratic possible way - for fun, turn the background of controls to nuclear green and see where that shows). And trying to lake one proved to be non useful on 2.0 as 3.0 has everything changed

Re: [Pharo-dev] About Soup and XML

2013-10-07 Thread Paul DeBruicker
Hi stef I copied the XMLSupport project from squeaksource because I thought squeaksource.com was going to go away. Now that it is not I'm totally fine using it, like we have in the past. I'll update the config now. Thanks Paul Stéphane Ducasse wrote Hi paul I do not think that it is

[Pharo-dev] add me to the PharoExtras/Gettext package please

2013-10-05 Thread Paul DeBruicker
The Configuration there doesn't reference the Seaside related packages or the Gemstone version so I'd like to upload a config that does. Thanks Paul

Re: [Pharo-dev] How do diagnose image locks up (cpu 100%) on save?

2013-08-23 Thread Paul DeBruicker
Norbert Hartl wrote Am 23.08.2013 um 13:21 schrieb Sven Van Caekenberghe lt; sven@ gt;: Now, this is the normal behaviour, maybe something did change somewhere. most likely :) Norbert This: RFBServer start. Smalltalk snapshot:true andQuit: false. works fine in Pharo 1.4 on

[Pharo-dev] How do diagnose image locks up (cpu 100%) on save?

2013-08-22 Thread Paul DeBruicker
Hi - The plain Pharo 20619 + RFB image in my dropbox here: https://dl.dropboxusercontent.com/u/4460862/pharo2RFB.zip freezes when you save it while the RFB server is running. The freeze occurs in the #snapshotPrimitive. This is the VM info I'm using: 3.9-7 #1 Wed Mar 13 18:22:44 CET 2013 gcc

  1   2   >