Page 2 of 11

Re: Rosetta Code

Posted: 17 Jan 2014, 05:41
by joedf
done. ;)

Re: Rosetta Code

Posted: 17 Jan 2014, 06:50
by Avi
@joedf
Will I have to create account to add a solution ?
And how do I add a solution, edit the whole page?

Re: Rosetta Code

Posted: 17 Jan 2014, 12:54
by joedf
Well, i suggest to create an account,
And yes, you Have to edit the whole page to
Add a new solution, like so (in alphabetical order, of course ;) ):

Code: Select all

=={{header|AutoHotkey}}==

<lang autohotkey>Msgbox hello, test</lang>
Output: <pre></pre>
Cheers ;)

Re: Rosetta Code

Posted: 18 Jan 2014, 02:32
by kon

Re: Rosetta Code

Posted: 18 Jan 2014, 19:16
by kon

Re: Rosetta Code

Posted: 18 Jan 2014, 20:45
by kon

Re: Rosetta Code

Posted: 19 Jan 2014, 01:46
by kon
Added: Entropy
Added: Fibonacci word

Re: Rosetta Code

Posted: 19 Jan 2014, 08:05
by smorgasbord
Avi wrote:@jNiZm
Please add this link ( http://rosettacode.org/wiki/Reports:Tas ... AutoHotkey ) to the top so that anybody who wants to enrich AutoHotkey by completing more and more tasks can help.
Let's put AHK in top 10 there.
+1

Re: Rosetta Code

Posted: 19 Jan 2014, 10:31
by jNizM
@smorgasbord
its always done

Re: Rosetta Code

Posted: 19 Jan 2014, 12:15
by smorgasbord
@jNizM
Thanks for creating this tread. I wish @kon, you, @Avi, @joedf and others in here solve every problem there and make Autohotkey the best. :)

Thanks again for "its always done"
:)

Re: Rosetta Code

Posted: 19 Jan 2014, 16:09
by joedf
Image on the job!

Re: Rosetta Code

Posted: 20 Jan 2014, 07:10
by Avi
joedf wrote:Well, i suggest to create an account,
And yes, you Have to edit the whole page to
Add a new solution, like so (in alphabetical order, of course ;) ):

Code: Select all

=={{header|AutoHotkey}}==

<lang autohotkey>Msgbox hello, test</lang>
Output: <pre></pre>
Cheers ;)
Thanks, account created.

Re: Rosetta Code

Posted: 20 Jan 2014, 08:57
by Avi

Re: Rosetta Code

Posted: 20 Jan 2014, 17:40
by AlphaBravo

Re: Rosetta Code

Posted: 20 Jan 2014, 23:13
by kon

Re: Rosetta Code

Posted: 21 Jan 2014, 06:44
by Avi
I have been blocked :o . The reason - I edited my user page to link to my site :shock:

Noticed this when I was solving Identity Matrix, was not able to edit page. Here is the code, if anyone can put it there -

Code: Select all

msgbox % Clipboard := I(6)
return

I(n){
	r := "--`n" , s := " "
	loop % n
	{
		k := A_index , r .= "|  "
		loop % n
			r .= A_index=k ? "1, " : "0, "
		r := RTrim(r, " ,") , r .= "  |`n"
	}
	loop % 4*n
		s .= " "
	return Rtrim(r,"`n") "`n" s "--"
}

Re: Rosetta Code

Posted: 21 Jan 2014, 09:11
by smorgasbord
@Avi
i guess since you solved it, you must post it.
:)

Re: Rosetta Code

Posted: 21 Jan 2014, 14:01
by joedf
Yes, Avi I could put it, but you solved it, you must have the honor ;)

Re: Rosetta Code

Posted: 22 Jan 2014, 00:55
by kon

Re: Rosetta Code

Posted: 22 Jan 2014, 06:41
by Avi
smorgasbord wrote:@Avi
i guess since you solved it, you must post it.
:)
joedf wrote:Yes, Avi I could put it, but you solved it, you must have the honor ;)
I was blocked and my account became of no use. I did contact the admin and he lifted the ban. :D
I have posted it now.