[Pharo-users] Finding files in Pharo

2017-06-17 Thread Hernán Morales Durand
I would like to find files in Pharo like the UNIX find command: find . -iname "*.txt" -type f -print find . \( -iname "*.txt" -o -iname "*.csv" \) -print find . -maxdepth 2 -name "example*" -type f -print find . -type f -atime -7 -size +2M -perm 644 -print Do we have some package on top of Fi

Re: [Pharo-users] Finding files in Pharo

2017-06-18 Thread Hernán Morales Durand
gt; on Mac OS and Linux)? > > Sent from my iPhone > > > On Jun 17, 2017, at 19:59, Hernán Morales Durand < > hernan.mora...@gmail.com> wrote: > > > > I would like to find files in Pharo like the UNIX find command: > > > > find . -iname "*.txt"

Re: [Pharo-users] Finding files in Pharo

2017-06-18 Thread Hernán Morales Durand
eck the category 'enumerating' in AbstractFileReference, with methods > like #childrenMatching: and #allChildrenMatching: > > Once you have a reference, you can use other meta data, see the > 'accessing' protocol to further your query. > > HTH, > &g

Re: [Pharo-users] Finding files in Pharo

2017-06-19 Thread Hernán Morales Durand
e file properties? > > > > On Sun, Jun 18, 2017 at 4:59 AM, Hernán Morales Durand > wrote: > > I would like to find files in Pharo like the UNIX find command: > > > > find . -iname "*.txt" -type f -print > > > > find . \( -iname "*.txt" -o

Re: [Pharo-users] Finding files in Pharo

2017-06-20 Thread Hernán Morales Durand
2017-06-20 3:14 GMT-03:00 Alistair Grant : > Hi Hernan, > > On Mon, Jun 19, 2017 at 09:23:35PM -0300, Hern??n Morales Durand wrote: > > I took the time to review FileSystemDirectoryEntry. > > > > UNIX has 3 types of timestamps > > > > -The access time is the last time when the content was accessed

Re: [Pharo-users] Validate password with PBKDF2

2017-06-30 Thread Hernán Morales Durand
I guess I could integrate Udo's PBKDF2 into ApplicationSecurity. See under "Using the CheckPoint" if matches your API you're looking for: http://80738163270632.blogspot.com.ar/2014/10/application-security-2-checkpoint.html Cheers, Hernán 2017-06-30 4:43 GMT-03:00 Francis via Pharo-users < phar

Re: [Pharo-users] Validate password with PBKDF2

2017-07-05 Thread Hernán Morales Durand
Hi Udo and others, I just integrated PBKDF2 hasher into ApplicationSecurity: Usage example: (ASPasswordVerifier new hasher: ASPBKDF2Hasher new; plainTextPassword: 'testPassword'; storedSalt: '590b223fc584ae96edf3d5dc7e363034'; storedFinalPassword: '2828efb46d56ca2fb004026398d412ef

Re: [Pharo-users] Creating the smallest server runtime footprint

2017-07-14 Thread Hernán Morales Durand
Hi Tim, 2017-07-14 4:59 GMT-03:00 Tim Mackinnon : > Hi - buoyed by the success of a minimal image (thanks Pavel), I'm > wondering if I can get even smaller. > > Can you share a script to reproduce the steps to build a minimal image? Is it reproducible under Windows? Cheers, Hernán

[Pharo-users] Cloning code from GitHub using Iceberg

2017-07-23 Thread Hernán Morales Durand
Hi guys, I am trying to import code - in Pharo 6 - from a GitHub repository: https://github.com/jigyasa-grover/CORMAS-Pharo. The repository doesn't include a Baseline, and so it is not loadable using a Metacello expression right? I've tried to clone it with Iceberg with Remote URL: https://github

Re: [Pharo-users] Cloning code from GitHub using Iceberg

2017-07-24 Thread Hernán Morales Durand
; Thanks, that fixed it. > also, I have no idea why you have two entries for same project :) > Because I clicked "Clone repository" again, and tried to fill the "Code subdirectory" with another value to see what happens :) Cheers, Hernán > Esteban > > >&

Re: [Pharo-users] Cloning code from GitHub using Iceberg

2017-07-24 Thread Hernán Morales Durand
Hello Jigyasa, For now I am reading the Cormas mailing-list and annotating requirements, issues, etc. Also I started to port the VW UI (the easy parts) to Pharo. I will post some questions on the mailing-list tomorrow. Thank you, Hernán 2017-07-24 13:30 GMT-03:00 Jigyasa Grover : > Hello Herná

Re: [Pharo-users] Cloning code from GitHub using Iceberg

2017-07-24 Thread Hernán Morales Durand
2017-07-24 4:29 GMT-03:00 Alistair Grant : > Hi Hernan, > > On Sun, Jul 23, 2017 at 06:22:52PM -0300, Hern??n Morales Durand wrote: >> Hi guys, >> >> I am trying to import code - in Pharo 6 - from a GitHub repository: >> https://github.com/jigyasa-grover/CORMAS-Pharo. The repository doesn't >> incl

[Pharo-users] How to export critics from Critic Browser?

2017-07-30 Thread Hernán Morales Durand
Hi, I'm using Pharo 6.1 and I want to export a report of Critics Browser results. Is there a way to save the results? It would be nice to have a CSV, to record historical analysis of my progress, then plot using Roassal, etc. Cheers, Hernán

Re: [Pharo-users] How to export critics from Critic Browser?

2017-07-31 Thread Hernán Morales Durand
he code): > https://github.com/peteruhnak/ugly-pharo-code/blob/master/qa-testing.sh > > Travis output (expand line 400): > https://travis-ci.org/peteruhnak/ugly-pharo-code#L400 > > Peter > > On Mon, Jul 31, 2017 at 01:38:31AM -0300, Hernán Morales Durand wrote: >> Hi, >>

Re: [Pharo-users] How to create a minimal image ?

2017-08-28 Thread Hernán Morales Durand
Hi Pavel, Can you show how to produce an image without the following packages? Tests Spotter Glamour/GT Metacello AST/Refactoring Cheers, Hernán 2017-08-28 8:24 GMT-03:00 Pavel Krivanek : > What do you expect from such minimal image? Because we can produce several > intermediate steps on the

Re: [Pharo-users] execute a code block at a given time in pharo ?

2017-09-14 Thread Hernán Morales Durand
http://www.smalltalkhub.com/#!/~TorstenBergmann/Scheduler Cheers, Hernán 2017-09-13 17:36 GMT-03:00 Daniel BLANC : > Hi All, > > I'm a very beginner with smalltalk. I am building a small seaside app for > controlling wifi access of my teenagers kids. In this app I need to start or > stop the wif

[Pharo-users] How to include DeployUtils in a Configuration?

2017-09-25 Thread Hernán Morales Durand
I am trying to include DeployUtils in a ConfigurationOf (Pharo 6.1) following instructions at: https://github.com/fstephany/DeployUtils If I include the dependency as suggested: spec baseline: 'DeployUtils' with: [ spec repository: 'github://fstephany/DeployUtils/repository']. then when I l

Re: [Pharo-users] How to include DeployUtils in a Configuration?

2017-09-27 Thread Hernán Morales Durand
repository: 'http://smalltalkhub.com/mc/Pharo/MetaRepoForPharo30/main/' ]. Hernán > Because if this is the case you should add this dependency. > > Stef > > > On Mon, Sep 25, 2017 at 8:19 PM, Hernán Morales Durand > wrote: >> I am trying to include DeployUt

Re: [Pharo-users] Roasssal not working on Windows with Pharo 6.1

2017-09-27 Thread Hernán Morales Durand
I couldn't reproduce any problem installing Pharo 6.1 in Windows 8.1 from command line: wget -O- get.pharo.org/61+vm | bash - And then installing Roassal from the Catalog Browser. All the examples ran wiithout problems. Cheers Hernán 2017-09-23 5:57 GMT-03:00 kmo : > Is it just me or my system

Re: [Pharo-users] How to include DeployUtils in a Configuration?

2017-09-27 Thread Hernán Morales Durand
ndency of one of your packages. > > Regards, > > Thierry > > 2017-09-25 20:19 GMT+02:00 Hernán Morales Durand : >> >> I am trying to include DeployUtils in a ConfigurationOf (Pharo 6.1) >> following instructions at: >> >> https://github.com/fstephan

Re: [Pharo-users] How to set library path for UFFI on Linux?

2017-09-29 Thread Hernán Morales Durand
Hi Dan 2017-09-23 13:24 GMT-03:00 Dan Wilczak : > It does search on LD_LIBRARY_PATH now, it just fails because it finds the > 32-bit libcairo before the 64-bit one. > > The traceback displayed inside Pharo says "Error: External module not found" > which is quite misleading. A minimal fix would be

Re: [Pharo-users] Behold Pharo: The Modern Smalltalk

2017-10-04 Thread Hernán Morales Durand
Hi Richard, I would change the link text where machine learning refers to BioSmalltalk. Actually it is more a library for Bioinformatics. Cheers, Hernán 2017-10-04 7:30 GMT-03:00 horrido : > Behold Pharo: The Modern Smalltalk >

Re: [Pharo-users] Territorial loading problems & alternative ways of loading data for making a choropleth map

2017-10-23 Thread Hernán Morales Durand
I am revieweing this right now. Lot of work in the bioinformatics department! Hernán 2017-10-23 22:59 GMT-03:00 Offray Vladimir Luna Cárdenas : > Hi, > > I would like a choropleth map of Colombian departments [1]. The first > approach would be to use Territorial, but loading it is not working o

Re: [Pharo-users] Territorial loading problems & alternative ways of loading data for making a choropleth map

2017-10-23 Thread Hernán Morales Durand
2017-10-24 0:01 GMT-03:00 Offray Vladimir Luna Cárdenas : > Hi, > > Answering myself: I was able to fix this problem by downloading the > "territorial_files" zip folder from the source repo and unzipping it to > the image folder. After that Metacello bleeding edge (not Monticello, my > mistake) ins

Re: [Pharo-users] Territorial loading problems & alternative ways of loading data for making a choropleth map

2017-10-23 Thread Hernán Morales Durand
2017-10-24 1:21 GMT-03:00 Hernán Morales Durand : > Hola Offray, > > I tried loading in Windows 8.1 and it loads fine using: > > Metacello new > smalltalkhubUser: 'hernan' project: 'Territorial'; > configuration: 'Territorial'; >

Re: [Pharo-users] Territorial loading problems & alternative ways of loading data for making a choropleth map

2017-10-24 Thread Hernán Morales Durand
cenarios! Let me know how it goes. Cheers, Hernán > Cheers, > > Offray > > > On 23/10/17 23:21, Hernán Morales Durand wrote: >> Hola Offray, >> >> I tried loading in Windows 8.1 and it loads fine using: >> >> Metacello new >> smalltalkhubUse

Re: [Pharo-users] QCMagritte on Github

2017-10-27 Thread Hernán Morales Durand
Nice to know Laurent, Could you please comment or share how to install this version uploaded to GitHub? Any way to check the installed or current QCMagritte version? Cheers, Hernán 2017-10-27 7:39 GMT-03:00 laurent laffont : > Hi, > > my team starts to use QCMagritte. For our needs we have i

Re: [Pharo-users] potentially useful diagrams

2017-10-31 Thread Hernán Morales Durand
Hi Steph, The diagram looks cool. But may I give some positive suggestions? The goal of each diagram is not clear for me, is to understand the connection of tools? or a how to configure github in Pharo? Maybe it could be added into the diagram as a Title. So, what's the purpose of the diagram/wo

Re: [Pharo-users] New Pharo Booklet

2017-10-31 Thread Hernán Morales Durand
Thank you Stef! I wrote documentation for my packages in Markdown + pandoc + LaTeX. The TeX macros contains syntax colorization for Smalltalk code which can be easily added to Pillar (I suppose) Would you consider adding the syntax coloring from the TeX macros I sent to you? I have some silly qu

Re: [Pharo-users] New Pharo Booklet

2017-11-01 Thread Hernán Morales Durand
Hi Stef, 2017-11-01 8:11 GMT-03:00 Stephane Ducasse : >> I wrote documentation for my packages in Markdown + pandoc + LaTeX. >> >> The TeX macros contains syntax colorization for Smalltalk code which >> can be easily added to Pillar (I suppose) >> Would you consider adding the syntax coloring from

Re: [Pharo-users] Territorial loading problems & alternative ways of loading data for making a choropleth map

2017-11-03 Thread Hernán Morales Durand
assal2 > title: ‘...' > initializeView: [ YourViewOrBuilder ]; > painting: [ :yourViewOrBuilder | … ] > > Doru > >> On Oct 25, 2017, at 5:57 AM, Hernán Morales Durand >> wrote: >> >

Re: [Pharo-users] Which dbf does GADM need?

2017-11-18 Thread Hernán Morales Durand
Hi Andrew, The GADM Configuration should download and uncompress the CSV database file directly. It is downloaded from the Territorial GitHub repository (https://github.com/hernanmd/Territorial/raw/master/res) and can be installed with the following script: Metacello new smalltalkhubUser: 'he

[Pharo-users] Plotting a SMark report

2017-12-04 Thread Hernán Morales Durand
Hi guys, I benchmarked five Levenshtein implementations today and just wonder is there any package or extension which takes a SMark report and plot a Roassal bar chart? This is the best I get so far: "Report for: StringExtensionsBenchmark Benchmark LevPW100kTo LevPW100kTo total: iterations=10 r

Re: [Pharo-users] Behold Pharo: The Modern Smalltalk

2017-12-07 Thread Hernán Morales Durand
To me the Hello World in Smalltalk was always just writing: 'Hello world' 2017-12-07 19:35 GMT-03:00 horrido : > Done. Class #Hello is now #Greeter in package "HelloDemo". > > I presume we're good to go, then? > > > > Offray Vladimir Luna Cárdenas-2 wrote >> May be the class name could be change

Re: [Pharo-users] HMAC-SHA512

2017-12-10 Thread Hernán Morales Durand
Hi Ben, I would use NaCl: http://cr.yp.to/highspeed/coolnacl-20120725.pdf which you can install from the Pharo Project Catalog in Pharo 6.x Cheers, Hernán 2017-12-10 6:01 GMT-03:00 Ben Coman : > Can anyone recommend libraries (native Smalltalk or via FFI) > to do generate a HMAC-SHA512 ? > >

Re: [Pharo-users] HMAC-SHA512

2017-12-11 Thread Hernán Morales Durand
2017-12-11 5:28 GMT-03:00 Ben Coman : > > > On 11 December 2017 at 13:09, Ben Coman wrote: >> >> 2017-12-10 6:01 GMT-03:00 Ben Coman : >> > Can anyone recommend libraries (native Smalltalk or via FFI) >> > to do generate a HMAC-SHA512 ? >> >>

Re: [Pharo-users] HMAC-SHA512

2017-12-11 Thread Hernán Morales Durand
2017-12-11 10:13 GMT-03:00 Hernán Morales Durand : > 2017-12-11 5:28 GMT-03:00 Ben Coman : >> >> >> On 11 December 2017 at 13:09, Ben Coman wrote: >>> >>> 2017-12-10 6:01 GMT-03:00 Ben Coman : >>> > Can anyone recommend libraries (native Small

[Pharo-users] How to select all changes in Epicea?

2017-12-18 Thread Hernán Morales Durand
Hi guys, My Pharo image crashed and I opened Epicea for the first time. I selected "Today" changes in the left pane and then after changes are displayed in the right pane, I expected a menu item, button or popup to select all code changes and then apply them. But I couldn't find the any option, e

Re: [Pharo-users] How to select all changes in Epicea?

2017-12-19 Thread Hernán Morales Durand
Hi Yann, I tried with your suggestion using ctrl+a and it selected all changes, although the selection background color is barely visible. It would be cool to have a menu item option. Thank you, Hernán 2017-12-19 7:55 GMT-03:00 Yann Lesage : > > > Le 19/12/2017 à 08:06, Hernán Moral

Re: [Pharo-users] Another post about our experience with Pharo at OSOCO

2018-01-02 Thread Hernán Morales Durand
Hi Rafael, Did you published your code generator somewhere? I would like to check since I am writing a code generator for Pharo http://www.smalltalkhub.com/#!/~hernan/CodeGenerator Cheers, Hernán 2018-01-02 8:48 GMT-03:00 Rafael Luque : > Hi all, > > We've published the second part of our experi

Re: [Pharo-users] [ANN] Bittrex API

2018-01-14 Thread Hernán Morales Durand
Hi Ben, Thank you for sharing this, looks really cool. I have some issues installing the library. In the "Clone repository" dialog I had to use https://github.com/Traadh/bittrex.git The install procedure did not downloaded the libsodium library. I had to install it from loading Nacl. Any partic

Re: [Pharo-users] [ANN] Bittrex API

2018-01-15 Thread Hernán Morales Durand
Hi Ben 2018-01-15 4:53 GMT-03:00 Ben Coman : > On 15 January 2018 at 14:19, Hernán Morales Durand > wrote: >> Hi Ben, >> >> Thank you for sharing this, looks really cool. >> > > > >> I have some issues installing the library. In the "Cl

Re: [Pharo-users] unsolicited package-cache use

2018-01-17 Thread Hernán Morales Durand
Hi Hilaire, Which Pharo version? Have you found any solution to this? In Gofer there was #disablePackageCache, in Metacello I don't know, maybe experimenting with MetacelloLoaderPolicy but there are no class comments. Cheers, Hernán 2017-12-18 17:24 GMT-03:00 Hilaire : > If understood correctly

Re: [Pharo-users] Working directory

2018-01-17 Thread Hernán Morales Durand
Hi Ben, 2017-12-16 8:01 GMT-03:00 Ben Coman : > > > On 16 December 2017 at 16:02, Stephane Ducasse > wrote: >> >> Hi ben >> >> We should think about it. Indeed. >> Now about the names. I'm wondering if they cover well enough the >> situation. >> In fact I would like to have imageDirectory (it exi

[Pharo-users] Aare questions

2018-01-21 Thread Hernán Morales Durand
Hi, I decided to give a try to Aare or Workflow in Pharo 6, following instructions in https://github.com/Netstyle/Workflow . However, the installation script raised a Warning about missing WADynamicVariable class. Should I install Seaside? I've been using a couple of bioinformatics workflows the

Re: [Pharo-users] Aare questions

2018-01-21 Thread Hernán Morales Durand
start to try to understand how to run a workflow. > Maybe someone at Netstyle has some expressions to begin with? Hernán > Stef > > > On Sun, Jan 21, 2018 at 9:02 AM, Hernán Morales Durand > wrote: >> Hi, >> >> I decided to give a try to Aare or Workflow in Phar

Re: [Pharo-users] Machine learning in Pharo?

2014-09-25 Thread Hernán Morales Durand
In BioSmalltalk you can do something like this: | cluster classifier trainedData observations| cluster := BioGroupOrganization forSimilarityOn: #value. trainedData := { 'Polaromonas naphthalenivorans CJ2' . 'Polaromonas sp. JS666' . 'Planctomyces limnophilus DSM 3776' . 'N

Re: [Pharo-users] invoking python from pharo

2014-10-03 Thread Hernán Morales Durand
I would use only the Python bridge but not the Blender features (Cube, etc). Will be the Python bridge and parser contained in its own package? I have started from MinGW and evaluated Ephestos sendMessage: 'print("hello world")'. Ephestos sendMessage: 'x = 3'. Ephestos getValue: 'x'. $ python py

Re: [Pharo-users] Trouble opening large files

2014-10-14 Thread Hernán Morales Durand
2014-10-13 21:27 GMT-03:00 Evan Donahue : > Hello, I've run into some odd behavior and wanted to check whether I might > be missing something: > > I have downloaded a copy of the english wikipedia as an xml file and am > hoping to (sax) parse it. However, I can't even seem to get pharo to > recogn

Re: [Pharo-users] Trouble opening large files

2014-10-14 Thread Hernán Morales Durand
tries aren't > important so much as the raw quantity of words. A simple stream through a > file on disk is all I need. > > Thanks, > Evan > > On Wed, Oct 15, 2014 at 12:49 AM, Hernán Morales Durand < > hernan.mora...@gmail.com> wrote: > >> >> >> 2014-1

Re: [Pharo-users] Pharo Consultants Page Updated

2014-11-20 Thread Hernán Morales Durand
Thank you. Hernán 2014-11-20 5:55 GMT-03:00 Sven Van Caekenberghe : > Hi, > > The Pharo Consultants page has been updated, it now contains 17 entries. > > http://consultants.pharo.org > > Sven > >

Re: [Pharo-users] Maps from Wikipedia loaded on Roassal's RTMetricMap

2014-11-20 Thread Hernán Morales Durand
2014-11-18 10:30 GMT-03:00 Offray Vladimir Luna Cárdenas : > Hi, > > This Thursday and Saturday we will have a small workshop on data > storytelling and I would like to present Pharo/Roassal to the people there > as a tool for creating and sharing visualizations. > > My idea is to use Playgrounds

Re: [Pharo-users] Maps from Wikipedia loaded on Roassal's RTMetricMap

2014-11-21 Thread Hernán Morales Durand
I'm missing? > > Thanks for your help. Hopefully, tomorrow we can show maps for new > territories in Roassal. > > Cheers, > > Offray > > El 21/11/14 a las #4, Hernán Morales Durand escribió: > >> >> >> 2014-11-18 10:30 GMT-03:00 Offray Vladimir L

[Pharo-users] HelpSystem / HelpBrowser features

2014-12-03 Thread Hernán Morales Durand
Hi all, I am currently using the HelpSystem to provide help for my application. I think the PluggableTextMorph used in the HelpBrowser (currently) does not support attaching screenshots or videos. I haven't see how to include a table neither. Does anyone has experimented in such direction? Any re

Re: [Pharo-users] Working with zipped files

2014-12-09 Thread Hernán Morales Durand
| zipArchive fileRef | zipArchive := ZipArchive new. fileRef := 'myFile.zip' asFileReference. [ zipArchive readFrom: fileRef fullName; extractAllTo: FileSystem workingDirectory ] ensure: [ zipArchive close ]. 2014-12-09 15:03 GMT-03:00 Markus Fritsche : > On 2014-12-09 18:19, Юрий Мироненко w

Re: [Pharo-users] New Pharo user, some questions

2014-12-10 Thread Hernán Morales Durand
2014-12-10 17:26 GMT-03:00 dboeren : > \u009e \u00e9

Re: [Pharo-users] New Pharo user, some questions

2014-12-11 Thread Hernán Morales Durand
2014-12-10 17:26 GMT-03:00 dboeren : > \u009e You have a typo there. It should be \u00e9 #copyReplaceAll:with: is working without problems. Cheers, Hernán 2014-12-11 10:45 GMT-03:00 David Boeren : > I could, but if I do it before parsing, I only have to do the string > replacement in one

Re: [Pharo-users] [ANN] RProjectConnector V1.0

2014-12-16 Thread Hernán Morales Durand
Vincent, First of all, thank you for publishing such useful package. This is a very valuable contribution and I would be glad to contribute to the RProjectConnector project. There is one thing which bothers me: Having to manually copy the R library files (.dll or .so) is time-consuming and prevents

Re: [Pharo-users] [ANN] RProjectConnector V1.0

2014-12-17 Thread Hernán Morales Durand
Hi Vincent, 2014-12-17 6:02 GMT-03:00 Blondeau Vincent : > > Hernan, > > > > I agree that it is a problem. > > > > To detect the R installation path is complicated. > Yes, I am currently working in a NBWin32Registry so we can do: (NBWin32Registry hKeyLocalMachine at: 'Software\R-core\R') values

Re: [Pharo-users] [ANN] RProjectConnector V1.0

2014-12-19 Thread Hernán Morales Durand
2014-12-19 7:52 GMT-03:00 Blondeau Vincent : > > > > > *De :* Pharo-users [mailto:pharo-users-boun...@lists.pharo.org] *De la > part de* Hernán Morales Durand > *Envoyé :* jeudi 18 décembre 2014 05:31 > *À :* Any question about pharo is welcome > *Obje

Re: [Pharo-users] [ANN] FTP and WebDAV Plugins for Pharo's FileSystem

2014-12-21 Thread Hernán Morales Durand
This is really good work. Thank you for sharing, Hernán 2014-12-21 19:12 GMT-03:00 Udo Schneider : > All, > > I just finished FTP and WebDAV plugins for Pharo's FileSystem. This means > you can now access remote FTP and WebDAV loactions with the exact same > FileSystem API you are using to acce

Re: [Pharo-users] pharo at google code-in

2014-12-25 Thread Hernán Morales Durand
Hi Martin, 2014-12-25 9:09 GMT-03:00 Martin Bähr : > Excerpts from stepharo's message of 2014-12-25 11:56:29 +0100: > > > a desktop application that can search a given collection of text and > browse the > > > search results. > Do you have a prototype screenshot for the UI? A mockup? It could be

Re: [Pharo-users] Useful tools?

2015-01-12 Thread Hernán Morales Durand
Hi Laura, 2015-01-13 0:58 GMT-03:00 Laura Risani : > Hi all, > > What are some tools / plug-ins/ projects / packages / frameworks > you find very useful or you use very frequently for development? > (please for each name it and state it's purpose) > Well, it depends really what's your domain. Mi

[Pharo-users] Nautilus plugin with new menu entries

2015-01-17 Thread Hernán Morales Durand
Hi, If you are using Pharo 3 you may install a Nautilus plugin I did which implements the following menu item features: - Jump to the superclass of the currently selected class. - Explore all the instances of the currently selected class. - Send #release and #initialize to the currently selected c

Re: [Pharo-users] Nautilus plugin with new menu entries

2015-01-18 Thread Hernán Morales Durand
pharo : > Hi hernan > > did you see that I cleaned, fixed and documented the plugins in Pharo 40? > > Sef > > Le 18/1/15 06:32, Hernán Morales Durand a écrit : > >> Hi, >> If you are using Pharo 3 you may install a Nautilus plugin I did which >> implements th

Re: [Pharo-users] Nautilus plugin with new menu entries

2015-01-18 Thread Hernán Morales Durand
Attached a screenshot with menu changes. If anyone has an idea to implement I could give a try. Cheers, Hernán 2015-01-18 14:51 GMT-03:00 Hernán Morales Durand : > Hi Stef, > > The plugin can work in Pharo 4 with a minimal modification (one line of > code). Please feel free to in

Re: [Pharo-users] Manners on the list?

2015-01-18 Thread Hernán Morales Durand
Alex, we exchanged some e-mails last week, I claim is human based on e-mail contents. Cheers, Hernán 2015-01-18 21:18 GMT-03:00 Alexandre Bergel : > Guys… > I am convinced that Laura is not a real person, but simply a bot. > > Laura, prove me I am wrong, how much is 2 + 3 ? > > Alexandre > > > >

Re: [Pharo-users] Manners on the list?

2015-01-19 Thread Hernán Morales Durand
rry, I could not resist … ) > > On Jan 19, 2015, at 05:49, Hernán Morales Durand > wrote: > > Alex, we exchanged some e-mails last week, I claim is human based on > e-mail contents. > Cheers, > > Hernán > > 2015-01-18 21:18 GMT-03:00 Alexandre Bergel : > >

[Pharo-users] Hubcap questions

2015-01-19 Thread Hernán Morales Durand
Hi all, My goal is to search the contents of the Description form field in SmalltalkHub. I don't know if matches the design and idea of Hubcap (really nice package BTW). I wonder if anyone (Torsten?) tried to download all package metadata first and perform off-line search? Someone posted time ag

Re: [Pharo-users] Hubcap questions

2015-01-19 Thread Hernán Morales Durand
2015-01-19 15:07 GMT-03:00 Stephan Eggermont : > Hernán wrote: > >My goal is to search the contents of the Description form field in > SmalltalkHub. > >I don't know if matches the design and idea of Hubcap (really nice > package BTW). > >I wonder if anyone (Torsten?) tried to download all package

Re: [Pharo-users] Mea Culpa

2015-01-21 Thread Hernán Morales Durand
Hello Richard, 2015-01-21 17:12 GMT-03:00 horrido : > Okay, so far, I've made two mistakes. First was my lack of sensitivity to > cultural differences around the world. Now that I know better, I shall do > better. You better take a lot of care writing about politics, sports, or whatever that co

[Pharo-users] Conditional CSV parsing

2015-01-23 Thread Hernán Morales Durand
I used to use a CSV parser from Squeak where I could attach conditional iterations: csvParser rowsSkipFirst: 2 do: [: row | " some action ignoring first 2 fields on each row " ]. csvParser rowsSkipLast: 2 do: [: row | " some action ignoring last 2 fields on each row " ]. csvParser rowsWhere: [ " a

Re: [Pharo-users] Conditional CSV parsing

2015-01-23 Thread Hernán Morales Durand
Hi Sven, 2015-01-23 16:06 GMT-03:00 Sven Van Caekenberghe : > Hi Hernán, > > > On 23 Jan 2015, at 19:50, Hernán Morales Durand < > hernan.mora...@gmail.com> wrote: > > > > I used to use a CSV parser from Squeak where I could attach conditional > iterations: &

Re: [Pharo-users] UI framework&design options

2015-01-25 Thread Hernán Morales Durand
Hi Sebastian, 2015-01-25 14:52 GMT-03:00 Sebastian Heidbrink : > Okay, I am new to the UI implementations and options in the Pharo > world and I am really confused. > > So, am I right to say. > - Polymorph is no more really the way to go? > Polymorph is a very low-level UI "framework". I wo

Re: [Pharo-users] Conditional CSV parsing

2015-01-25 Thread Hernán Morales Durand
2015-01-23 18:00 GMT-03:00 Sven Van Caekenberghe : > > > On 23 Jan 2015, at 20:53, Hernán Morales Durand < > hernan.mora...@gmail.com> wrote: > > > > Hi Sven, > > > > 2015-01-23 16:06 GMT-03:00 Sven Van Caekenberghe : > > Hi Hernán, > >

Re: [Pharo-users] Conditional CSV parsing

2015-01-25 Thread Hernán Morales Durand
It is possible :) I work with DNA sequences, there could be millions of common SNPs in a genome. Cheers, Hernán 2015-01-26 3:33 GMT-03:00 Sven Van Caekenberghe : > > > On 26 Jan 2015, at 06:32, Hernán Morales Durand < > hernan.mora...@gmail.com> wrote: > > > > &

[Pharo-users] Rule engine

2015-01-26 Thread Hernán Morales Durand
Hello, If anyone is working in a rule engine we could merge efforts because I have implemented one (or something like that) for a project. Cheers, Hernán

Re: [Pharo-users] Rule engine

2015-01-26 Thread Hernán Morales Durand
Cool! I have sent an e-mail with project details. Cheers, Hernán 2015-01-26 8:34 GMT-03:00 Udo Schneider : > Hi Hernán, > > > On 26/01/15 09:50, Hernán Morales Durand wrote: > >> If anyone is working in a rule engine we could merge efforts because I >> have impleme

Re: [Pharo-users] NumericalMethods and SciSmalltalk

2015-01-26 Thread Hernán Morales Durand
2015-01-26 18:22 GMT-03:00 Ignacio Sniechowski <0800na...@gmail.com>: > That was my question. If in Pharo 4 the NumericalMethods package will be > deprecated and instead SciSmalltalk will be de defacto package for stats. > NumericalMethods should be kept separated from SciSmalltalk so we are free

Re: [Pharo-users] New book for Pharo :)

2015-01-28 Thread Hernán Morales Durand
2015-01-28 14:21 GMT-03:00 stepharo : > Didier Besset offered his great book "Object-Oriented Implementation of > Numerical Methods > An Introduction with Smalltalk and Java" to the community. > > We would like to thank Didier Besset for his great book and for his gift > of the source and implemen

Re: [Pharo-users] PostGIS in Pharo

2015-01-28 Thread Hernán Morales Durand
Can you comment what are you trying to do? Hernán 2015-01-28 13:10 GMT-03:00 Esteban A. Maringolo : > Is there anybody using PostGIS in Pharo? > > Regards! > > Esteban A. Maringolo >

Re: [Pharo-users] New book for Pharo :)

2015-01-28 Thread Hernán Morales Durand
I see and appreciate your effort really, but there is no reason to hide NumericalMethods from the book announcement. I am trying to avoid what the Python community did with NumPy and SciPy which is a mess. Hernán 2015-01-28 16:16 GMT-03:00 stepharo : > Hernan > > This is 8 months that I push d

Re: [Pharo-users] PostGIS in Pharo

2015-01-28 Thread Hernán Morales Durand
2015-01-28 16:18 GMT-03:00 Esteban A. Maringolo : > Sure, > > I'll collect georeferenced data in a mobile app, which I'll later have to > group each one according to whether they fall inside a certain polygon > (geopolitcal boundaries, like city, district, province, etc.). > I could also geocode t

Re: [Pharo-users] New book for Pharo :)

2015-01-28 Thread Hernán Morales Durand
2015-01-28 17:14 GMT-03:00 stepharo : > > I see and appreciate your effort really, but there is no reason to hide > NumericalMethods from the book announcement. > > I do not know NumericalMethods. I vaguely recall that you were no happy > that serge wants to change the code > because it would no

Re: [Pharo-users] New book for Pharo :)

2015-01-28 Thread Hernán Morales Durand
Hi Werner 2015-01-28 21:11 GMT-03:00 Werner Kassens : > Hi Hernán, > > >We have to get better at communication. It doesn't work if all of us fork > libraries. > > i guess i disagree, the occasional fork can be freshening. > > >But I don't want to be forced to load the whole SciSmalltalk to use 3

Re: [Pharo-users] New book for Pharo :)

2015-01-28 Thread Hernán Morales Durand
2015-01-28 18:51 GMT-03:00 kilon alios : > No idea what the problem really is, and what is that "mess" that concerns > Numpy/SciPy > This is an example of how wasted they are: http://stackoverflow.com/questions/6200910/relationship-between-scipy-and-numpy Cheers, Hernán

Re: [Pharo-users] New book for Pharo :)

2015-01-28 Thread Hernán Morales Durand
We could probably start with RBClassRegexRefactoring new renameClasses; replace: '^Dhb(.*)$' with: 'NM$1' ignoreCase: false; execute. or whatever prefix you prefer :) I wrote some DHB extensions for easier building of matrices, if anyone give me access to the SciSmalltalk repository I coul

Re: [Pharo-users] Rule engine

2015-01-31 Thread Hernán Morales Durand
Thank you for the links. Hernán 2015-01-31 17:27 GMT-03:00 stepharo : > > I would be curious to hear more about the various projects mentioned in >> this >> thread. >> > SOUL was a prolog with an extra term that unified method AST. > Check Roel Wuyts, Andy Kellens, Johan Brichau > At the V

Re: [Pharo-users] How to send messages to an object.

2015-02-07 Thread Hernán Morales Durand
2015-02-07 17:46 GMT-03:00 nacho <0800na...@gmail.com>: > Hi, > Suppose I do: > Morph new openInWorld > > and then: > EllipseMorph new openInWorld > > without referencing them to a variable. > How do I access those objects? > Morph new openInWorld inspect. Morph new openInWorld explore. or Morp

Re: [Pharo-users] How to send messages to an object.

2015-02-07 Thread Hernán Morales Durand
2015-02-07 19:28 GMT-03:00 nacho <0800na...@gmail.com>: > @Hernan > Sending a message to an object using the inspector allows me to do: > self addMoprh: EllipseMorph new. > > But what I want is to add a morph to another morph that is already > instantiated. > Use the halos. In Windows is Alt+Shif

Re: [Pharo-users] How to send messages to an object.

2015-02-07 Thread Hernán Morales Durand
I see! something like? self addMorphCentered: (EllipseMorph allInstances detect: [ : i | i name = 'an EllipseMorph(485752832)' ]) 2015-02-07 19:39 GMT-03:00 Sean P. DeNigris : > hernanmd wrote > > Use the halos... select the Menu halo (red) -> debug... -> explore morph > > Yes, you can bring up

Re: [Pharo-users] Git (gitfiletree) on Pharo vs Windows

2015-02-22 Thread Hernán Morales Durand
2015-02-22 7:04 GMT-03:00 Thierry Goubier : > Le 22/02/2015 10:26, Jan B. a écrit : > >> Hi >> >> It seems like we got a step further, now this happens when I add >> gitfiletree >> repository: https://monosnap.com/image/21Li7R29QUVJh6AVDQvzENiCEpcBeF.png >> > > Ok. So it seems to be running the co

Re: [Pharo-users] Git (gitfiletree) on Pharo vs Windows

2015-02-22 Thread Hernán Morales Durand
:00 Thierry Goubier : > Hi Hernan, > > thanks, but ProcessWrapper isn't available on Pharo 3 nor Pharo 4. Could > you tell which configuration or metacello script we need to load it? > > Thierry > > Le 22/02/2015 17:52, Hernán Morales Durand a écrit

[Pharo-users] Fwd: [ANN] PhyloclassTalk video presentations

2015-02-23 Thread Hernán Morales Durand
Hello, Here I have new videos to show some of the features of PhyloclassTalk, developed in Pharo 3.0. PhyloclassTalk is a phylogenetics analysis platform which includes several modules to perform different workflows related with bioinformatics analysis. Video 1: GenBank Browser & PhyloclassTalk

[Pharo-users] [ANN] GADM: Access to Global Administrative Areas in Pharo

2015-02-24 Thread Hernán Morales Durand
I am pleased to announce the release of the GADM package for Pharo Smalltalk. GADM is a high-resolution spatial database of the location of the world's administrative areas for use in Geographical Information Systems (GIS) and similar software. The following post contains details about the release

Re: [Pharo-users] [ANN] GADM: Access to Global Administrative Areas in Pharo

2015-02-24 Thread Hernán Morales Durand
I forgot to paste the link. http://80738163270632.blogspot.com.ar/2015/02/gadm-access-to-global-administrative.html Hernán 2015-02-25 0:04 GMT-03:00 Hernán Morales Durand : > I am pleased to announce the release of the GADM package for Pharo > Smalltalk. GADM is a high-resolution s

[Pharo-users] [ANN] StNER: Interface to Stanford Named Entity Recognizer

2015-02-25 Thread Hernán Morales Durand
Hello, I am announcing the release of StNER. StNER provides a Pharo Smalltalk interface to the Stanford Named Entity Recognizer (NER). ( http://nlp.stanford.edu/software/CRF-NER.shtml) Installation and usage details are described in the following post: http://80738163270632.blogspot.com.ar/2015/

Re: [Pharo-users] [clubSmalltalk] Re: [ANN] StNER: Interface to Stanford Named Entity Recognizer

2015-02-25 Thread Hernán Morales Durand
r case study. > > Cheers, > Alexandre > > > > On Feb 25, 2015, at 6:48 PM, Hernán Morales Durand < > hernan.mora...@gmail.com> wrote: > > > > Hello, > > > > I am announcing the release of StNER. StNER provides a Pharo Smalltalk > interface to th

Re: [Pharo-users] Git (gitfiletree) on Pharo vs Windows

2015-02-26 Thread Hernán Morales Durand
; it took me a while to get OSProcess use right, and I'm not sure I > can reuse the same patterns with ProcessWrapper, such as the behavior on > error. > > Thanks, > > Thierry > > Le 22/02/2015 21:47, Hernán Morales Durand a écrit : > >> Thierry, >> >&

Re: [Pharo-users] Git (gitfiletree) on Pharo vs Windows

2015-02-27 Thread Hernán Morales Durand
; > Gofer new > url: 'https://smalltalkhub.com/mc/Pharo/MetaRepoForPharo30/main' > ; > configurationOf: 'ProcessWrapper'; > loadStable > > Thierry > > Le 27/02/2015 02:58, Hernán Morales Durand a écrit : > >

  1   2   3   4   5   >