It's very much not the same as the 1995 original, no, although it's clearly been trained on images from the various iterations
It's very much not the same as the 1995 original, no, although it's clearly been trained on images from the various iterations
"Oh, a heatwave at last!" "Wow it's great to have good weather" "Ok I'm sick of being sweaty now"
"Amazing! Snow day!" "Everywhere's so pretty outside" "Getting to the shops is kind of annoying"
"Oh, a heatwave at last!" "Wow it's great to have good weather" "Ok I'm sick of being sweaty now"
"Amazing! Snow day!" "Everywhere's so pretty outside" "Getting to the shops is kind of annoying"
> CSS.escape('123') // => "\31 23"
But actually trying to use this in practice makes your Javascript feel as clunky as your CSS is.
> CSS.escape('123') // => "\31 23"
But actually trying to use this in practice makes your Javascript feel as clunky as your CSS is.
[id="123"] {
color: red;
}
[id="123"] {
color: red;
}
<div id="123">Hello, world!</div>
<style>
#\31 23 { color: green }
</style>
<div id="123">Hello, world!</div>
<style>
#\31 23 { color: green }
</style>
#\00003123 { color: green } /* YES */
#\31 23 { color: green } /* YES */
#\00003123 { color: green } /* YES */
#\31 23 { color: green } /* YES */
But if you try escaping this way, you'll find you still aren't all of the way there yet.
#\3123 { color: red } /* No */
But if you try escaping this way, you'll find you still aren't all of the way there yet.
#\3123 { color: red } /* No */
#\123 { color: red } /* No */
#"123" { color: red } /* No */
#\123 { color: red } /* No */
#"123" { color: red } /* No */