centerDiv.js
-
Raw spite. If you're upset enough to build a whole LinkedIn profile, you've already mentally moved on to the next company.
With me too, my employer has to start worrying once I put my current position into my linkedin profile.
-
Wait until you see what they do to avoid learning SQL or Regex or JSON Pointer or XPath.
Ugh, i've had to write some Selenium tests where I had to come up with weird ass Xpaths because not a single fucking element had an ID and over half would spawn something in a different div
-
I agree with your final take, but why would you want to take frontend tickets if you can also do backend work?
change of pace, mostly. I also like the challenge. when I'm not challenged at work I lose interest easily and can spiral into not doing my job. so it's nice to break up a long running project with some new bugs or tasks that are unrelated.
-
You misspelled nesting tables
My man right here. Y'all ever want to code some HTML emails? Nested tables as far as the eye can see!
-
Obligatory https://justfuckingusehtml.com/
I'm totally going to bookmark this & also I'm going to insert this as well.<br>
https://www.htmlhobbyist.com/ -
I had to resize my browser window in order to read that how dare you not simply read my mind and select my preferred column width instead
99% of users, probably
You don't just zoom?
-
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?