digitalmars.D.learn - arrays and pointers & Tango
- Nick B (17/17) Sep 04 2008 I would like to create a dynamic array, of say, 10 strings.
- bearophile (10/14) Sep 04 2008 If this means you want to use C-like pointers to arrays of chars you can...
- Nick B (3/18) Sep 04 2008 access it ? when are most people on the IRC channel ?
- Lars Ivar Igesund (11/33) Sep 04 2008 Use an IRC client - for example mIRC or xchat. Search and you will find ...
- Bill Baxter (5/14) Sep 04 2008 Or use mibbit.com, a web front end for irc. It's great if you don't
- Nick B (14/42) Sep 08 2008 Lars
- Denis Koroskin (4/48) Sep 08 2008 Try getting the list of existing channels and pick d.tango from there.
- Nick B (2/55) Sep 08 2008 does the channel have a number or something ? there are so many !
- Denis Koroskin (3/59) Sep 08 2008 It has a name: `d.tango'. Join `d' also.
- Lars Ivar Igesund (8/64) Sep 08 2008 You're in the correct channel, but wrong network/server. Connect to
- Sean Kelly (4/47) Sep 08 2008 Make sure you connect to the FreeNode IRC network. I think mIRC picks
- Nick B (6/57) Sep 09 2008 can someone tell me the auth requirements. I am getting the following
- Lars Ivar Igesund (7/12) Sep 09 2008 There are no auth requirements? Which client are you using now?
- Tomas Lindquist Olsen (6/16) Sep 09 2008 I think he's talking about this:
- Nick B (4/14) Sep 09 2008 i am using mIRC ver 6.34. I am getting a invalid user name message ,
- bearophile (4/6) Sep 09 2008 I have suggested you to use IRC because it's easy as a pie, you set up 2...
- Jarrett Billingsley (4/7) Sep 09 2008 No, in fact that's probably the reason you're getting an invalid
- Nick B (3/12) Sep 15 2008 I am now getting the message [10053 - software caused connection abort.]
- Jarrett Billingsley (3/5) Sep 15 2008 Wow, I've never heard of anyone having so many problems with IRC.
- Nick B (3/9) Sep 15 2008 thanks for the suggestion. I will give it a go.
- Denis Koroskin (8/18) Sep 16 2008 Or you can run Opera and type irc://irc.freenode.org
I would like to create a dynamic array, of say, 10 strings. I would like to use pointers if possible, to show the relationships between the strings, like as follows: a[1] to a[2] a[1] to a[3] a[1] to a[4] a[1] to a[5] ...... snip a[2] to a[3] a[2] to a[4] a[2] to a[5] ...... snip a[3] to a[4] a[3] to a[5] etc etc. Is this possible using Tango ? thanks D newbie.
Sep 04 2008
Nick B:I would like to create a dynamic array, of say, 10 strings.In D by default strings are dynamic arrays of characters. You can also use normal C strings, with a \0 at the end, using the appropriate C string functions, but then you have to be careful when you print them, etc.I would like to use pointers if possible,If this means you want to use C-like pointers to arrays of chars you can define it like this: char*[] arr; But in most situations you don't want that.to show the relationships between the strings, like as follows:I don't understand.Is this possible using Tango ?I think Tango or Phobos matter little for this, but I can't be sure because I haven't understood what you want. You can also try the #d or #d.tango IRC channels, where you can ask things with more interactivity. Bye, bearophile
Sep 04 2008
bearophile wrote:Nick B:But in most situations you don't want that.access it ? when are most people on the IRC channel ? thanksto show the relationships between the strings, like as follows:I don't understand.Is this possible using Tango ?I think Tango or Phobos matter little for this, but I can't be sure because I haven't understood what you want. You can also try the #d or #d.tango IRC channels, where you can ask things with more interactivity. where can i find the #d.tango IRC channel ? What tool do I use to
Sep 04 2008
Nick B wrote:bearophile wrote:Use an IRC client - for example mIRC or xchat. Search and you will find a multitude of options. Connect to irc.freenode.org, and when there join the #d.tango channel. You will find people there all day round, but European and US day/evening time is probably the most active. -- Lars Ivar Igesund blog at http://larsivi.net DSource, #d.tango & #D: larsivi Dancing the TangoNick B:But in most situations you don't want that.> where can i find the #d.tango IRC channel ? What tool do I use to access it ? when are most people on the IRC channel ? thanksto show the relationships between the strings, like as follows:I don't understand.Is this possible using Tango ?I think Tango or Phobos matter little for this, but I can't be sure because I haven't understood what you want. You can also try the #d or #d.tango IRC channels, where you can ask things with more interactivity.
Sep 04 2008
On Fri, Sep 5, 2008 at 4:58 AM, Lars Ivar Igesund <larsivar igesund.net> wrote:Or use mibbit.com, a web front end for irc. It's great if you don't want to bother downloading and installing a program which you may seldom use anyway. --bb> where can i find the #d.tango IRC channel ? What tool do I use to access it ? when are most people on the IRC channel ? thanksUse an IRC client - for example mIRC or xchat. Search and you will find a multitude of options. Connect to irc.freenode.org, and when there join the #d.tango channel. You will find people there all day round, but European and US day/evening time is probably the most active.
Sep 04 2008
Lars Ivar Igesund wrote:Nick B wrote:Lars I did as you suggested. I have downloaded mIRC and installed it, but when I installed it and go to #d.tango there is no one there ! This may because of the difference in time zone, living in New Zealand. This means I'm 20 hours behind california, 17 hours behind new york, 12 hours behind england, and 11 hours behind Germany. It does not make it easy. Is there any way to open a session and leave it open, so that I can at least see what is being discussed. Also, how can i verify that I am at the right place ? regards Nick B ybearophile wrote:Use an IRC client - for example mIRC or xchat. Search and you will find a multitude of options. Connect to irc.freenode.org, and when there join the #d.tango channel. You will find people there all day round, but European and US day/evening time is probably the most active.Nick B: But in most situations you don't want that.> where can i find the #d.tango IRC channel ? What tool do I use to access it ? when are most people on the IRC channel ? thanksto show the relationships between the strings, like as follows:I don't understand.Is this possible using Tango ?I think Tango or Phobos matter little for this, but I can't be sure because I haven't understood what you want. You can also try the #d or #d.tango IRC channels, where you can ask things with more interactivity.
Sep 08 2008
On Mon, 08 Sep 2008 15:19:25 +0400, Nick B <nick.barbalich gmail.com> wrote:Lars Ivar Igesund wrote:Try getting the list of existing channels and pick d.tango from there. There is 56 user in the channel right now.Nick B wrote:Lars I did as you suggested. I have downloaded mIRC and installed it, but when I installed it and go to #d.tango there is no one there ! This may because of the difference in time zone, living in New Zealand. This means I'm 20 hours behind california, 17 hours behind new york, 12 hours behind england, and 11 hours behind Germany. It does not make it easy. Is there any way to open a session and leave it open, so that I can at least see what is being discussed. Also, how can i verify that I am at the right place ? regards Nick B ybearophile wrote:Use an IRC client - for example mIRC or xchat. Search and you will find a multitude of options. Connect to irc.freenode.org, and when there join the #d.tango channel. You will find people there all day round, but European and US day/evening time is probably the most active.Nick B: But in most situations you don't want that.> where can i find the #d.tango IRC channel ? What tool do I use to access it ? when are most people on the IRC channel ? thanksto show the relationships between the strings, like as follows:I don't understand.Is this possible using Tango ?I think Tango or Phobos matter little for this, but I can't be sure because I haven't understood what you want. You can also try the #d or #d.tango IRC channels, where you can ask things with more interactivity.
Sep 08 2008
Denis Koroskin wrote:On Mon, 08 Sep 2008 15:19:25 +0400, Nick B <nick.barbalich gmail.com> wrote:does the channel have a number or something ? there are so many !Lars Ivar Igesund wrote:Try getting the list of existing channels and pick d.tango from there. There is 56 user in the channel right now.Nick B wrote:Lars I did as you suggested. I have downloaded mIRC and installed it, but when I installed it and go to #d.tango there is no one there ! This may because of the difference in time zone, living in New Zealand. This means I'm 20 hours behind california, 17 hours behind new york, 12 hours behind england, and 11 hours behind Germany. It does not make it easy. Is there any way to open a session and leave it open, so that I can at least see what is being discussed. Also, how can i verify that I am at the right place ? regards Nick B ybearophile wrote:Use an IRC client - for example mIRC or xchat. Search and you will find a multitude of options. Connect to irc.freenode.org, and when there join the #d.tango channel. You will find people there all day round, but European and US day/evening time is probably the most active.Nick B: But in most situations you don't want that.> where can i find the #d.tango IRC channel ? What tool do I use to access it ? when are most people on the IRC channel ? thanksto show the relationships between the strings, like as follows:I don't understand.Is this possible using Tango ?I think Tango or Phobos matter little for this, but I can't be sure because I haven't understood what you want. You can also try the #d or #d.tango IRC channels, where you can ask things with more interactivity.
Sep 08 2008
On Mon, 08 Sep 2008 15:47:35 +0400, Nick B <nick.barbalich gmail.com> wrote:Denis Koroskin wrote:It has a name: `d.tango'. Join `d' also.On Mon, 08 Sep 2008 15:19:25 +0400, Nick B <nick.barbalich gmail.com> wrote:does the channel have a number or something ? there are so many !Lars Ivar Igesund wrote:Try getting the list of existing channels and pick d.tango from there. There is 56 user in the channel right now.Nick B wrote:Lars I did as you suggested. I have downloaded mIRC and installed it, but when I installed it and go to #d.tango there is no one there ! This may because of the difference in time zone, living in New Zealand. This means I'm 20 hours behind california, 17 hours behind new york, 12 hours behind england, and 11 hours behind Germany. It does not make it easy. Is there any way to open a session and leave it open, so that I can at least see what is being discussed. Also, how can i verify that I am at the right place ? regards Nick B ybearophile wrote:Use an IRC client - for example mIRC or xchat. Search and you will find a multitude of options. Connect to irc.freenode.org, and when there join the #d.tango channel. You will find people there all day round, but European and US day/evening time is probably the most active.Nick B: But in most situations you don't want that.> where can i find the #d.tango IRC channel ? What tool do I use to access it ? when are most people on the IRC channel ? thanksto show the relationships between the strings, like as follows:I don't understand.Is this possible using Tango ?I think Tango or Phobos matter little for this, but I can't be sure because I haven't understood what you want. You can also try the #d or #d.tango IRC channels, where you can ask things with more interactivity.
Sep 08 2008
Nick B wrote:Denis Koroskin wrote:You're in the correct channel, but wrong network/server. Connect to irc.freenode.org instead of undernet. -- Lars Ivar Igesund blog at http://larsivi.net DSource, #d.tango & #D: larsivi Dancing the TangoOn Mon, 08 Sep 2008 15:19:25 +0400, Nick B <nick.barbalich gmail.com> wrote:does the channel have a number or something ? there are so many !Lars Ivar Igesund wrote:Try getting the list of existing channels and pick d.tango from there. There is 56 user in the channel right now.Nick B wrote:Lars I did as you suggested. I have downloaded mIRC and installed it, but when I installed it and go to #d.tango there is no one there ! This may because of the difference in time zone, living in New Zealand. This means I'm 20 hours behind california, 17 hours behind new york, 12 hours behind england, and 11 hours behind Germany. It does not make it easy. Is there any way to open a session and leave it open, so that I can at least see what is being discussed. Also, how can i verify that I am at the right place ? regards Nick B ybearophile wrote:Use an IRC client - for example mIRC or xchat. Search and you will find a multitude of options. Connect to irc.freenode.org, and when there join the #d.tango channel. You will find people there all day round, but European and US day/evening time is probably the most active.Nick B: But in most situations you don't want that.> where can i find the #d.tango IRC channel ? What tool do I use to access it ? when are most people on the IRC channel ? thanksto show the relationships between the strings, like as follows:I don't understand.Is this possible using Tango ?I think Tango or Phobos matter little for this, but I can't be sure because I haven't understood what you want. You can also try the #d or #d.tango IRC channels, where you can ask things with more interactivity.
Sep 08 2008
Lars Ivar Igesund wrote:Nick B wrote:thanks again. I will try again tomorrow, as its getting late here. Its after midnight.Denis Koroskin wrote:You're in the correct channel, but wrong network/server. Connect to irc.freenode.org instead of undernet.On Mon, 08 Sep 2008 15:19:25 +0400, Nick B <nick.barbalich gmail.com> wrote:does the channel have a number or something ? there are so many !Lars Ivar Igesund wrote:Try getting the list of existing channels and pick d.tango from there. There is 56 user in the channel right now.Nick B wrote:Lars I did as you suggested. I have downloaded mIRC and installed it, but when I installed it and go to #d.tango there is no one there ! This may because of the difference in time zone, living in New Zealand. This means I'm 20 hours behind california, 17 hours behind new york, 12 hours behind england, and 11 hours behind Germany. It does not make it easy. Is there any way to open a session and leave it open, so that I can at least see what is being discussed. Also, how can i verify that I am at the right place ? regards Nick B ybearophile wrote:Use an IRC client - for example mIRC or xchat. Search and you will find a multitude of options. Connect to irc.freenode.org, and when there join the #d.tango channel. You will find people there all day round, but European and US day/evening time is probably the most active.Nick B: But in most situations you don't want that.> where can i find the #d.tango IRC channel ? What tool do I use to access it ? when are most people on the IRC channel ? thanksto show the relationships between the strings, like as follows:I don't understand.Is this possible using Tango ?I think Tango or Phobos matter little for this, but I can't be sure because I haven't understood what you want. You can also try the #d or #d.tango IRC channels, where you can ask things with more interactivity.
Sep 08 2008
Nick B wrote:Lars Ivar Igesund wrote:Here's a mibbit.com link to get you started: http://tinyurl.com/6jpta8 Choose a nickname, and you'll be launched into #D and #d.tango channels.Nick B wrote:thanks again. I will try again tomorrow, as its getting late here. Its after midnight.You're in the correct channel, but wrong network/server. Connect to irc.freenode.org instead of undernet.does the channel have a number or something ? there are so many !yTry getting the list of existing channels and pick d.tango from there. There is 56 user in the channel right now.
Sep 09 2008
Nick B wrote:Lars Ivar Igesund wrote:Make sure you connect to the FreeNode IRC network. I think mIRC picks some other network by default. SeanNick B wrote:Lars I did as you suggested. I have downloaded mIRC and installed it, but when I installed it and go to #d.tango there is no one there ! This may because of the difference in time zone, living in New Zealand. This means I'm 20 hours behind california, 17 hours behind new york, 12 hours behind england, and 11 hours behind Germany. It does not make it easy. Is there any way to open a session and leave it open, so that I can at least see what is being discussed. Also, how can i verify that I am at the right place ?bearophile wrote:Use an IRC client - for example mIRC or xchat. Search and you will find a multitude of options. Connect to irc.freenode.org, and when there join the #d.tango channel. You will find people there all day round, but European and US day/evening time is probably the most active.Nick B: But in most situations you don't want that.> where can i find the #d.tango IRC channel ? What tool do I use to access it ? when are most people on the IRC channel ? thanksto show the relationships between the strings, like as follows:I don't understand.Is this possible using Tango ?I think Tango or Phobos matter little for this, but I can't be sure because I haven't understood what you want. You can also try the #d or #d.tango IRC channels, where you can ask things with more interactivity.
Sep 08 2008
can someone tell me the auth requirements. I am getting the following message "irc.freenode.org *** - no identd (auth) response " Can someone tell me how to set up this up correctly ? thanks Nick B Sean Kelly wrote:Nick B wrote:Lars Ivar Igesund wrote:Make sure you connect to the FreeNode IRC network. I think mIRC picks some other network by default. SeanNick B wrote:Lars I did as you suggested. I have downloaded mIRC and installed it, but when I installed it and go to #d.tango there is no one there ! This may because of the difference in time zone, living in New Zealand. This means I'm 20 hours behind california, 17 hours behind new york, 12 hours behind england, and 11 hours behind Germany. It does not make it easy. Is there any way to open a session and leave it open, so that I can at least see what is being discussed. Also, how can i verify that I am at the right place ?bearophile wrote:Use an IRC client - for example mIRC or xchat. Search and you will find a multitude of options. Connect to irc.freenode.org, and when there join the #d.tango channel. You will find people there all day round, but European and US day/evening time is probably the most active.Nick B: But in most situations you don't want that.> where can i find the #d.tango IRC channel ? What tool do I use to access it ? when are most people on the IRC channel ? thanksto show the relationships between the strings, like as follows:I don't understand.Is this possible using Tango ?I think Tango or Phobos matter little for this, but I can't be sure because I haven't understood what you want. You can also try the #d or #d.tango IRC channels, where you can ask things with more interactivity.
Sep 09 2008
Nick B wrote:can someone tell me the auth requirements. I am getting the following message "irc.freenode.org *** - no identd (auth) response " Can someone tell me how to set up this up correctly ? thanks Nick BThere are no auth requirements? Which client are you using now? -- Lars Ivar Igesund blog at http://larsivi.net DSource, #d.tango & #D: larsivi Dancing the Tango
Sep 09 2008
Lars Ivar Igesund wrote:Nick B wrote:I think he's talking about this: http://en.wikipedia.org/wiki/Ident it's not critical, it just takes a bit longer to connect to the network if they don't get a response. -Tomascan someone tell me the auth requirements. I am getting the following message "irc.freenode.org *** - no identd (auth) response " Can someone tell me how to set up this up correctly ? thanks Nick BThere are no auth requirements? Which client are you using now?
Sep 09 2008
i am using mIRC ver 6.34. I am getting a invalid user name message , then I get disconnected. does your Nickname have to match your email account ? Lars Ivar Igesund wrote:Nick B wrote:can someone tell me the auth requirements. I am getting the following message "irc.freenode.org *** - no identd (auth) response " Can someone tell me how to set up this up correctly ? thanks Nick BThere are no auth requirements? Which client are you using now?
Sep 09 2008
Nick B:i am using mIRC ver 6.34. I am getting a invalid user name message , then I get disconnected.I have suggested you to use IRC because it's easy as a pie, you set up 2 parameters and you go. Maybe it's better for you to express your problems here, instead... Bye, bearophile
Sep 09 2008
On Tue, Sep 9, 2008 at 7:01 AM, Nick B <nick.barbalich gmail.com> wrote:i am using mIRC ver 6.34. I am getting a invalid user name message , then I get disconnected. does your Nickname have to match your email account ?No, in fact that's probably the reason you're getting an invalid username message, it probably doesn't like signs. Just pick a nice, short, alphanumeric name, like NickBarb or something.
Sep 09 2008
I am now getting the message [10053 - software caused connection abort.] any suggestions on what may be causing this? Jarrett Billingsley wrote:On Tue, Sep 9, 2008 at 7:01 AM, Nick B <nick.barbalich gmail.com> wrote:i am using mIRC ver 6.34. I am getting a invalid user name message , then I get disconnected. does your Nickname have to match your email account ?No, in fact that's probably the reason you're getting an invalid username message, it probably doesn't like signs. Just pick a nice, short, alphanumeric name, like NickBarb or something.
Sep 15 2008
On Mon, Sep 15, 2008 at 7:42 AM, Nick B <nick.barbalich gmail.com> wrote:I am now getting the message [10053 - software caused connection abort.] any suggestions on what may be causing this?Wow, I've never heard of anyone having so many problems with IRC. Just.. try mibbit (http://www.mibbit.com/).
Sep 15 2008
thanks for the suggestion. I will give it a go. Nick Jarrett Billingsley wrote:On Mon, Sep 15, 2008 at 7:42 AM, Nick B <nick.barbalich gmail.com> wrote:I am now getting the message [10053 - software caused connection abort.] any suggestions on what may be causing this?Wow, I've never heard of anyone having so many problems with IRC. Just.. try mibbit (http://www.mibbit.com/).
Sep 15 2008
On Tue, 16 Sep 2008 10:53:30 +0400, Nick B <nick.barbalich gmail.com> wrote:thanks for the suggestion. I will give it a go. Nick Jarrett Billingsley wrote:Or you can run Opera and type irc://irc.freenode.org The wizard will ask you for a name, mail and nick and that's all, you are in! BTW, Opera may also be used as a newsreader client, and it is very good at it. Try writing news://digitalmars.comOn Mon, Sep 15, 2008 at 7:42 AM, Nick B <nick.barbalich gmail.com> wrote:I am now getting the message [10053 - software caused connection abort.] any suggestions on what may be causing this?Wow, I've never heard of anyone having so many problems with IRC. Just.. try mibbit (http://www.mibbit.com/).
Sep 16 2008