[Pharo-users] SNMP and Pharo

2014-03-02 Thread p...@highoctane.be
Is there any package to read SNMP stuff from Pharo?

TIA
Phil


[Pharo-users] Fwd: SNMP and Pharo

2014-03-02 Thread Pharo4Stef


Begin forwarded message:

> From: Stéphane Ducasse 
> Subject: Re: [Pharo-users] SNMP and Pharo
> Date: 2 Mar 2014 13:27:00 GMT+1
> To: Any question about pharo is welcome 
> 
> http://forum.world.st/squeak-dev-SNMP-in-smalltalk-td78845.html
> 
> Stef
> 
>> Is there any package to read SNMP stuff from Pharo?
>> 
>> TIA
>> Phil
>> 
> 



Re: [Pharo-users] SNMP and Pharo

2014-03-02 Thread Pharo4Stef
http://www.esug.org/data/ReportsFromNiallRoss/NiallRossESUG2012Report.pdf

ask norbert :)


On 02 Mar 2014, at 13:21, p...@highoctane.be wrote:

> Is there any package to read SNMP stuff from Pharo?
> 
> TIA
> Phil
> 



Re: [Pharo-users] Spec question

2014-03-02 Thread Benjamin
On 01 Mar 2014, at 06:18, Hernán Morales Durand  
wrote:

> Did you have progress with that ListView in Spec? 
> Anything to check in the repo?


You can experiment a bit based on this script[1] using the latest Spec code.

Ben

[1] https://gist.github.com/BenjaminVanRyseghem/9306328

Re: [Pharo-users] Question on FUEL & Simple Persistence

2014-03-02 Thread Robert Shiplett
thanks for this post, Torsten !  it's a keeper , as the fishermen say in
Minnesota :-)

it gets a least 3 gmail tag-labels and into gmail Pharo/tips folder now ...
and a few tags as a copy-paste-a-note in CintaNotes until there is a Pharo
GTD+tagged-annotations app to import from CintaNotes, OneNote, RedNotebook,
CherryNotes, KeepNote, Penzu, ListIt  ... ;-)


On 1 March 2014 13:12, Torsten Bergmann  wrote:

> >When I try to install FUEL in a fresh Pharo 3.0 (latest) image, I get the
> >following warning:
>
> Fuel is already in the standard image, no need to load it.
>
>
> >Now going to Simple Persistence, reading through the comments it seems
> that
> >depends on FUEL, isn't it?
> >Are there any tutorial or example using SP?
>
> Google for it. I would recommend:
>
>
> http://www.pharocasts.com/2010/04/sandstonedb-simple-activerecord-style.html
>
> Just open the config browser in a fresh Pharo 3.0, click on "Tools" ->
> "Configuration Browser"
> and load SimplePersistence.
>
> Then implement a subclass of SpFileDatabase for your custom simple
> persistence
> as in the tutorials.
>
> Bye
> T.
>
>


Re: [Pharo-users] Spec question

2014-03-02 Thread Hernán Morales Durand
Thanks Benjamin, I will try to build something and let you know.
Cheers,

Hernán


2014-03-02 10:11 GMT-03:00 Benjamin :

> On 01 Mar 2014, at 06:18, Hernán Morales Durand 
> wrote:
>
> Did you have progress with that ListView in Spec?
> Anything to check in the repo?
>
>
> You can experiment a bit based on this script[1] using the latest Spec
> code.
>
> Ben
>
> [1] https://gist.github.com/BenjaminVanRyseghem/9306328
>


[Pharo-users] [ANN] DBPedia: Query Wikipedia from Pharo

2014-03-02 Thread Hernán Morales Durand
I have uploaded a new configuration so you can query the english Wikipedia
dataset from Pharo 3 using SPARQL. Some examples follow:

1) Retrieve in JSON movies from the beautiful Julianne Moore:

| jsonResults |
jsonResults := DBPediaSearch new
setJsonFormat;
timeout: 5000;
query: 'SELECT DISTINCT ?filmName WHERE {
  ?film foaf:name ?filmName .
  ?film dbpedia-owl:starring ?actress .
  ?actress foaf:name ?name.
  FILTER(contains(?name, "Julianne"))
  FILTER(contains(?name, "Moore"))
}';
execute

To actually get only the titles using NeoJSON:

NeoJSONReader fromString: jsonResults) at: #results) at: #bindings)
collect: [ : entry | entry at: #filmName ]) collect: [ : movie | movie
at: #value ]


2) Retrieve in XML which genre plays those crazy Dream Theater guys  :

DBPediaSearch new
setXmlFormat;
setDebugOn;
timeout: 5000;
query: 'SELECT DISTINCT ?genreLabel
WHERE {
?resource dbpprop:genre ?genre.
?resource rdfs:label "Dream Theater"@en.
?genre rdfs:label ?genreLabel
FILTER (lang(?genreLabel)="en")
}
 LIMIT 100';
execute

More examples are available in DBPediaSearch class side. You can install it
from the Configuration Browser.
 If you want to contribute, just ask me and you will be added as
contributor.
Best regards,

Hernán


Re: [Pharo-users] Is it working yet?

2014-03-02 Thread Garth Holland
1) I'm a Widows user and there is no keyboard mapping for switching the alt
to control keys

So? Alt on Windows replaces Cmd on OSX for Doits, Printits etc. Ctrl-X,V,C
on Win matches Cmd-X,V,C on OSX.

Control x,c,v,f,s all work as expected. For consistency, I would like
control p to print, control i to inspect, control e to explore, and control
d to doit.

2) I tried the debugger and the "Add breakpoint" menu command appears to
corrupt the stepping into behavior.

Adding self halt works nicer as the add/remove breakpoint basically does
that behind the scenes. 

Using the "Add breakpoint" menu item feels more lightweight and does not
affect the version history.



--
View this message in context: 
http://forum.world.st/Spec-website-nice-tp4746941p4747386.html
Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.



[Pharo-users] OS question

2014-03-02 Thread Friedrich Dominicus
I'm just wondering who is using Pharo on some BSD (Free/Open/386)

Regards
Friedrich