Rocksolid Light

Welcome to RetroBBS

mail  files  register  newsreader  groups  login

Message-ID:  

Evolution is a million line computer program falling into place by accident.


devel / comp.lang.javascript / How come I don't get a box when I add an eventlistener?

SubjectAuthor
* How come I don't get a box when I add an eventlistener?chad altenburg
+* Re: How come I don't get a box when I add an eventlistener?Ben Bacarisse
|`* Re: How come I don't get a box when I add an eventlistener?chad altenburg
| `* Re: How come I don't get a box when I add an eventlistener?Ben Bacarisse
|  `* Re: How come I don't get a box when I add an eventlistener?chad altenburg
|   +- Re: How come I don't get a box when I add an eventlistener?The Natural Philosopher
|   `- Re: How come I don't get a box when I add an eventlistener?Arno Welzel
`- Re: How come I don't get a box when I add an eventlistener?Arno Welzel

1
How come I don't get a box when I add an eventlistener?

<24969684-2577-4eb1-b316-0b490769f615n@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=17644&group=comp.lang.javascript#17644

  copy link   Newsgroups: comp.lang.javascript
X-Received: by 2002:a37:a10a:: with SMTP id k10mr1728796qke.747.1644428568269;
Wed, 09 Feb 2022 09:42:48 -0800 (PST)
X-Received: by 2002:a05:6808:130c:: with SMTP id y12mr1739067oiv.126.1644428566726;
Wed, 09 Feb 2022 09:42:46 -0800 (PST)
Path: i2pn2.org!i2pn.org!weretis.net!feeder6.news.weretis.net!news.misty.com!border2.nntp.dca1.giganews.com!nntp.giganews.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.javascript
Date: Wed, 9 Feb 2022 09:42:46 -0800 (PST)
Injection-Info: google-groups.googlegroups.com; posting-host=2607:fb90:9e85:a209:985f:4b2e:6130:79b0;
posting-account=kTs1ygoAAACgG1TSoyECpovEyy-V6_8b
NNTP-Posting-Host: 2607:fb90:9e85:a209:985f:4b2e:6130:79b0
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <24969684-2577-4eb1-b316-0b490769f615n@googlegroups.com>
Subject: How come I don't get a box when I add an eventlistener?
From: cdalten@gmail.com (chad altenburg)
Injection-Date: Wed, 09 Feb 2022 17:42:48 +0000
Content-Type: text/plain; charset="UTF-8"
Lines: 39
 by: chad altenburg - Wed, 9 Feb 2022 17:42 UTC

When I comment out the event listener code, I get a black box. However, when I don't, I don't get a black box. Why?

<html>
<canvas id = "canvas"></canvas>
<script>
var x = 20;
var y = 20;

var canvas = document.getElementById('canvas');
var ctx = canvas.getContext('2d');
var i =0;

addEventListener();

function drawSnake()
{
for (i = 0; i < 20; i++) {
ctx.fillRect(x, y, 25, 25);
}
}

drawSnake();

function addListener() {
document.addEventListener('keydown', function(e)) {
switch(e.keycode) {
case 37: break; //left
case 38: break; //up
case 39: break; //right
}
}
}



//ctx.fillRect(50, 100, 150, 150);
// }

</script>
</html>

Re: How come I don't get a box when I add an eventlistener?

<87y22jlnaa.fsf@bsb.me.uk>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=17645&group=comp.lang.javascript#17645

  copy link   Newsgroups: comp.lang.javascript
Path: i2pn2.org!i2pn.org!eternal-september.org!reader02.eternal-september.org!.POSTED!not-for-mail
From: ben.usenet@bsb.me.uk (Ben Bacarisse)
Newsgroups: comp.lang.javascript
Subject: Re: How come I don't get a box when I add an eventlistener?
Date: Wed, 09 Feb 2022 21:53:33 +0000
Organization: A noiseless patient Spider
Lines: 57
Message-ID: <87y22jlnaa.fsf@bsb.me.uk>
References: <24969684-2577-4eb1-b316-0b490769f615n@googlegroups.com>
Mime-Version: 1.0
Content-Type: text/plain
Injection-Info: reader02.eternal-september.org; posting-host="5ae0e0286c332dbca1a767f49131889a";
logging-data="9459"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1+C6OwlWeVpaoFIsOEBpP3OXchO2jOFrQ4="
Cancel-Lock: sha1:yx0ldhQeiLHeM9akitbDZPZwNBg=
sha1:YyhsApZp01/aA6pUHRRlqvoGsCY=
X-BSB-Auth: 1.70a29e80a74a7cad7b68.20220209215333GMT.87y22jlnaa.fsf@bsb.me.uk
 by: Ben Bacarisse - Wed, 9 Feb 2022 21:53 UTC

chad altenburg <cdalten@gmail.com> writes:

> When I comment out the event listener code, I get a black
> box. However, when I don't, I don't get a black box. Why?

Because there is a syntax error. The code can't run if the interpreter
can't make sense of what you've written.

> <html>
> <canvas id = "canvas"></canvas>
> <script>
> var x = 20;
> var y = 20;
>
> var canvas = document.getElementById('canvas');
> var ctx = canvas.getContext('2d');
> var i =0;
>
> addEventListener();

Remove this as well. It will cause a run-time error.

> function drawSnake()
> {
> for (i = 0; i < 20; i++) {
> ctx.fillRect(x, y, 25, 25);
> }
> }
>
> drawSnake();
>
> function addListener() {
> document.addEventListener('keydown', function(e)) {

That second ) is in the wrong place.

> switch(e.keycode) {
> case 37: break; //left
> case 38: break; //up
> case 39: break; //right
> }
> }

It should be here (along with a semicolon)..

> }
>
>
>
> //ctx.fillRect(50, 100, 150, 150);
> // }
>
> </script>
> </html>

--
Ben.

Re: How come I don't get a box when I add an eventlistener?

<j6kjqdF14ovU1@mid.individual.net>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=17646&group=comp.lang.javascript#17646

  copy link   Newsgroups: comp.lang.javascript
Path: i2pn2.org!i2pn.org!news.swapon.de!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail
From: usenet@arnowelzel.de (Arno Welzel)
Newsgroups: comp.lang.javascript
Subject: Re: How come I don't get a box when I add an eventlistener?
Date: Thu, 10 Feb 2022 14:55:25 +0100
Lines: 19
Message-ID: <j6kjqdF14ovU1@mid.individual.net>
References: <24969684-2577-4eb1-b316-0b490769f615n@googlegroups.com>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-Trace: individual.net 4QWaqHfNVlFk/ueCWVzYEQ/HqG9oigNlyDYP8J4d0bUDESyYUz
Cancel-Lock: sha1:frELGJ++FE/kX78txASOfqBnxR0=
Content-Language: de-DE
In-Reply-To: <24969684-2577-4eb1-b316-0b490769f615n@googlegroups.com>
 by: Arno Welzel - Thu, 10 Feb 2022 13:55 UTC

chad altenburg:

> When I comment out the event listener code, I get a black box. However, when I don't, I don't get a black box. Why?

Because you have an error in your code. You write:

addEventListener();

However this function does not exist. I assume it should be:

addListener();

Next time please check the web developer console of your browser (F12)
and select "Console" to see error messages caused by your script.

--
Arno Welzel
https://arnowelzel.de

Re: How come I don't get a box when I add an eventlistener?

<2905cd2e-2dd1-470d-96d9-bb3ac82b45aan@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=17647&group=comp.lang.javascript#17647

  copy link   Newsgroups: comp.lang.javascript
X-Received: by 2002:a05:6214:212c:: with SMTP id r12mr6132051qvc.125.1644517128093;
Thu, 10 Feb 2022 10:18:48 -0800 (PST)
X-Received: by 2002:a9d:720d:: with SMTP id u13mr3214197otj.210.1644517127794;
Thu, 10 Feb 2022 10:18:47 -0800 (PST)
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!proxad.net!feeder1-2.proxad.net!209.85.160.216.MISMATCH!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.javascript
Date: Thu, 10 Feb 2022 10:18:47 -0800 (PST)
In-Reply-To: <87y22jlnaa.fsf@bsb.me.uk>
Injection-Info: google-groups.googlegroups.com; posting-host=24.7.38.20; posting-account=kTs1ygoAAACgG1TSoyECpovEyy-V6_8b
NNTP-Posting-Host: 24.7.38.20
References: <24969684-2577-4eb1-b316-0b490769f615n@googlegroups.com> <87y22jlnaa.fsf@bsb.me.uk>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <2905cd2e-2dd1-470d-96d9-bb3ac82b45aan@googlegroups.com>
Subject: Re: How come I don't get a box when I add an eventlistener?
From: cdalten@gmail.com (chad altenburg)
Injection-Date: Thu, 10 Feb 2022 18:18:48 +0000
Content-Type: text/plain; charset="UTF-8"
 by: chad altenburg - Thu, 10 Feb 2022 18:18 UTC

On Wednesday, February 9, 2022 at 1:53:46 PM UTC-8, Ben Bacarisse wrote:
> chad altenburg <cda...@gmail.com> writes:
>
> > When I comment out the event listener code, I get a black
> > box. However, when I don't, I don't get a black box. Why?
> Because there is a syntax error. The code can't run if the interpreter
> can't make sense of what you've written.
> > <html>
> > <canvas id = "canvas"></canvas>
> > <script>
> > var x = 20;
> > var y = 20;
> >
> > var canvas = document.getElementById('canvas');
> > var ctx = canvas.getContext('2d');
> > var i =0;
> >
> > addEventListener();
> Remove this as well. It will cause a run-time error.
> > function drawSnake()
> > {
> > for (i = 0; i < 20; i++) {
> > ctx.fillRect(x, y, 25, 25);
> > }
> > }
> >
> > drawSnake();
> >
> > function addListener() {
> > document.addEventListener('keydown', function(e)) {
> That second ) is in the wrong place.
> > switch(e.keycode) {
> > case 37: break; //left
> > case 38: break; //up
> > case 39: break; //right
> > }
> > }
> It should be here (along with a semicolon)..
> > }
> >
> >
> >
> > //ctx.fillRect(50, 100, 150, 150);
> > // }
> >
> > </script>
> > </html>
> --

And I still don't get why it's not detecting the right arrow key...

<html>
<canvas id = "canvas" width = "400" height="400"></canvas>
<script>
var x = 20;
var y = 20;

var canvas = document.getElementById('canvas');
var ctx = canvas.getContext('2d');
var i =0;

//addEventListener();

function main() {
drawSnake();
addEventListener();
}

main();

function drawSnake()
{
for (i = 0; i < 20; i++) {
ctx.fillRect(x, y, 25, 25);
}
}

function addListener() {
document.addEventListener('keydown', function(e){
switch(e.keyCode) {
case 37: break; //left
case 38:
//ctx.fillRect(x, y + 10, 25, 25)
break; //up
case 39:
ctx.fillRect(x + 10, y, 25, 25);
alert("key moved right");
break; //right
case 40: break;
}

});

}



//ctx.fillRect(50, 100, 150, 150);
// }

</script>
</html>

Re: How come I don't get a box when I add an eventlistener?

<874k56ld1j.fsf@bsb.me.uk>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=17648&group=comp.lang.javascript#17648

  copy link   Newsgroups: comp.lang.javascript
Path: i2pn2.org!i2pn.org!eternal-september.org!reader02.eternal-september.org!.POSTED!not-for-mail
From: ben.usenet@bsb.me.uk (Ben Bacarisse)
Newsgroups: comp.lang.javascript
Subject: Re: How come I don't get a box when I add an eventlistener?
Date: Thu, 10 Feb 2022 19:47:04 +0000
Organization: A noiseless patient Spider
Lines: 115
Message-ID: <874k56ld1j.fsf@bsb.me.uk>
References: <24969684-2577-4eb1-b316-0b490769f615n@googlegroups.com>
<87y22jlnaa.fsf@bsb.me.uk>
<2905cd2e-2dd1-470d-96d9-bb3ac82b45aan@googlegroups.com>
Mime-Version: 1.0
Content-Type: text/plain
Injection-Info: reader02.eternal-september.org; posting-host="44ac79418358714662faf2c71e7e4cc5";
logging-data="12844"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1//ciyVifk9wo8/QS7eWnfBY+fUpHalYv8="
Cancel-Lock: sha1:z3dHzoY9vV20kdGvvgPucqvTolM=
sha1:uuBoY5Ezb5WZc82rAjArj//gx5c=
X-BSB-Auth: 1.f58fccb10e3a2e91875c.20220210194704GMT.874k56ld1j.fsf@bsb.me.uk
 by: Ben Bacarisse - Thu, 10 Feb 2022 19:47 UTC

chad altenburg <cdalten@gmail.com> writes:

> On Wednesday, February 9, 2022 at 1:53:46 PM UTC-8, Ben Bacarisse wrote:
>> chad altenburg <cda...@gmail.com> writes:
>>
>> > When I comment out the event listener code, I get a black
>> > box. However, when I don't, I don't get a black box. Why?
>> Because there is a syntax error. The code can't run if the interpreter
>> can't make sense of what you've written.
>> > <html>
>> > <canvas id = "canvas"></canvas>
>> > <script>
>> > var x = 20;
>> > var y = 20;
>> >
>> > var canvas = document.getElementById('canvas');
>> > var ctx = canvas.getContext('2d');
>> > var i =0;
>> >
>> > addEventListener();
>> Remove this as well. It will cause a run-time error.
>> > function drawSnake()
>> > {
>> > for (i = 0; i < 20; i++) {
>> > ctx.fillRect(x, y, 25, 25);
>> > }
>> > }
>> >
>> > drawSnake();
>> >
>> > function addListener() {
>> > document.addEventListener('keydown', function(e)) {
>> That second ) is in the wrong place.
>> > switch(e.keycode) {
>> > case 37: break; //left
>> > case 38: break; //up
>> > case 39: break; //right
>> > }
>> > }
>> It should be here (along with a semicolon)..
>> > }
>> >
>> >
>> >
>> > //ctx.fillRect(50, 100, 150, 150);
>> > // }
>> >
>> > </script>
>> > </html>
>> --
>
> And I still don't get why it's not detecting the right arrow key...

It still has errors, and you still have mixed up names.

You can't program like this. You need to learn to find this sort of
basic error for yourself or you will be posting here 20 times a day.
Find out how to get help for yourself. Do you know how to view the
console in your browser?

>
> <html>
> <canvas id = "canvas" width = "400" height="400"></canvas>
> <script>
> var x = 20;
> var y = 20;
>
> var canvas = document.getElementById('canvas');
> var ctx = canvas.getContext('2d');
> var i =0;
>
> //addEventListener();
>
> function main() {
> drawSnake();
> addEventListener();
> }
>
> main();
>
> function drawSnake()
> {
> for (i = 0; i < 20; i++) {
> ctx.fillRect(x, y, 25, 25);
> }
> }
>
> function addListener() {
> document.addEventListener('keydown', function(e){
> switch(e.keyCode) {
> case 37: break; //left
> case 38:
> //ctx.fillRect(x, y + 10, 25, 25)
> break; //up
> case 39:
> ctx.fillRect(x + 10, y, 25, 25);
> alert("key moved right");
> break; //right
> case 40: break;
> }
>
> });
>
> }
>
>
>
> //ctx.fillRect(50, 100, 150, 150);
> // }
>
> </script>
> </html>

--
Ben.

Re: How come I don't get a box when I add an eventlistener?

<22667556-c001-4c2d-8c94-69c5eeb985f2n@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=17649&group=comp.lang.javascript#17649

  copy link   Newsgroups: comp.lang.javascript
X-Received: by 2002:a05:6214:b6b:: with SMTP id ey11mr7393057qvb.82.1644549233443;
Thu, 10 Feb 2022 19:13:53 -0800 (PST)
X-Received: by 2002:a9d:72d6:: with SMTP id d22mr3816659otk.237.1644549233090;
Thu, 10 Feb 2022 19:13:53 -0800 (PST)
Path: i2pn2.org!i2pn.org!weretis.net!feeder6.news.weretis.net!news.misty.com!border2.nntp.dca1.giganews.com!nntp.giganews.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.javascript
Date: Thu, 10 Feb 2022 19:13:52 -0800 (PST)
In-Reply-To: <874k56ld1j.fsf@bsb.me.uk>
Injection-Info: google-groups.googlegroups.com; posting-host=2607:fb90:9c8f:3a3f:0:31:d293:2d01;
posting-account=kTs1ygoAAACgG1TSoyECpovEyy-V6_8b
NNTP-Posting-Host: 2607:fb90:9c8f:3a3f:0:31:d293:2d01
References: <24969684-2577-4eb1-b316-0b490769f615n@googlegroups.com>
<87y22jlnaa.fsf@bsb.me.uk> <2905cd2e-2dd1-470d-96d9-bb3ac82b45aan@googlegroups.com>
<874k56ld1j.fsf@bsb.me.uk>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <22667556-c001-4c2d-8c94-69c5eeb985f2n@googlegroups.com>
Subject: Re: How come I don't get a box when I add an eventlistener?
From: cdalten@gmail.com (chad altenburg)
Injection-Date: Fri, 11 Feb 2022 03:13:53 +0000
Content-Type: text/plain; charset="UTF-8"
Lines: 115
 by: chad altenburg - Fri, 11 Feb 2022 03:13 UTC

On Thursday, February 10, 2022 at 11:47:17 AM UTC-8, Ben Bacarisse wrote:
> chad altenburg <cda...@gmail.com> writes:
>
> > On Wednesday, February 9, 2022 at 1:53:46 PM UTC-8, Ben Bacarisse wrote:
> >> chad altenburg <cda...@gmail.com> writes:
> >>
> >> > When I comment out the event listener code, I get a black
> >> > box. However, when I don't, I don't get a black box. Why?
> >> Because there is a syntax error. The code can't run if the interpreter
> >> can't make sense of what you've written.
> >> > <html>
> >> > <canvas id = "canvas"></canvas>
> >> > <script>
> >> > var x = 20;
> >> > var y = 20;
> >> >
> >> > var canvas = document.getElementById('canvas');
> >> > var ctx = canvas.getContext('2d');
> >> > var i =0;
> >> >
> >> > addEventListener();
> >> Remove this as well. It will cause a run-time error.
> >> > function drawSnake()
> >> > {
> >> > for (i = 0; i < 20; i++) {
> >> > ctx.fillRect(x, y, 25, 25);
> >> > }
> >> > }
> >> >
> >> > drawSnake();
> >> >
> >> > function addListener() {
> >> > document.addEventListener('keydown', function(e)) {
> >> That second ) is in the wrong place.
> >> > switch(e.keycode) {
> >> > case 37: break; //left
> >> > case 38: break; //up
> >> > case 39: break; //right
> >> > }
> >> > }
> >> It should be here (along with a semicolon)..
> >> > }
> >> >
> >> >
> >> >
> >> > //ctx.fillRect(50, 100, 150, 150);
> >> > // }
> >> >
> >> > </script>
> >> > </html>
> >> --
> >
> > And I still don't get why it's not detecting the right arrow key...
> It still has errors, and you still have mixed up names.
>
> You can't program like this. You need to learn to find this sort of
> basic error for yourself or you will be posting here 20 times a day.
> Find out how to get help for yourself. Do you know how to view the
> console in your browser?
> >

With all due respect, go fuck yourself.

> > <html>
> > <canvas id = "canvas" width = "400" height="400"></canvas>
> > <script>
> > var x = 20;
> > var y = 20;
> >
> > var canvas = document.getElementById('canvas');
> > var ctx = canvas.getContext('2d');
> > var i =0;
> >
> > //addEventListener();
> >
> > function main() {
> > drawSnake();
> > addEventListener();
> > }
> >
> > main();
> >
> > function drawSnake()
> > {
> > for (i = 0; i < 20; i++) {
> > ctx.fillRect(x, y, 25, 25);
> > }
> > }
> >
> > function addListener() {
> > document.addEventListener('keydown', function(e){
> > switch(e.keyCode) {
> > case 37: break; //left
> > case 38:
> > //ctx.fillRect(x, y + 10, 25, 25)
> > break; //up
> > case 39:
> > ctx.fillRect(x + 10, y, 25, 25);
> > alert("key moved right");
> > break; //right
> > case 40: break;
> > }
> >
> > });
> >
> > }
> >
> >
> >
> > //ctx.fillRect(50, 100, 150, 150);
> > // }
> >
> > </script>
> > </html>
> --

Re: How come I don't get a box when I add an eventlistener?

<su66se$9fj$1@dont-email.me>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=17650&group=comp.lang.javascript#17650

  copy link   Newsgroups: comp.lang.javascript
Path: i2pn2.org!i2pn.org!eternal-september.org!reader02.eternal-september.org!.POSTED!not-for-mail
From: tnp@invalid.invalid (The Natural Philosopher)
Newsgroups: comp.lang.javascript
Subject: Re: How come I don't get a box when I add an eventlistener?
Date: Fri, 11 Feb 2022 17:37:18 +0000
Organization: A little, after lunch
Lines: 56
Message-ID: <su66se$9fj$1@dont-email.me>
References: <24969684-2577-4eb1-b316-0b490769f615n@googlegroups.com>
<87y22jlnaa.fsf@bsb.me.uk>
<2905cd2e-2dd1-470d-96d9-bb3ac82b45aan@googlegroups.com>
<874k56ld1j.fsf@bsb.me.uk>
<22667556-c001-4c2d-8c94-69c5eeb985f2n@googlegroups.com>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Fri, 11 Feb 2022 17:37:18 -0000 (UTC)
Injection-Info: reader02.eternal-september.org; posting-host="dbe5d12238c24e93695365bf5f583a31";
logging-data="9715"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/tHvtRsaoFGoGyPKb7FbvcGwGx76vphG8="
User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101
Thunderbird/91.5.0
Cancel-Lock: sha1:nPXMWZYbJRwgFm9Y/0OzhTB+BrU=
In-Reply-To: <22667556-c001-4c2d-8c94-69c5eeb985f2n@googlegroups.com>
Content-Language: en-GB
 by: The Natural Philosop - Fri, 11 Feb 2022 17:37 UTC

On 11/02/2022 03:13, chad altenburg wrote:
> On Thursday, February 10, 2022 at 11:47:17 AM UTC-8, Ben Bacarisse wrote:

>>> And I still don't get why it's not detecting the right arrow key...
>> It still has errors, and you still have mixed up names.
>>
>> You can't program like this. You need to learn to find this sort of
>> basic error for yourself or you will be posting here 20 times a day.
>> Find out how to get help for yourself. Do you know how to view the
>> console in your browser?
>>>
>
> With all due respect, go fuck yourself.

OK, bye then. ...

Sort your own shit out and don't come here expecting a free tutorial :
No one here is paid to wipe your bottom.

Before the Internet I tried to teach myself to program in Assembler. I
wrote two pages and it simply wouldn't assemble. I copied a section from
the computer manual and that wouldn't assemble either. It took me *three
days* to guess that the example in the book had been typeset to look
nice with indented margins, and the assembler didn't like all the
indented margins I had religiously typed in.

Chad is being really quite polite: And factual. You have to learn to
crawl before you can walk, No one knows a better simpler or easier way
than that.

And whilst you may be able to get help from parents or teachers by the
simple expedient of "thcweaming and thcweaming until you are thick",
that sort of Violent Elizabeth Bott strategy simply has people reaching
for the kill file.

You appear to be unable to accept you aren't as smart as you thought you
were. Well hello...your next life lessons is not to shit on the hand
extended to help you.

He who shits in the road will meet flies on his return

--
If you tell a lie big enough and keep repeating it, people will
eventually come to believe it. The lie can be maintained only for such
time as the State can shield the people from the political, economic
and/or military consequences of the lie. It thus becomes vitally
important for the State to use all of its powers to repress dissent, for
the truth is the mortal enemy of the lie, and thus by extension, the
truth is the greatest enemy of the State.

Joseph Goebbels

Re: How come I don't get a box when I add an eventlistener?

<j6q7n5F3gqiU1@mid.individual.net>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=17651&group=comp.lang.javascript#17651

  copy link   Newsgroups: comp.lang.javascript
Path: i2pn2.org!i2pn.org!news.swapon.de!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail
From: usenet@arnowelzel.de (Arno Welzel)
Newsgroups: comp.lang.javascript
Subject: Re: How come I don't get a box when I add an eventlistener?
Date: Sat, 12 Feb 2022 18:05:42 +0100
Lines: 18
Message-ID: <j6q7n5F3gqiU1@mid.individual.net>
References: <24969684-2577-4eb1-b316-0b490769f615n@googlegroups.com>
<87y22jlnaa.fsf@bsb.me.uk>
<2905cd2e-2dd1-470d-96d9-bb3ac82b45aan@googlegroups.com>
<874k56ld1j.fsf@bsb.me.uk>
<22667556-c001-4c2d-8c94-69c5eeb985f2n@googlegroups.com>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-Trace: individual.net RanMNMxz1EwuFEU0xDxTdA+0CCpgJPTww2cQEVrrJU9mPeWwQH
Cancel-Lock: sha1:IKxXipywJVGtmTiK1C4K9suwxIQ=
Content-Language: de-DE
In-Reply-To: <22667556-c001-4c2d-8c94-69c5eeb985f2n@googlegroups.com>
 by: Arno Welzel - Sat, 12 Feb 2022 17:05 UTC

chad altenburg:

> On Thursday, February 10, 2022 at 11:47:17 AM UTC-8, Ben Bacarisse wrote:
[...]
>> You can't program like this. You need to learn to find this sort of
>> basic error for yourself or you will be posting here 20 times a day.
>> Find out how to get help for yourself. Do you know how to view the
>> console in your browser?
>>>
>
> With all due respect, go fuck yourself.

With all due respect - learn to use your tools!

--
Arno Welzel
https://arnowelzel.de


devel / comp.lang.javascript / How come I don't get a box when I add an eventlistener?

1
server_pubkey.txt

rocksolid light 0.9.81
clearnet tor