Forum comments in chronological order
Disclaimer: I am not responsible for what people (other than myself) write in the forums. Please report any abuse, such as insults, slander, spam and illegal material, and I will take appropriate actions. Don't feed the trolls.
Jag tar inget ansvar för det som skrivs i forumet, förutom mina egna inlägg. Vänligen rapportera alla inlägg som bryter mot reglerna, så ska jag se vad jag kan göra. Som regelbrott räknas till exempel förolämpningar, förtal, spam och olagligt material. Mata inte trålarna.
- Jun 2007
- Aug 2007
- Oct 2007
- Nov 2007
- Dec 2007
- Jan 2008
- Feb 2008
- Mar 2008
- Apr 2008
- May 2008
- Jun 2008
- Jul 2008
- Aug 2008
- Sep 2008
- Oct 2008
- Nov 2008
- Dec 2008
- Jan 2009
- Feb 2009
- Mar 2009
- Apr 2009
- May 2009
- Jun 2009
- Jul 2009
- Aug 2009
- Sep 2009
- Oct 2009
- Nov 2009
- Dec 2009
- Jan 2010
- Feb 2010
- Mar 2010
- Apr 2010
- May 2010
- Jun 2010
- Jul 2010
- Aug 2010
- Sep 2010
- Oct 2010
- Nov 2010
- Dec 2010
- Jan 2011
- Feb 2011
- Mar 2011
- Apr 2011
- May 2011
- Jun 2011
- Jul 2011
- Aug 2011
- Sep 2011
- Oct 2011
- Nov 2011
- Dec 2011
- Jan 2012
- Feb 2012
- Mar 2012
- Apr 2012
- May 2012
- Jun 2012
- Jul 2012
- Aug 2012
- Sep 2012
- Oct 2012
- Nov 2012
- Dec 2012
- Jan 2013
- Feb 2013
- Mar 2013
- Apr 2013
- May 2013
- Jun 2013
- Jul 2013
- Aug 2013
- Sep 2013
- Oct 2013
- Nov 2013
- Dec 2013
- Jan 2014
- Feb 2014
- Mar 2014
- Apr 2014
- May 2014
- Jun 2014
- Jul 2014
- Aug 2014
- Sep 2014
- Oct 2014
- Nov 2014
- Dec 2014
- Jan 2015
- Feb 2015
- Mar 2015
- Apr 2015
- May 2015
- Jun 2015
- Jul 2015
- Aug 2015
- Sep 2015
- Oct 2015
- Nov 2015
- Dec 2015
- Jan 2016
- Feb 2016
- Mar 2016
- Apr 2016
- May 2016
- Jun 2016
- Jul 2016
- Aug 2016
- Sep 2016
- Oct 2016
- Nov 2016
- Dec 2016
- Jan 2017
- Feb 2017
- Mar 2017
- Apr 2017
- May 2017
- Jun 2017
- Jul 2017
- Aug 2017
- Sep 2017
- Oct 2017
- Nov 2017
- Dec 2017
- Jan 2018
- Feb 2018
- Mar 2018
- Apr 2018
- May 2018
- Jun 2018
- Jul 2018
- Aug 2018
- Sep 2018
- Oct 2018
- Nov 2018
- Dec 2018
- Jan 2019
- Feb 2019
- Mar 2019
- Apr 2019
- May 2019
- Jun 2019
- Jul 2019
- Aug 2019
- Sep 2019
- Oct 2019
- Nov 2019
- Dec 2019
- Jan 2020
- Feb 2020
- Mar 2020
- Apr 2020
- May 2020
- Jun 2020
- Jul 2020
- Aug 2020
- Sep 2020
- Oct 2020
- Nov 2020
- Dec 2020
- Jan 2021
- Feb 2021
- Mar 2021
- Apr 2021
- May 2021
- Jun 2021
- Jul 2021
- Aug 2021
- Sep 2021
- Oct 2021
- Nov 2021
- Dec 2021
- Jan 2022
- Feb 2022
- Mar 2022
- Apr 2022
- May 2022
- Jun 2022
- Jul 2022
- Aug 2022
- Sep 2022
- Oct 2022
- Nov 2022
- Dec 2022
- Jan 2023
- Feb 2023
- Mar 2023
- Apr 2023
- May 2023
- Jun 2023
- Jul 2023
- Aug 2023
- Sep 2023
- Oct 2023
- Nov 2023
- Dec 2023
- Jan 2024
- Feb 2024
- Mar 2024
- Apr 2024
- May 2024
- Jun 2024
- Jul 2024
- Aug 2024
- Sep 2024
- Oct 2024
- Nov 2024
Oct 2020
Anonymous
Thu 1-Oct-2020 23:55
Thu 1-Oct-2020 23:55
Wow this page is used in our university programming course.
A case against syntax highlighting
Astara
Astara
Wed 7-Oct-2020 15:52
Astara
Wed 7-Oct-2020 15:52
Issues with your black & white view of syntax coloring:
* "do you rely on syntax highlighting?" Loaded question.
I learned programming long before color terminals, so it is obvious that I don't rely on it, but I do use syntax highlighting and prefer working with a color scheme, usually of my own design.
When you are _writing_ code, you are converting from design (content) to a semantic+syntactic form that communicates your idea to the computer. You might as well ask if you rely on ascii text to program rather than programming in binary.
At the point of writing, your first job is to create a syntactically valid representation of your content, followed by a semantically valid format. The color significantly aids in writing syntactically valid code, and to a lesser extent, semantically valid code. It doesn't help create content, but aids in weeding out mistakes in converting from 'design' or content to some format the machine will understand.
That's it and that's why it was created -- it may be used for other things but its primary benefit is in ensuring your syntactic and semantic translation is valid.
It immediately helps weed out many errors that would otherwise require at least, one roundtrip through the compiler (perhaps many depending on the compiler and how well it recovers from errors and can continue useful notations for other problems.
Then you go into created situations where color can get in the way. In regards to that, if you don't intimately know the coloring scheme, it will just be noise.
You compare code which has strict syntactic and semantic rules with written language which is very lax and has never been written primarily for the benefit of a computer need to understand and parse the code. For that matter, the computer usually won't see the coloring -- so it color is usually not written to help comprehension except in teaching situations.
Syntax highlighting is ONLY meant for experienced programmers who know its meaning and place. Newbies won't know your color scheme, neither will other those trying to read it.
If syntax highlighting doesn't help you in writing code. Don't use it.
If your eyes automatically detect a mismatched number of syntax elements, you don't need it. But few people have that talent, anymore than they have the talent to program in binary.
They rely on crutches to speed up translation into machine code.
FWIW, looking at code in a foreign color scheme can be disconcerting as well as slowing someone else down.
That's why you really need to find your own color style that assists you.
The same can be said for code format, spaces v. tabs, and using invisible characters vs. brackets as syntax elements.
Thinking that 1 format is best for everyone is simply naive. Forcing an unfamiliar format on someone will lower their productivity and increase errors in the code as they are constantly needing to devote some part of their brain to translate into a foreign format.
Of note -- those who don't understand and speak your own language, natively, often are are perceived as less intelligent (a bit more slow) -- because their brain always has to devote some of its bandwidth to translation.
So the best coding method is one that can be adjusted to the programmers own style -- *programatically*.
Cheers!
* "do you rely on syntax highlighting?" Loaded question.
I learned programming long before color terminals, so it is obvious that I don't rely on it, but I do use syntax highlighting and prefer working with a color scheme, usually of my own design.
When you are _writing_ code, you are converting from design (content) to a semantic+syntactic form that communicates your idea to the computer. You might as well ask if you rely on ascii text to program rather than programming in binary.
At the point of writing, your first job is to create a syntactically valid representation of your content, followed by a semantically valid format. The color significantly aids in writing syntactically valid code, and to a lesser extent, semantically valid code. It doesn't help create content, but aids in weeding out mistakes in converting from 'design' or content to some format the machine will understand.
That's it and that's why it was created -- it may be used for other things but its primary benefit is in ensuring your syntactic and semantic translation is valid.
It immediately helps weed out many errors that would otherwise require at least, one roundtrip through the compiler (perhaps many depending on the compiler and how well it recovers from errors and can continue useful notations for other problems.
Then you go into created situations where color can get in the way. In regards to that, if you don't intimately know the coloring scheme, it will just be noise.
You compare code which has strict syntactic and semantic rules with written language which is very lax and has never been written primarily for the benefit of a computer need to understand and parse the code. For that matter, the computer usually won't see the coloring -- so it color is usually not written to help comprehension except in teaching situations.
Syntax highlighting is ONLY meant for experienced programmers who know its meaning and place. Newbies won't know your color scheme, neither will other those trying to read it.
If syntax highlighting doesn't help you in writing code. Don't use it.
If your eyes automatically detect a mismatched number of syntax elements, you don't need it. But few people have that talent, anymore than they have the talent to program in binary.
They rely on crutches to speed up translation into machine code.
FWIW, looking at code in a foreign color scheme can be disconcerting as well as slowing someone else down.
That's why you really need to find your own color style that assists you.
The same can be said for code format, spaces v. tabs, and using invisible characters vs. brackets as syntax elements.
Thinking that 1 format is best for everyone is simply naive. Forcing an unfamiliar format on someone will lower their productivity and increase errors in the code as they are constantly needing to devote some part of their brain to translate into a foreign format.
Of note -- those who don't understand and speak your own language, natively, often are are perceived as less intelligent (a bit more slow) -- because their brain always has to devote some of its bandwidth to translation.
So the best coding method is one that can be adjusted to the programmers own style -- *programatically*.
Cheers!
Anonymous
Tue 13-Oct-2020 03:01
Tue 13-Oct-2020 03:01
the author should have drawn schematic more legibily using some circuit drawing software instead of this lousy ascii patterns
arun -
India
This minimalistic way of drawing goes with the minimal 'computer' approach. personnaly, I've really liked this ascii art. This a one more proof that the design is minimal AND powerful.arun -
India
Anonymous
Tue 13-Oct-2020 03:45
Tue 13-Oct-2020 03:45
This is really incredible !
Most impressive is .. 1K of ram. Not enough for a video buffer.
Amazing work !
Most impressive is .. 1K of ram. Not enough for a video buffer.
Amazing work !
triangel3532
marcel schleier
Tue 13-Oct-2020 18:00
marcel schleier
Tue 13-Oct-2020 18:00
mmmmhhh... outaphonY?
noprob<=0> useaolskoolasthaisnonototherSCHOOLY, BABY!
bum.mmmmBum-bUkKmMmM...bum-di-didi-duDUM ...öööhhmmm: PENG? YEP: PENG<!
ok?
texzZdrum/triangle3532
noprob<=0> useaolskoolasthaisnonototherSCHOOLY, BABY!
bum.mmmmBum-bUkKmMmM...bum-di-didi-duDUM ...öööhhmmm: PENG? YEP: PENG<!
ok?
texzZdrum/triangle3532
Anonymous
Tue 13-Oct-2020 22:11
Tue 13-Oct-2020 22:11
is this troll ..vik
A case against syntax highlighting
ingvar
Fri 16-Oct-2020 17:37
Fri 16-Oct-2020 17:37
lft wrote:
My opinion is that having one person's lines printed in a different colour would distract the reader from everything else in the book. However, it is not equivalent to syntax highlighting, because it doesn't emphasize information that is already there syntactically. It would be a case of semantic highlighting, and in most cases a completely useless one, although there might be cases where it clarifies who is speaking. The same effect is used by Terry Pratchett in the Discworld novels, where Death speaks in small capital letters.Not only using smallcaps, but also (IIRC, and it's been a while since I referenced the source material) without speech markers, thus conveying the fact that Death doesn't so much speak, as eality shapes itself so that Death has spoken.
Anonymous
Thu 22-Oct-2020 10:37
Thu 22-Oct-2020 10:37
Is there any plans for a swedish translation of the library?
Anonymous
Mon 26-Oct-2020 00:03
Mon 26-Oct-2020 00:03
The world NEED Autosokoban as an app. Every good thing must last forever!
(ClockworkBastard)
(ClockworkBastard)
lft
Linus Åkesson
Tue 27-Oct-2020 14:35
Linus Åkesson
Tue 27-Oct-2020 14:35
Is there any plans for a swedish translation of the library?
Not at the moment, because I don't want to lock down the design of the library too early, and I don't want to coordinate major design changes across multiple versions.
But feel free to make a translation of the current version, if you like! And make sure to check out the German library by Mikawa.
The Symbolic Links Virtual Machine
Anonymous
Tue 27-Oct-2020 18:59
Tue 27-Oct-2020 18:59
Can you edit the sorce code to modify the b/s number correctly?
Anonymous
Sat 31-Oct-2020 17:35
Sat 31-Oct-2020 17:35
hey linus... how are you? miss you!
if ya send me your adress... micha@fischfieber.info
than can i send you me little package. it is about futuresound and saving the world and stuff, you know!
would send you mobilnumber, too
mean, if you maybe want to have it?
...than we could talk. i would be happy to talk to you!
how about you?
michael
if ya send me your adress... micha@fischfieber.info
than can i send you me little package. it is about futuresound and saving the world and stuff, you know!
would send you mobilnumber, too
mean, if you maybe want to have it?
...than we could talk. i would be happy to talk to you!
how about you?
michael