7 Matching Annotations
- Jul 2023
-
guides.rubyonrails.org guides.rubyonrails.org
-
There, the module object stored in MyDecoration by the time the initializer runs becomes an ancestor of ActionController::Base, and reloading MyDecoration is pointless, it won't affect that ancestor chain.
-
- Oct 2021
-
guides.rubyonrails.org guides.rubyonrails.org
-
It is very important to understand that Ruby does not have a way to truly reload classes and modules in memory, and have that reflected everywhere they are already used. Technically, "unloading" the User class means removing the User constant via Object.send(:remove_const, "User").
-
- Aug 2021
-
stackoverflow.com stackoverflow.com
-
rewrite all onload iframes to javascript-inserted elements
javascript-inserted elements non-javascript-inserted elements
-
- Jun 2021
-
www.mutuallyhuman.com www.mutuallyhuman.com
-
For me the diagrams make it easier to talk about what the tests do without getting bogged down by how they do it.
Tags
- focus on what it should do, not on how it should do it (implementation details; software design)
- communication: focus on what is important
- too detailed
- communication: effective communication
- communication: use the right level of detail
- describe the what without getting bogged down by how (implementation details; too detailed)
Annotators
URL
-
- May 2021
-
www.freecodecamp.org www.freecodecamp.org
-
The element that we are going to apply the shape to with the shape-outside property to has to be floated. It also has to have a defined width and height. That's really important to know!
-
- Apr 2021
-
store.steampowered.com store.steampowered.com
-
that can be played by up to 10 local players - turnwise.
Description just said:
Party mode brings Versus mode and Marathon mode where up to 10 players can play together and compete locally.
Didn't mention whether it was at same time or in sequence. Hmm. Which is it? Video shows at least 2 can play at same time, so...
-
- Feb 2021
-
softwareengineering.stackexchange.com softwareengineering.stackexchange.com
-
The more important point comes from a program design perspective. Here, "programming to an interface" means focusing your design on what the code is doing, not how it does it. This is a vital distinction that pushes your design towards correctness and flexibility.
-