centerDiv.js
-
I agree with your final take, but why would you want to take frontend tickets if you can also do backend work?
Why not? Both needs skills to accomplish very well.
I'm not a frontend guy, but I like to mess with frontend stuff once in a while!
Flex is so fun!
Managing css masterfully is a skill in itself!
-
You don't just zoom?
Not on desktop
-
Wait until you see what they do to avoid learning SQL or Regex or JSON Pointer or XPath.
Wait until you see when they refuse to learn anything but SQL.
-
Not on desktop
You can't just hold control and scroll the mouse wheel?
-
You can't just hold control and scroll the mouse wheel?
I don't like reading big text. I'd rather have small text in a smaller area
-
Wait until you see when they refuse to learn anything but SQL.
Not something I've encountered.
-
You can wrap everything in unsafe and keep living dangerously!
Tsoding has created a few rules for writing Rust to make Rust "fun" to program in, and gave them the name of Crust.
Here is the rule set (it may change over time):
- Every function is unsafe.
- No references, only pointers.
- No cargo, build with rustc directly.
- No std, but libc is allowed.
- Only Edition 2021.
- All user structs and enums #[derive(Clone, Copy)].
- Everything is pub by default.
If you ever want to try this out for some ungodly reason, there's a GitHub repository with an example Main that shows how to use libc and other libraries (in the example, it's raylib), and with a Makefile showing how to compile your projects (remember we aren't using
cargo
). -
Tsoding has created a few rules for writing Rust to make Rust "fun" to program in, and gave them the name of Crust.
Here is the rule set (it may change over time):
- Every function is unsafe.
- No references, only pointers.
- No cargo, build with rustc directly.
- No std, but libc is allowed.
- Only Edition 2021.
- All user structs and enums #[derive(Clone, Copy)].
- Everything is pub by default.
If you ever want to try this out for some ungodly reason, there's a GitHub repository with an example Main that shows how to use libc and other libraries (in the example, it's raylib), and with a Makefile showing how to compile your projects (remember we aren't using
cargo
).Oh boy, now I can stop missing C++
-
Wait until you see what they do to avoid learning SQL or Regex or JSON Pointer or XPath.
TBF to regex, it's completely unreadable. I love the magic that can be done with it, but by God, it needs syntax highlighting. Something may do this, but I've never seen anything that does.
-
TBF to regex, it's completely unreadable. I love the magic that can be done with it, but by God, it needs syntax highlighting. Something may do this, but I've never seen anything that does.
You get used to it sooner than you'd think. There are libraries to convert between regex and English. Maybe it deserves a Unicode code block like APL?