Search found 13 matches

by cloutiy
Mon Aug 01, 2016 2:17 pm
Forum: Teaching and Learning Programming with the Ecere SDK
Topic: Lexing and Parsing
Replies: 2
Views: 53804

Re: Lexing and Parsing

Jerome, thanks for sharing your experience and some advice. There was one project which I had done in Perl: https://github.com/cloutiy/tml It's a typesetting language which generates GROFF code. Meant to make groff a little easier to work with for non-technicical people. It was kind of a hack and I ...
by cloutiy
Fri Jul 29, 2016 4:50 pm
Forum: Teaching and Learning Programming with the Ecere SDK
Topic: Lexing and Parsing
Replies: 2
Views: 53804

Lexing and Parsing

Hello, I would like to know of your experience lexing and parsing using eC: What kind of project have you used lexing/parsing for (creating your own language? Creating a DSL? A markup? -What is your favorite resource on the topic? -What is your preferred method of doing it? -Are there features (or l...
by cloutiy
Sun Jul 24, 2016 5:29 pm
Forum: eC Language
Topic: How to Create an Iterator
Replies: 3
Views: 38070

Re: How to Create an Iterator

Aaahh, I see. Wow this is brilliant. Thanks for pointing out the use of Array<Planet> planets vs Planet planets[]. I'll need to remind myself to try to use the eC counterparts to C ones where they exist. Another small question, is there a reason why you kept the Planet type as a struct instead of tu...
by cloutiy
Sun Jul 24, 2016 3:18 pm
Forum: eC Language
Topic: How to Create an Iterator
Replies: 3
Views: 38070

How to Create an Iterator

Hello, I would like to undestand a bit more about iterators and how to create them. In the code example below, the compiler is not happy with the following line of code: Iterator<int> i { planets }; What is the proper what to create an iterator to go over a list of type Planet? The entire code below...
by cloutiy
Thu Jul 21, 2016 5:58 pm
Forum: IDE
Topic: IDE Font Settings
Replies: 3
Views: 39834

Re: IDE Font Settings

mmmm...thanks Jerome.

But this may be too complicated for me.

I was running into problems installing from source (error on ffi.h) and installed using:

Code: Select all

yaourt -S ecere-sdk-git
which did everything for me.

Maybe I'll wait ;S
by cloutiy
Thu Jul 21, 2016 3:09 pm
Forum: API Documentation Tool
Topic: API Documentation
Replies: 2
Views: 57712

Re: API Documentation

Nevermind, I was able to find it by pressing F1.

Thanks!
by cloutiy
Thu Jul 21, 2016 1:56 pm
Forum: API Documentation Tool
Topic: API Documentation
Replies: 2
Views: 57712

API Documentation

Hello, Regarding API documentation...can anyone share how to get to it? Where is it located? In the IDE Help section I can get to a documentation folder in which the Tao of Ecere pdf is located in, as well as a couple of other documents - which I suspect is what I'm looking for. However what do I us...
by cloutiy
Thu Jul 21, 2016 1:51 pm
Forum: IDE
Topic: IDE Font Settings
Replies: 3
Views: 39834

IDE Font Settings

Hello, I'm finding that the default font size for the IDE (both application and code editor) are rather small. Is there a way to increase the font size through the IDE itself? If not is there a configuration file that I can modify? On the subject of fonts, is it possible for me to change the font us...
by cloutiy
Thu Jul 21, 2016 8:44 am
Forum: Introductions
Topic: Hello from Ottawa, Canada
Replies: 1
Views: 49666

Hello from Ottawa, Canada

Hello, 15 years ago I took Computer Science in college. I loved programming. It allowed me to use both sides of my brain. There was never a single solution to any problem, and the fun became how to express the solution in the most elegant way. But as I was graduating the tech industry here was crash...
by cloutiy
Wed Jul 20, 2016 8:43 pm
Forum: General Help
Topic: ffi.h Error while Building
Replies: 2
Views: 21708

Re: ffi.h Error while Building

You are a life saver :D