Re: [Pharo-users] SpecColumnLayout not behaving as expected

2017-10-18 Thread Steven R. Baker
listView. > > why do you think that adding items to a column would create columns? > In Spec, one add:s rows to column, and columns to row. > > If people are going to get regularly stack on this, we can certainly > change it. > > Peter > > > On Tue, O

Re: [Pharo-users] SpecColumnLayout not behaving as expected

2017-10-17 Thread Steven R. Baker
of the column. > > So what you are actually doing is you create a Column > (SpecColumnLayout), inside which you create another column > (newColumn), and to that column you add two rows (add:, add:). > > On Tue, Oct 17, 2017 at 4:32 PM, Steven R. Baker > mailto:ste...@stevenrbake

[Pharo-users] SpecColumnLayout not behaving as expected

2017-10-17 Thread Steven R. Baker
Heya folks, I'm sure I'm doing something wrong, I just don't know what it is. I have the following: defaultSpec     ^ SpecColumnLayout composed         newColumn: [ :col |             col                 add: #sideBar;                 add: #listView ];         yourself In the resulting window,

[Pharo-users] Can't find Cairo

2017-10-08 Thread Steven R. Baker
Heya, I need some help telling Pharo where to find things. I've installed Bloc into my image, and it can't find cairo. Cairo is installed, but as far as I can tell Bloc is not looking for it in /usr/lib/x86_64-linux-gnu/ which is where it can be found. I don't care to go making symlinks around my

[Pharo-users] FocusFrog

2017-10-07 Thread Steven R. Baker
Hey all! Thanks for the help on all of my little issues. I've been plugging away at FocusFrog, my application for Getting Things Done.  I have pushed the current code (mostly UI stuff in there just now) to GitLab: https://gitlab.com/srbaker/FocusFrog I am not sure how to manage projects, or even

Re: [Pharo-users] FileReference#entries caching?

2017-10-07 Thread Steven R. Baker
On 07/10/17 14:22, Peter Uhnák wrote: > On Sat, Oct 7, 2017 at 1:02 PM, Steven R. Baker > mailto:ste...@stevenrbaker.com>> wrote: > > Is it cached or something? How do I guarantee that I'm *definitely* > getting the current state of the directory on disk?

[Pharo-users] FileReference#entries caching?

2017-10-07 Thread Steven R. Baker
Heya folks, I'm loading some PNG icons from disk, and I'm noticing some weirdness with FileReference#entries. When I inspect: '/home/srbaker/Projects/FocusFrog/icons' asFileReference entries it gives me an Array of size one, containing the refernce to the only file there. Then I delete the file,

[Pharo-users] SVG Icons

2017-10-05 Thread Steven R. Baker
Heya folks! I need to load SVG images (for icons) in my application. I've searched my 6.1 image for SVG, but haven't found anything. Is there a library for loading SVGs? I'd really like to get them directly into instances of Form if possible, but I'm flexible. :) Thanks! -Steven

Re: [Pharo-users] Pharo Launcher Source

2017-10-03 Thread Steven R. Baker
On 03/10/17 21:51, Sven Van Caekenberghe wrote: > >> On 3 Oct 2017, at 21:30, Steven R. Baker wrote: >> >> Heya, >> >> I'm trying to build a Pharo Launcher of my own, but I can't find the >> code. This says it's on SmalltalkHub: >> h

[Pharo-users] Pharo Launcher Source

2017-10-03 Thread Steven R. Baker
Heya, I'm trying to build a Pharo Launcher of my own, but I can't find the code. This says it's on SmalltalkHub: https://github.com/pharo-project/pharo-launcher, but the link doesn't show anything. I tried looking on CI for the build script, but I can't find the build script, just build results.

Re: [Pharo-users] Organisation and workflows

2017-10-02 Thread Steven R. Baker
e not yet there. >> >> Stef >> >> On Sun, Oct 1, 2017 at 9:03 PM, Steven R. Baker >> wrote: >>> Heya folks, >>> >>> [Please jump on any of my statements that sound crazy: use of Spec, >>> other assumptions, etc.] >>> &g

[Pharo-users] Organisation and workflows

2017-10-01 Thread Steven R. Baker
Heya folks, [Please jump on any of my statements that sound crazy: use of Spec, other assumptions, etc.] I'm starting an application in Pharo, using Spec. Basically, a GTD application in the spirit of nirvanahq, omnifocus, things, nozbe. The code is working just fine, but I'm left with a lot of q

Re: [Pharo-users] HiDPI

2017-05-16 Thread Steven R. Baker
it looks funny compare to their other tools. > > Of course, its open source, and we can all chip in - unfortunately this one > seems like it needs quite specialised knowledge - but I think the desire is > there. > > Tim > >> On 15 May 2017, at 17:52, Steven R. Baker

[Pharo-users] HiDPI

2017-05-15 Thread Steven R. Baker
Heya folks, I have a laptop with a 3K screen. Is it possible to tell Pharo to render everything at a double resolution or something? I feel like this ought to have been a solved problem already, sorry if it's really obvious and I just haven't found it. I use Debian if that matters; I suspect this

Re: [Pharo-users] Smalltalkers will, eventually, win. So says this old C++ programmer.

2017-05-09 Thread Steven R. Baker
> I think he forgets to mention Haskell, which is probably the reason > behind the shift of Swift towards optional values (Option type in > Scala, Maybe type in Haskell). You can't talk about modern type system > without talking about Haskell, Monads and Algebraic Data Types (Maybe > is a monad). >