Re: [Pharo-users] TWM keybindings

2014-05-23 Thread p...@highoctane.be
Same in Linux. I'd like to have these keybindings working too! Keybindings guru wanted! Phil On Fri, May 23, 2014 at 7:03 AM, Matthew Chadwick p...@celeriac.net wrote: hi, I installed version 3.0.1 of TWM for Pharo3, but the keybindings don't work in OSX - any idea what I need to do to make

Re: [Pharo-users] 3D with Pharo and OpenGL ?

2014-05-23 Thread Jean Baptiste Arnaud
There are also some basic examples in: http://smalltalkhub.com/#!/~PharoExtras/NBOpenGL NBOpenGL-Extra On 22 May 2014, at 18:10, kilon alios kilon.al...@gmail.com wrote: you can find plenty of code in Roassal3d that I think uses the NBOpenGL library here

Re: [Pharo-users] 3D with Pharo and OpenGL ?

2014-05-23 Thread Jean Baptiste Arnaud
there are also my crappy tools that I develop to understand the wavefront format: http://smalltalkhub.com/#!/~jeanbaptistearnaud/ObjModel/source It is able to load .obj file generated from blender and integrate some material. It is really raw but it is with this tool that I import the Xwing

Re: [Pharo-users] deep into pharo(esug 2013) translate to korean draft version.

2014-05-23 Thread Damien Cassou
On Fri, May 23, 2014 at 7:09 AM, peter yoo onionmi...@gmail.com wrote: http://ta.onionmixer.net/wordpress/?attachment_id=265 do you want me to reference this url on the http://deepintopharo.com/ website now? -- Damien Cassou http://damiencassou.seasidehosting.st Success is the ability to go

Re: [Pharo-users] 3D with Pharo and OpenGL ?

2014-05-23 Thread stepharo
Welcome Judith Do not hesitate to ask more questions. I may visit brest 1-5 to June. Guys we should really help judith because like that her boss can show how Pharo is cool to his own boss :) Judith you should look for a previous email of ronie (check the mailing-list archive)? I cannot

Re: [Pharo-users] Versionner: Specifying un-configured packages as dependencies

2014-05-23 Thread stepharo
+ 100 The reason is that any package* should be self described. Your configuration describes your project. If you use another piece of software, it should also be self-described. Let's take the following example: * for now, it's easy for you to add a direct dependency to Roassal2Spec,

[Pharo-users] [ANN] Pharo VM packaging for Ubuntu

2014-05-23 Thread Damien Cassou
Hi, I'm happy to announce a brand new packaging of the Pharo VM. The packaging works with all officially supported Ubuntu releases, both 32 and 64bits (see this list of Ubuntu support dates: http://en.wikipedia.org/wiki/Ubuntu_%28operating_system%29#Releases). I pushed these new packages to a

Re: [Pharo-users] deep into pharo(esug 2013) translate to korean draft version.

2014-05-23 Thread peter yoo
hm really? can then i want. but really ok?

Re: [Pharo-users] [ANN] Pharo VM packaging for Ubuntu

2014-05-23 Thread Ben Coman
Damien Cassou wrote: Hi, I'm happy to announce a brand new packaging of the Pharo VM. The packaging works with all officially supported Ubuntu releases, both 32 and 64bits (see this list of Ubuntu support dates: http://en.wikipedia.org/wiki/Ubuntu_%28operating_system%29#Releases). I pushed

[Pharo-users] storeOn:/readFrom: symmetrical?

2014-05-23 Thread Rick Kitts
Hi. A basic question I hope someone can answer. This works: — cut here --- | stream aInt | stream := (String new:20) writeStream. aInt := 23. (aInt storeOn:stream) = (aInt class readFrom:(stream contents)) — cut here --- This doesn’t (generates an error): — cut here --- | stream aTime |

Re: [Pharo-users] Downloading tweets

2014-05-23 Thread stepharo
Hello Arturo nice to see you more and more on this list :). Where is the code? So that we can advertize it Stef On 23/5/14 03:39, Arturo Zambrano wrote: Hi All, you can now download some code for downloading tweets using REST and Streaming Twitter APIs. It is far from complete but do the

Re: [Pharo-users] Downloading tweets

2014-05-23 Thread Arturo Zambrano
Hi Steph, it is in pdf.. that's why we need more practical documentation ;-) Gofer new url: 'http://smalltalkhub.com/mc/arturozambrano/TwitterRoassalPlayGround/main'; package: 'Twitter­Connection'; load. there are other packages but they are other parts of our twitter thing, I think they are

Re: [Pharo-users] deep into pharo(esug 2013) translate to korean draft version.

2014-05-23 Thread stepharo
Thanks a lot for your effort and time!! Stef On 23/5/14 07:09, peter yoo wrote: Deep into Pharo make use xetex. im dont have latex file. make from my templete. need more touch. but can use. thank you for all authur~ look here please.

Re: [Pharo-users] Initializing a class with a Dictionary

2014-05-23 Thread stepharo
Hi sergio what do you want to do? Object subclass: #MyClass instanceVarNames: 'dict' MyClassinitialize [ super initialize. dict := Dictionary new. ] MyClassatKey: aKey put: aVal [ dict at: aKey put: aVal ] MyClassatKey: aKey [ ^ dict at: aKey ]