Re: [Pharo-users] Create png from pdf

2017-01-16 Thread Sabine Manaa
Hi Henrik, Hi Olivier, thank you. I assume I have to stay at my old solution for the first time. Regards Sabine 2017-01-16 14:57 GMT+01:00 Olivier Auverlot [via Smalltalk] < ml-node+s1294792n4929731...@n4.nabble.com>: > Hi Sabine, > > Converting a PDF into a PNG with Pharo is not an easy task

[Pharo-users] Just a comment on Pharo 5.0..

2017-01-16 Thread sergio ruiz
Of all the great things i have seen added to pharo over the past years, the absolute coolest i have yet seen is the addition of a hotkey sequence for “Save Image”.. Thank you guys so much! peace, sergio photographer, journalist, visionary Public Key: http://bit.ly/29z9fG0 #BitMessage 

Re: [Pharo-users] super super

2017-01-16 Thread Hilaire
Thanks Henrik Le 15/01/2017 à 22:33, Henrik Nergaard a écrit : > menu perform: #isMorph withArguments: #() inSuperclass: ProtoObject. "Error > #isMorph not implemented" -- Dr. Geo http://drgeo.eu

Re: [Pharo-users] About Git

2017-01-16 Thread Offray Vladimir Luna Cárdenas
On 16/01/17 07:34, Pierce Ng wrote: On Sun, Jan 15, 2017 at 08:09:28AM -0500, Offray Vladimir Luna Cárdenas wrote: That's the core idea of fossil. "GitHub alike in a box" DVCS with tickets, wiki, web server/GUI in 2 MB. Hi Offray, Do you use Fossil with Pharo source code? Just store mcz

Re: [Pharo-users] About Git

2017-01-16 Thread Dimitris Chloupis
Several things I disagree with [1] 1) "Living in the image" , I think this is a usual smalltalker misconception in that just because you do not see something it means it does not exist. Obviously thats not the case with the Pharo image. The Pharo image is indeed a binary file and self contained

Re: [Pharo-users] Big List of Naughty Strings

2017-01-16 Thread Sven Van Caekenberghe
> On 16 Jan 2017, at 14:39, Ben Coman wrote: > > Obligatory comic - Bobby Tables, Exploits of a Mum > https://xkcd.com/327/ Always hilarious ! > cheers -ben > > On Mon, Jan 16, 2017 at 6:19 PM, Sven Van Caekenberghe wrote: >> This might be interesting to

Re: [Pharo-users] Create png from pdf

2017-01-16 Thread olivier auverlot
Hi Sabine, Converting a PDF into a PNG with Pharo is not an easy task because you must write a PDF reader. With Artefact, the other approach is to draw on a form instead of generating the PDF instructions. For geometrics items, It's relatively easy but the respect of paper formats and the

Re: [Pharo-users] About Git

2017-01-16 Thread werner kassens
On 01/16/2017 12:20 PM, Peter Uhnak wrote: Usually it's better to keep the discussion contained on the mailing list, and not extend it to private conversations. Hi Peter, after your message i considered the the thread to be essentially closed. My point was that not only you don't understand

Re: [Pharo-users] Big List of Naughty Strings

2017-01-16 Thread Ben Coman
Obligatory comic - Bobby Tables, Exploits of a Mum https://xkcd.com/327/ cheers -ben On Mon, Jan 16, 2017 at 6:19 PM, Sven Van Caekenberghe wrote: > This might be interesting to some people for testing purposes. You all heard > stories how certain input caused certain systems to

Re: [Pharo-users] Create png from pdf

2017-01-16 Thread Henrik Nergaard
See Form protocol (*Graphics-files), #writePNGFileNamed: , and PNGReadWriter. | canvas | canvas := FormCanvas extent: World extent. World fullDrawOn: canvas. canvas form writePNGFileNamed: 'imageOfWorld.png'

[Pharo-users] Big List of Naughty Strings

2017-01-16 Thread Sven Van Caekenberghe
This might be interesting to some people for testing purposes. You all heard stories how certain input caused certain systems to crash. Here is someone who collected lots of these strings. Big List of Naughty Strings https://github.com/minimaxir/big-list-of-naughty-strings Luckily, Pharo can

Re: [Pharo-users] selectAllSortBy: usage

2017-01-16 Thread Sabine Manaa
Hi Asbath, 1.) the code you have sent looks like there is a blank between # and date_actu. There should be no blank. 2.) You use the method selectAllSortBy: and not sortBy: I tried your code with my classes (with mongodb) and works like this: RKAPerson selectAllSortBy: {#date_actu-> 1.

[Pharo-users] Create png from pdf

2017-01-16 Thread Sabine Manaa
Hi, currently, I create pdfs with Artefact and it works fine. For displaying previews of the pdf reports, I use Apache PDFBox to generate pngs from the pdfs. This works, too. But I would prefer to generate the pngs directly from pharo and do not call external libraries. Stephane told me that