Timeline for Print a 10 by 10 grid of asterisks
Current License: CC BY-SA 3.0
24 events
| when toggle format | what | by | license | comment | |
|---|---|---|---|---|---|
| Jun 17, 2020 at 9:04 | history | edited | Community Bot |
Commonmark migration
|
|
| Apr 27, 2017 at 13:48 | comment | added | YSC | @hdˑ I agree: valid != working. And who doesn't hate to hear "but it works"? This is a working solution, not a valid one. | |
| Apr 27, 2017 at 9:53 | comment | added | ʰᵈˑ | @YSC See codegolf.stackexchange.com/questions/88653/… - what are the stricter ones? Works with the latest version of Google Chrome / Mozilla Firefox / Edge | |
| Apr 27, 2017 at 9:50 | comment | added | YSC | This is not valid HTML&CSS. It happens to work with major browser but not with stricter ones. | |
| Apr 13, 2017 at 12:39 | history | edited | Community Bot |
replaced http://codegolf.stackexchange.com/ with https://codegolf.stackexchange.com/
|
|
| Feb 6, 2017 at 14:47 | comment | added | 12Me21 |
you can leave off the last > I believe
|
|
| Oct 1, 2016 at 15:56 | comment | added | Erik the Outgolfer |
@ClementNerma This is a program, so code won't be added. If it was a snippet, it would indeed be invalid. (And, if it was valid as a snippet, it would have still been invalid, because snippets are forbidden by default.) Also, Code Golf isn't about writing valid, perfect code. It's about writing short code. And, if you didn't know, you can reply to one other person (not two) using @username. For me, it's @EriktheGolfer (I don't like it as @Eri, but it works).
|
|
| Sep 13, 2016 at 18:36 | comment | added | ClementNerma | What do you means ? | |
| Sep 13, 2016 at 12:47 | comment | added | Erik the Outgolfer | @ClementNerma Why should anyone put code after this? | |
| Aug 21, 2016 at 20:42 | comment | added | ClementNerma |
Your HTML code is not valid, if you put content after that it will be considered as a child of each <p> you written...
|
|
| Aug 18, 2016 at 13:10 | history | edited | hdˑ | CC BY-SA 3.0 |
edited body
|
| Aug 18, 2016 at 12:35 | history | edited | hdˑ | CC BY-SA 3.0 |
added 95 characters in body
|
| Aug 9, 2016 at 8:46 | comment | added | Ismael Miguel |
@hdˑ I don't think so, but, you can add it as an alternative below, and leave a comment on the question, asking about this. But, even if the new output is invalid, using p:after works and is 1 byte shorter.
|
|
| Aug 9, 2016 at 8:45 | comment | added | ʰᵈˑ | @IsmaelMiguel I'm a little new to code-golf submissions. Would the different output style cause this answer to become wrong? | |
| Aug 9, 2016 at 8:22 | comment | added | Ismael Miguel |
@hdˑ My method has a bug. Using it, you must remove 2 <p>. This is because <body> and <html> can have an :after pseudo-element, displaying a total of 12 lines. And yes, the styling of the output is different, but saving 2 + 6 bytes is a nice tradeoff.
|
|
| Aug 9, 2016 at 7:56 | comment | added | ʰᵈˑ | Thanks @IsmaelMiguel but this gives an output not equal to one that is expected - the left hand side isn't a straight edge. | |
| Aug 9, 2016 at 7:56 | history | edited | hdˑ | CC BY-SA 3.0 |
added 50 characters in body
|
| Aug 9, 2016 at 2:46 | comment | added | Ismael Miguel |
You can reduce 2 bytes by using :after instead of p::after. (that is valid CSS2 syntax)
|
|
| Aug 7, 2016 at 8:51 | comment | added | undergroundmonorail | @RichardHamilton valid css and working css are not the same thing | |
| Aug 5, 2016 at 16:37 | comment | added | Richard Hamilton | This is not valid css. You need the closing bracket! | |
| Aug 5, 2016 at 16:18 | history | edited | hdˑ | CC BY-SA 3.0 |
edited body
|
| Aug 5, 2016 at 16:16 | comment | added | Business Cat |
You can also get rid of the space after div::after, and you can leave out the closing brace after the content, if JSFiddle is any indication.
|
|
| Aug 5, 2016 at 13:28 | comment | added | manatwork |
You can leave out the self closing /s and write all tags in the same line. But better change the tags to <p> as it is shorter even if you need to add p{margin:0}.
|
|
| Aug 5, 2016 at 13:12 | history | answered | hdˑ | CC BY-SA 3.0 |