Search the web
Sign In
New User? Sign Up
iolanguage · Io
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 11514 - 11543 of 11910   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
11514
I've been trying to understand how Io works and what goes on under the hood. I'm becoming more and more impressed with it, but am a little confused about a a...
tobeythorn
Offline Send Email
Jun 4, 2009
2:31 pm
11515
... I don't understand what you mean with "123" and "this is a word" please clarify that. However, TRUE, FALSE and NIL are just constants that point at ...
Jeremy Tregunna
jeremy.tregunna@...
Send Email
Jun 4, 2009
2:37 pm
11516
... What I mean is the construction of numbers and strings....
tobeythorn
Offline Send Email
Jun 4, 2009
3:32 pm
11517
... That's part of the parsing subsystem. When the lexer matches certain patterns (like numbers or strings), it will create a token of that particular type....
Jeremy Tregunna
jeremy.tregunna@...
Send Email
Jun 4, 2009
3:34 pm
11518
... Jeremy, But a message (or tree of messages) must, at the end of the day, be sent to real objects (right?). If primitive objects like numbers and strings...
tobeythorn
Offline Send Email
Jun 4, 2009
7:25 pm
11519
... Strings and Numbers *ARE* objects just like any other. They just happen to be created in C code rather than Io code. You can manipulate number objects just...
Jeremy Tregunna
jeremy.tregunna@...
Send Email
Jun 4, 2009
7:32 pm
11520
... Jeremy, Thanks, that makes sense now!...
tobeythorn
Offline Send Email
Jun 4, 2009
8:02 pm
11521
... Hi Tobey, Everything compiles to a tree composed of messages. Literals such as numbers and strings in the source become instances of number and string...
Steve Dekorte
stevedekorte
Offline Send Email
Jun 4, 2009
8:36 pm
11522
This build problem first occurred a couple years ago for me, and I just noticed the latest code I pulled from github still has the same issue. Steps to...
dennisf486
Offline Send Email
Jun 7, 2009
3:07 am
11523
In my opinion this isn't the responsibility of io, nor any other library to do. It's not third party developers fault that GNU ld is "dumb" (I don't use that...
Jeremy Tregunna
jeremy.tregunna@...
Send Email
Jun 7, 2009
6:52 pm
11524
... Hi Dennis, Thanks for the issue report. Could you add something to the makefile to fix Ubuntu that doesn't break other systems? I'd be happy to accept a...
Steve Dekorte
stevedekorte
Offline Send Email
Jun 7, 2009
10:38 pm
11525
... That's a bad idea Steve, as it depends on "sudo" being installed, AND the user actually having privileges to run it. It would break installation on systems...
Jeremy Tregunna
jeremy.tregunna@...
Send Email
Jun 7, 2009
10:55 pm
11526
... iirc, "it" *already* depends on "sudo" ... I was going to "fix" it but still have no round tuits ... -- --gh...
Guy Hulbert
gwhulbert@...
Send Email
Jun 7, 2009
11:04 pm
11527
... Actually, io does not depend on sudo. It recommends using it to install, as most users build io as an unprivileged user. Regards, Jeremy Tregunna ...
Jeremy Tregunna
jeremy.tregunna@...
Send Email
Jun 8, 2009
12:02 am
11528
... My main concern is with making Io easy to set up. If there is a security concern with sudo, perhaps we can prompt the user to ask if it is ok to use it...
Steve Dekorte
stevedekorte
Offline Send Email
Jun 8, 2009
12:06 am
11529
... There's not... It's just something a user has to actually have installed to work. I'd say conservatively, only about 40% of users actually have it...
Jeremy Tregunna
jeremy.tregunna@...
Send Email
Jun 8, 2009
12:13 am
11530
... Try: git clone <io-url> cd <top-dir> find -type f -exec grep 'sudo' '{}' \; I don't believe you will find the output empty (it's in one of the add-ons but...
Guy Hulbert
gwhulbert@...
Send Email
Jun 8, 2009
12:42 am
11531
... grep -ri "sudo" * shows: addons/SGML/build.io: cmd := "cd addons/SGML/ source/" .. libSgmlDirectory .. ";" .. configure .. " make && echo...
Jeremy Tregunna
jeremy.tregunna@...
Send Email
Jun 8, 2009
12:47 am
11532
... The (naive) GNU standard used to be: $ su - root # ./configure # make # make install However you only need to be root for the final step and normally...
Guy Hulbert
gwhulbert@...
Send Email
Jun 8, 2009
12:49 am
11533
... The 'echo' is new since I did this (last year). When I ran the 'make', I got a password prompt. Perhaps Steve added the 'echo' since then. -- --gh...
Guy Hulbert
gwhulbert@...
Send Email
Jun 8, 2009
12:51 am
11534
... It looks like it echoes it and then executes it, no?...
Kevin Edwards
edwakev
Offline Send Email
Jun 8, 2009
2:10 am
11535
... The System system(cmd) is what actually executes the string stored in the cmd slot which contains the echo. So no, it does not appear to actually execute...
Jeremy Tregunna
jeremy.tregunna@...
Send Email
Jun 8, 2009
2:18 am
11536
... We're talking about the SGML/build.io cmd string above, right? It ends like this, which is sent to the system sh: echo "sudo make install" && sudo make...
Kevin Edwards
edwakev
Offline Send Email
Jun 8, 2009
3:13 am
11537
Sorry, missed that. ... Regards, Jeremy Tregunna jeremy.tregunna@......
Jeremy Tregunna
jeremy.tregunna@...
Send Email
Jun 8, 2009
3:47 am
11538
... Sorry for the confusion what I meant is that (on Ubuntu) the user has already sudoed the whole make install command in the first place, so you wouldn't...
dennisf486
Offline Send Email
Jun 8, 2009
4:05 am
11539
Since it looks like some people are online answering messages right now, I thought I'd ask a quick question of you. :D For the game engine I'm working on, I...
dennisf486
Offline Send Email
Jun 8, 2009
4:20 am
11540
... I would rather that the install software not be so helpful. As I pointed out, using sudo is, in principal, not required at all. Moreover, anything done as...
Guy Hulbert
gwhulbert@...
Send Email
Jun 8, 2009
10:12 am
11541
... Perhaps not, but over the last 16 years, I have answered this question to Linux users many times... so many, I lost count probably around 1994... Simple...
Jeremy Tregunna
jeremy.tregunna@...
Send Email
Jun 8, 2009
11:46 am
11542
... The code that presents the user with the prompt and receives the input line can just call doString(theInputString) and I think it should have the behavior...
Steve Dekorte
stevedekorte
Offline Send Email
Jun 8, 2009
9:30 pm
11543
Thanks that was a big help but it wasn't quite the solution. I was able to make it run a background process simultaneous to generating my own prompt. But...
dennisf486
Offline Send Email
Jun 10, 2009
5:09 am
Messages 11514 - 11543 of 11910   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help