- Apr 2021
-
www.elastic.co www.elastic.co
-
Check it out!
-
-
-
Read more FOSS
Tags
Annotators
URL
-
-
github.com github.com
-
I don't believe the sprockets and sprockets-rails maintainers (actually it's up to the Rails maintainers, see rails/rails#28430) currently consider it broken. (I am not a committer/maintainer on any of those projects). So there is no point in "waiting for someone else to fix" it; that is not going to happen (unless you can change their minds). You just need to figure out the right way to use sprockets 4 with rails as it is.
Tags
- whose responsibility is it?
- whether maintainer or contributor should/will implement something
- waiting for someone else to fix it: that is not going to happen
- at the mercy of maintainer
- frustrating when maintainers stubbornly stick to opinions/principles/decisions and won't change despite popular user support
Annotators
URL
-
-
queue.acm.org queue.acm.org
-
-
www.youtube.com www.youtube.com
-
-
ijs.to ijs.to
-
-
-
Suggested reading by the OERxDomains session: Taking Care by Lee Skallerup Bessette and Susannah McGowan
-
-
unix.stackexchange.com unix.stackexchange.com
-
I just wanted to point out that the syntax is not supported by the POSIX standard and thus won't universally work in /bin/sh scripts (many people erroneously use bash syntax in /bin/sh scripts)
-
-
www.reddit.com www.reddit.com
-
How to Take Smart Notes
book to read
-
-
en.wikipedia.org en.wikipedia.org
-
The use of U+212B 'Angstrom sign', which was encoded due to round-trip mapping compatibility with an East-Asian character encoding, is discouraged, and the preferred representation is U+00C5 'capital letter A with ring above', which has the same glyph.
Is there a difference in semantic meaning between the two? And if so, what is it? 
-
-
stackoverflow.com stackoverflow.com
-
They cause completely different behavior for auto margins. If you have a fixed element for example with top/bottom/left/right set to zero and you stick an image in it you want to center wrapped in a div, then in order to center that div with auto margins, you MUST specify a CSS width/height, because specifying an HTML attribute width/height has no effect and the margins remain zero. I have no idea why the difference exists.
-
Whether to specify in html or css is best judged on individual circumstances. A large number of images of the same size would probably be best served with css, a single image with html. That said, if you are specifying other styles for the image (border colour, style or radius, float etc) it would make sense to add width & height to the css.
-
I think that depends on HOW you are using the attribute. If you're styling multiple images within a list or table so that they lay out correctly, then put the width/height in your CSS to avoid the need to add another set of tags to every image in the list. Use something like ul.gallery img: { width:117px; } On the other hand, if you are inserting an image into some content and it needs to be a certain size to make the document flow properly, then put it in the HTML. That way you don't have to muck up the style sheet for each different image in the html. And this way, if you change the content to a different image, of remove the image all together, you don't have remnants of code scattered in your CSS to remember to delete.
-
If anything it thwarts separation of concerns to a degree.
-
(Yes, I realize from a technical, end-user perspective this really doesn't matter.)
The word "technical" in this sentence doesn't seem to belong or to clarify anything. I think it would be clearer without it.
But I think I understand what he's saying, which is that technical details don't matter to the end user. They only know/see/care if it works or not.
-
-
www.merriam-webster.com www.merriam-webster.com
-
https://www.merriam-webster.com/thesaurus/legitimize lists validate but https://www.merriam-webster.com/thesaurus/validate doesn't list legitimize
-
-
www.metacritic.com www.metacritic.com
-
as it stands, this only goes to highlight what a miracle, what a classic for the ages Actraiser really is, whilst confirming itself as, unfortunately, one to avoid.
-
-
www.metacritic.com www.metacritic.com
-
Game looks great, ignore the 1 score review. Disgruntle co worker, perhaps? Perhaps a jealous fellow pupil... When all ither reviews are 7 or more and there's one review with a 1 score and a novel saying just why they thinks... you know something's not quite right. Hopefully this will go some way to normalising the score.
-
-
www.kickstarter.com www.kickstarter.com
-
We are are continuing our commitment to creating our games that are free and widely accessible anyone that is curious by making our game files available under Creative Commons license BY–NC–SA 4.0. That means we will continue offering a full, free print-and-play kit for Pax Pamir, and later this campaign, John Company! Anyone can use, remix, and share the game, so long as they do not use it for commercial purposes.
-
-
en.wikipedia.org en.wikipedia.org
-
Historical negationism,[1][2] also called denialism, is falsification[3][4] or distortion of the historical record. It should not be conflated with historical revisionism, a broader term that extends to newly evidenced, fairly reasoned academic reinterpretations of history.
-
-
en.wikipedia.org en.wikipedia.org
-
the term historical revisionism identifies the re-interpretation of a historical account.[1] It usually involves challenging the orthodox (established, accepted or traditional) views held by professional scholars about an historical event or time-span or phenomenon, introducing contrary evidence, or reinterpreting the motivations and decisions of the people involved.
-
-
stackoverflow.com stackoverflow.com
-
What is the equivalent of unbuffer program on Windows?
-
-
en.wikipedia.org en.wikipedia.org
-
english.meta.stackexchange.com english.meta.stackexchange.com
-
yes, the excessive pleasantries are purely for irony/humor, i would normally get straight to the point
-
-
simplicable.com simplicable.com
-
Dry humor is a delivery technique. As such, it shouldn't be confused with specific types of humor or with sarcasm. Sarcasm is delivered without humor because it's generally not funny but intended to mock or convey contempt. Dry humor pertains to something funny.
-
.mainContent {  -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none;  user-select: none; }
-
-
-
Of course you must not use plain-text passwords and place them directly into scripts. You even must not use telnet protocol at all. And avoid ftp, too. I needn’t say why you should use ssh, instead, need I? And you also must not plug your fingers into 220 voltage AC-output. Telnet was chosen for examples as less harmless alternative, because it’s getting rare in real life, but it can show all basic functions of expect-like tools, even abilities to send passwords. BUT, you can use “Expect and Co” to do other things, I just show the direction.
-
But in all this incongruous abundance you'll certanly find the links to expect It's just what is wanted: the tool, which is traditionally used to communicate automatically with interactive programs. And as it always occurs, there is unfortunately a little fault in it: expect needs the programming language TCL to be present. Nevertheless if it doesn't discourage you to install and learn one more, though very powerful language, then you can stop your search, because expect and TCL with or without TK have everything and even more for you to write scripts.
Tags
- pointing out gaps/downsides/cons in competition/alternatives
- scripting: expect
- why create/reinvent a new/different way to do it instead of reusing existing way?
- example: not how you would actually do it (does something wrong/bad/nonideal illustrating but we should overlook it because that's not the one thing the example is trying to illustrate/show us)
- unwanted dependency
Annotators
URL
-
-
en.wikipedia.org en.wikipedia.org
-
In many computing contexts, "TTY" has become the name for any text terminal, such as an external console device, a user dialing into the system on a modem on a serial port device, a printing or graphical computer terminal on a computer's serial port or the RS-232 port on a USB-to-RS-232 converter attached to a computer's USB port, or even a terminal emulator application in the window system using a pseudoterminal device.
It's still confusing, but this at least helps/tries to clarify.
-
-
stackoverflow.com stackoverflow.com
-
The question talks about stdout but the title mentions stdin. I think the title is wrong.
Refers to old title, as seen here
Trick an application into thinking its stdin is interactive
-
Too new to comment on the specific answer
So you think it's better to make people post a new "answer" (as if it were actually a distinct, unrelated answer) instead of just letting them comment on the answer that they actually want to comment on? Yuck.
-
-
docs.microsoft.com docs.microsoft.com
-
docs.lib.purdue.edu docs.lib.purdue.edu
-
While there is extensive broader critical discourse a
Critical discourse er kritisk. Det har jeg aldri tvilt på
-
Ja. Det funker faktisk
-
-
rival-games.com rival-games.com
-
-
boardgamegeek.com boardgamegeek.com
-
Around &Bigger the box is bigger: 75mm high instead of 45mm or so.That was the main reason for the name &Bigger. The first edition does fit in its box but very tight. Because the first factory used bigger cardboard than planned. They told me about this "upgrade" after they produced the game. The thicker tiles (about 2.5mm) did feel good for the game so the &Bigger edition has the same
-
-
www.metacritic.com www.metacritic.com
-
This game is severely underrated. I genuinely do not understand all of the negative backlash it gets. It's a solid scribblenauts game with a ton of replay value and a way to past the time with friends. It's not perfect, as the motion controls do drag it down slightly, and some of the minigames offered are less than great, however it does not deserve the overwhelming hate it gets. It's a solid title in the series.
-
I truly TRULY do not get the hate of this game. I am in my 40's. Played with 2 boys, 10 and 12. And we all had an amazing time playing the board game version of this for an hour. When it was over, the boys said, LETS PLAY IT AGAIN! The game is deep. Also has original sandbox mode with new levels. When they were about to leave, I surprise them by giving them the game as a gift. They were SO excited (and, I will simply buy another one for myself) I am simply BAFFLED at the hate and negativity for this game. Sure, a couple of the mini-games are not top notch. But there are many great ones within. At $40, solid deal. At $20 sale in most places, you have got to be kidding me. Steal it at that price. If you like Scribblenauts or are new to the Scribblenauts world, just buy it.
-
-
linusakesson.net linusakesson.net
-
This is hard because Apple does not want you to and a failed installation might render the ipad useless.
-
A "tty" neither has anything to do with rendering text.
-
But the shell, as part of its session leader duties, creates a new process group every time it launches a pipeline.
-
-
en.wikipedia.org en.wikipedia.org
-
A generic trademark, also known as a genericized trademark or proprietary eponym, is a trademark or brand name that, because of its popularity or significance, has become the generic term for, or synonymous with, a general class of products or services, usually against the intentions of the trademark's owner.
-
-
en.wikipedia.org en.wikipedia.org
-
Screen and Tmux are used to add a session context to a pseudoterminal, making for a much more robust and versatile solution. For example, each provides terminal persistence, allowing a user to disconnect from one computer and then connect later from another computer.
-
The terminal emulator process must also handle terminal control commands, e.g., for resizing the screen.
-
-
meta.stackexchange.com meta.stackexchange.com
-
No longer a free trial but free forever
-
We also know people need a good sized group and time to see the impact and value of a platform like Stack Overflow for Teams. Our previous 30 day free trial of our Basic tier wasn’t long enough. Now, Stack Overflow for Teams has a free tier for up to 50 users, forever.
Tags
- learn from your mistakes
- pricing: price guaranteed/locked in forever
- takes time to realize/see/recognize the value of something
- not enough time
- takes time to properly evaluate something
- pricing: free tier/plan
- pricing: changes to
- welcome/good change
- takes time to realize/see/recognize the impact of something
Annotators
URL
-
-
unix.stackexchange.com unix.stackexchange.com
-
2 out of 3 people in my household do not find it easy to understand. Maybe that is is not representative, but keep in mind that something you yourself understand (or in this case think you understand) always seems easy.
-
Notice the use of Enter key after backslash in the sed command.
-
Although echo "$@" prints the arguments with spaces in between, that's due to echo: it prints its arguments with spaces as separators.
due to echo adding the spaces, not due to the spaces already being present
Tag: not so much:
whose responsibility is it? but more: what handles this / where does it come from? (how exactly should I word it?)
-
I'm posting this question to help other users, it was not easy to find a useful answer on UNIX SE until I started to type this question.
Tags
- whose responsibility is it?
- important distinction
- hard to understand
- from different perspective/point of view
- easy to understand
- important point
- not
- just because _; doesn't mean _
- representative sample
- easy to miss / not notice (attention)
- annotation meta: may need new tag
- hard to search for
- easy to falsely assume
Annotators
URL
-
-
githooks.com githooks.com
-
Figure out which project(s) to use at the Bank.
-
-
github.com github.com
-
Rsync was originally written by Andrew Tridgell and is currently maintained by Wayne Davison.
-
-
medium.com medium.com
-
“Who cares? Let’s just go with the style-guide” — to which my response is that caring about the details is in the heart of much of our doings. Yes, this is not a major issue; def self.method is not even a code smell. Actually, that whole debate is on the verge of being incidental. Yet the learning process and the gained knowledge involved in understanding each choice is alone worth the discussion. Furthermore, I believe that the class << self notation echoes a better, more stable understanding of Ruby and Object Orientation in Ruby. Lastly, remember that style-guides may change or be altered (carefully, though!).
-
Yet, it certainly is important to make the proper choices when picking up style. Similarly to fashion, code style reflects our credo as developers, our values and philosophy. In order to make an informed decision, it’s mandatory to understand the issue at stake well. We all have defined class methods many times, but do we really know how do they work?
Tags
- understand the ramifications/effects/consequences
- readability
- reversible decisions
- can be changed
- try to do it the best possible way
- investing time to really understand something
- good point
- defending an idea
- I agree
- caring about the details
- intentional/well-considered decisions
- code style guide
Annotators
URL
-
-
boardgamegeek.com boardgamegeek.com
-
I strongly prefer this over Carcassonne. It plays faster (I don't want a tile laying game to go for more than 30 mins or so) and I happen to like the limited options. Carcassonne just gets on my nerves because I just don't view selecting between so many placement options to be that interesting. Obviously, YMMV. Ditto the previous statement, it's different than Carcassonne. And that's why I like it.
-
-
boardgamegeek.com boardgamegeek.com
-
What's the point of playing a game featuring fjords without also including vikings to pillage the other player's lands...I've actually developed two additional tiles for Fjords: The Dragon and The Marauding Hoard. Both do exactly that.(I've play tested them with a friend well over 40 times and we both agree that with an expanded set of Fjords tiles, these two greatly improve the game for us. I'll write the tiles up and post them to BGG... eventually)
-
-
store.steampowered.com store.steampowered.com
-
Micromachines always focused on local multiplayer, and the fun their eccentric races of small toy vehicles competing on tracks made with everyday objects; and all that is present.
-
-
store.steampowered.com store.steampowered.com
-
There's probably a thousand different directions you can go, but there just needs to be some kind of deeper hook to make this a full-fledged game.
-
-
www.freetaxusa.com www.freetaxusa.com
-
You'll usually only take this sales tax deduction if you live in a state that doesn't have state income tax, but it's available to everyone.
-
-
www.youtube.com www.youtube.com
-
New seeds:
- spread thin layer of soil over
- plant seed in top 1/4 inch of soil
seed-to-soil contact is important: recommends rolling on seeds
-
-
www.crabgrasslawn.com www.crabgrasslawn.com
-
If you’re installing new sod, you may use a light roller to make sure the pieces come into close contact with soil for the roots to grow and take hold.
-
There are times when you may need to flatten a bumpy lawn. For example, a golf course or a cricket pitch may be rolled to attain a smooth, level surface for playing. This is when a lawn roller may be needed.
-
-
machinelounge.com machinelounge.com
-
Use a leveling drag instead of a grass seed roller If you’re smoothing the lawn to cultivate it, a leveling drag may suffice.
-
1. Use Plywood (alternative when laying sod) One of the most inexpensive alternatives to lawn rollers is that sheet of plywood lying around your home. Plus, it’s amazingly simple to use. Follow these steps to help your sod bond with the soil…. Step 1: Place a 4 ft. by 8 ft. piece of plywood on your new lawn. Step 2: Walk over it to press your sod solidly into the soil. We suggest that you invite a friend, if possible, to walk alongside you. The plywood distributes the applied weight evenly and will have an impact similar to a commercial lawn roller.
-
-
answers.yahoo.com answers.yahoo.com
-
What can I use in place of a lawn roller?I raked in some bags of top soil and reseeded a very large section of my lawn (a walkway was moved) but the area is very soft and you sink in about 4 inches if you step there.Is there something I can use instead of a lawn roller? I don't have one...
-
-
www.nature.com www.nature.com
-
Future studies should be conducted to test if the decreased cortical brain activity after nimodipine is associated with improved working memory performance in patients with schizophrenia, particularly those who carry the risk-associated genotype.
Interesting hypothesis.
-
-
www.ijaweb.org www.ijaweb.org
-
However, long-term treatment may not be useful.
I wish they would expand on that. I may have to read the full text later to see what they mean.
Tags
Annotators
URL
-
-
cdnbbsr.s3waas.gov.in cdnbbsr.s3waas.gov.in
-
Welcome! Feel free to annotate the draft documents with your comments and feedback.
These annotations will be included in the recommendations made to the eCommittee on the draft.
To annotate the document:
- Highlight the text you would like to comment on
- Click 'Annotate'
- Sign in to save your annotation
- All annotations made are publicly viewable
- View a tutorial on how to use the tool here: https://youtu.be/e235JwmmEcQ
If you need any assistance, the question mark in the top right can take you through a quick guide on how to get started.
-
-
github.com github.com
-
Read the code! No, really. I wrote this code to be read.
-
-
store.steampowered.com store.steampowered.com
-
Due to player actions not landing on the beat or being relevant to the background music, this 'rhythm' game falls short of it's goals. No feedback for early or late actions also diminishes the game.
-
Piano Cat is a challenging rhythm-based platformer game where you [...] jump to the beat [...].No, no, no, just no. This game has nothing to do with rhythm or doing something in sync to the music. If you try to do that, you will fail, a lot. In order to beat the stages you have to mute or ignore the music, ignore the obstacles and only look out for the buttons you have to press. When they light up green, you press the button. This means that you have to press them always too early to the action, ahead of time. If you try to time it to the music, it will be too late and not count. If you are good in these kind of games, this will totally throw you off here.The graphic are nice, the music is ok, but it does a terrible job in having rhythm based gameplay.
-
-
www.metacritic.com www.metacritic.com
-
Ultimately, Shelter Generations relies on your capacity to dig into its subtleties. On that overt level it's an obtuse and obviously indie game, and it's really quite demanding of the player; it asks them to figure their own way through the game, and it asks them to really commit to an emotional connection to these hopeless little cubs.
-
-
www.kickstarter.com www.kickstarter.com
-
The good news: everyone had a genuine blast. We knew we had experimented our way into something fun, even if the rules and designs still needed a lot of work.
-
-
medium.com medium.com
-
-
To make sure that participants couldn’t learn and predict where text field alternatives might show up during the test, we randomized the order in which we presented those text fields.
-
However, some users didn’t know that they could interact with and click on the text field. It looked like an empty box. The line affordance under the old text fields was not clear to some users. The line was confused with a divider.
-
The label and input were confused with body text, especially in dense compositions.
Tags
- constant evolution/improvement of software/practices/solutions
- learn from your mistakes
- confusing
- form design
- component design
- ambiguous
- see content below
- answer the "why?"
- good example
- visual design
- opportunity to improve/fix something
- text field
- Material Design
- randomness
- Material Design: text field
- when to use
- I agree
- easy to confuse (mix up)
Annotators
URL
-
-
css-tricks.com css-tricks.com
-
trevershick.github.io trevershick.github.io
-
After some searching i found a stack overflow problem that didn't fix my issue but anyhow… I simply used a little ruby and the capybara library to find the field myself with some case insensitive regex and the ruby detect method
-
-
mitpress.mit.edu mitpress.mit.edu
-
There's some really great titles hiding in here. If they're as solid as Annotation is, then this is definitely worth mining for some additional titles.
-
-
www.smashingmagazine.com www.smashingmagazine.com
-
However, the reason for these problems isn’t the theory itself, but the way the theory is interpreted - by developers and browsers.
-
-
stackoverflow.com stackoverflow.com
-
I respectfully disagree with your assessment. You are referencing the quote "It's not appropriate to use the aside element just for parentheticals, since those are part of the main flow of the document." However the OP specifically said that they are looking for a semantic element for "a note that may be useful to read at a given point of a tutorial, but is not part of the main tutorial flow". That is what "aside" is for. It's not part of the main content flow.
That's a tough one. I can see it both ways.
-
<aside> is appropriate if the side note "could be considered separate from the content"
From a programmer's perspective:
- It shouldn't be in an <aside>, if it is actually directly about what is in <main>
- An <aside> should be able to be evaluated on its own, (almost entirely) in isolation from, and not dependent on anything in, the <main> content. This could be especially important/relevant for screen readers.
-
-
dictionary.cambridge.org dictionary.cambridge.org
-
A parenthetical remark is said in addition to the main part of what you are saying or writing.
-
-
www.merriam-webster.com www.merriam-webster.com
-
to expand (something, such as a statement) by the use of detail or illustration or by closer analysis
-
-
www.merriam-webster.com www.merriam-webster.com
-
an amplifying (see amplify sense 1) or explanatory word, phrase, or sentence inserted in a passage from which it is usually set off by punctuation explained further in a parenthesis
-
-
code.visualstudio.com code.visualstudio.com
-
Show/hide output and metadata differences in the diff editor
-
We are continuing an overhaul of our default startup editor in order to provide relevant extension-contributed tips and walkthroughs, intended to make both core VS Code features and extension contributions more approachable to new users.
-
-
www.youtube.com www.youtube.com
-
<small><cite class='h-cite via'>ᔥ <span class='p-author h-card'>Wikipedia</span> in Waun Mawn - Wikipedia (<time class='dt-published'>04/02/2021 15:33:08</time>)</cite></small>
Tags
Annotators
URL
-
-
www.lynnekelly.com.au www.lynnekelly.com.au
-
In Australia, we are so fortunate to be able to learn from a continuous culture dating back over 60,000 years. We have ample evidence from our Aboriginal cultures of robust knowledge of landscape and skyscape events dating back 17,000 years. (See Patrick Nunn’s amazing book, The Edge of Memory). That is how powerful these methods can be and why they have developed in so many disparate cultures.
bookmarking Patrick Nunn's The Edge of Memory for future reading
Tags
Annotators
URL
-
-
store.steampowered.com store.steampowered.com
-
It feels like it was thrown together in a weekend using parts from "Think To Die" since even the successful act of feeding your chickens has the same blood-splatter-on-camera-lens that you would get from scoring in Think To Die where your goal is to kill all of your people as opposed to this where you are feeding animals, so what's with the blood splatter? It just shows a lack of attention to detail.
-
-
store.steampowered.com store.steampowered.com
-
It is also the first game I've seen whose icon for "mute" is not a crossed-out speaker/note, but a symbol for "pause" in musical notation...
-
-
store.steampowered.com store.steampowered.com
-
I'll tell you my intention right away, because the language difference between us may offend you. For those things I don't understand, I apologize in advance (if you don't need my apology and feel that my apology is offensive to you, I firmly withdraw my apology).
-
-
www.kickstarter.com www.kickstarter.com
-
We also include a large number of detailed picture examples, often with 3D renders, that help you understand the context of the rules. For these reason, we generally don't start laying out the final rulebook until production art is complete. Writing and laying out a 20 page rule book like this generally takes about 3 months from start to finish, usually requiring a complete rewrite or two, and involves dozens of editors.
-
-
www.technologyreview.com www.technologyreview.com
-
www.penguinrandomhouse.com www.penguinrandomhouse.com
-
wp1.fuchu.jp wp1.fuchu.jp
-
press.uchicago.edu press.uchicago.edu
-
This appears to be the longer book form of the prior paper I'd noticed. I'll buy and download a copy shortly.
-
-
www.tandfonline.com www.tandfonline.com
-
Oh! This looks cool! and apparently a longer book length version has just come out too...
-
-
-
Bibliography of Memory. Dr. Morris Young. Chilton, 1961. More than6,000 references are cited in this bibliography by a Manhattan oph-thalmologist and collector of books on memory systems.
This looks fascinating and I don't think I've seen a reference to it before.
-
-
www.scientificamerican.com www.scientificamerican.com
-
<small><cite class='h-cite via'>ᔥ <span class='p-author h-card'>Martin Gardner </span> in Hexaflexagons, Probability Paradoxes & the Tower of Hanoi in Chapter 11 Memorizing Numbers (<time class='dt-published'>04/02/2021 14:31:10</time>)</cite></small>
-
-
www.ashampoo.com www.ashampoo.com
-
And Ashampoo Office 8 doesn't save your files in some online cloud service but where they belong: on your PC!
-
-
Local file Local file
-
In the oldest story of Stonehenge’s origins, theHistory of the Kings of Britain(c. AD 1136),Geoffrey of Monmouth
I imagine this would be some interesting reading.
See also: https://en.wikipedia.org/wiki/Historia_Regum_Britanniae
-
-
github.com github.com
-
This approach is preferable to overriding authenticate_user! in your controller because it won't clobber a lot of "behind the scenes" stuff Devise does (such as storing the attempted URL so the user can be redirected after successful sign in).
-
-
github.com github.com
-
# authenticated :user, lambda {|u| u.role == "admin"} do # root to: "admin/dashboard#show", as: :user_root # end
-
# +devise_for+ is meant to play nicely with other routes methods. For example, # by calling +devise_for+ inside a namespace, it automatically nests your devise # controllers: # # namespace :publisher do # devise_for :account # end
-
-
github.com github.com
-
For now, you will need to give the second root a different named route: authenticated :user do root to: "users#index", as: :authenticated_root end unauthenticated do root to: "main#index" end
-
-
guides.rubyonrails.org guides.rubyonrails.org
-
You can also specify constraints as a lambda:
-
-
github.com github.com
-
find_field finds by id, name or placeholder text - so find_field('Prefix') should find the element with matching placeholder text rather than needing xpath.
-
-
sfdictionary.com sfdictionary.com
-
Poke around!
-
-
www.redblobgames.com www.redblobgames.com
-
www.nybooks.com www.nybooks.com
-
Holbein’s Faces
to read
Tags
Annotators
URL
-
-
english.northwestern.edu english.northwestern.edu
-
White Negroes (Beacon, 2019)
-
- Mar 2021
-
final-form.org final-form.org
-
The reason Final Form does this is so that pristine will be true if you start with an uninitialized form field (i.e. value === undefined), type into it (pristine is now false), and then empty the form field. In this case, pristine should return to true, but the value that the HTML DOM gives for that input is ''. If Final Form did not treat '' and undefined as the same, any field that was ever typed in would forever be dirty, no matter what the user did.
-
If you are doing a regular expression check, your function should handle undefined as a potential value.
-
-
www.rubymotion.com www.rubymotion.com
-
Not enjoying Xcode, Amir used RubyMotion instead. Amir had real-world experience with Xcode and Objective-C, but didn't like it at all. Amir also has a Ruby background and went with RubyMotion to build A Dark Room. The command-line interface, the testing framework, the gems libraries and the CocoaPods integration and the freedom to use any text editor contributed to his decision.
-
-
github.com github.com
-
ProMotion is a RubyMotion gem that makes iOS development more like Ruby and less like Objective-C.
-
-
www.linkedin.com www.linkedin.com
-
Just as we've become super-human thanks to telephones, calendars and socks, we can continue our evolution into cyborgs in a concrete jungle with socially curated bars and mathematically incorruptible governance.
-
we should eagerly anticipate granting ourselves the extra abilities afforded to us by Turing machines
-
Stop thinking of the ideal user as some sort of honorable, frontier pilgrim; a first-class citizen who carries precedence over the lowly bot. Bots need to be granted the same permission as human users and it’s counter-productive to even think of them as separate users. Your blind human users with screen-readers need to behave as “robots” sometimes and your robots sending you English status alerts need to behave as humans sometimes.
-
-
bugs.ruby-lang.org bugs.ruby-lang.org
-
Would it be desirable to specify the new object in a block? That would make it somewhat symmetrical to how Hash.new takes a block as a default value.
-
In fact, I'm only here because it seems like something one would 'expect' ruby already to do.
-
-
www.mobilemarketer.com www.mobilemarketer.com
-
send a courier straight from collection to delivery, point to point
-
-
www.usich.gov www.usich.gov
-
Strategies Improve identification of children experiencing homelessness and ensure support for them to enroll in school. Eliminate barriers to enrollment and provide seamless transitions from early childhood education through elementary, secondary, and post-secondary education. Improve access to and retention in early childhood education programs, elementary and secondary education, and post-secondary education. Review existing federal, state, and local program policies, procedures, and regulations to identify mechanisms that could increase both access to and retention in high-quality programs. These mechanisms should help remove barriers and ensure early childhood-to-adulthood educational access, quality child care, and early childhood education through elementary, secondary, and post-secondary education. Educate homelessness assistance providers about the laws, and the programs and practices under those laws, designed to increase access to early care and education, such as those carried out under Head Start, the McKinney-Vento Act’s education subtitle, and the independent student provisions of the Higher Education Act.
stratigies
-
-
store.steampowered.com store.steampowered.com
-
dont belive the tags, it doesn't have any steam trading cards. waste of money and time.
-
-
www.jackfranklin.co.uk www.jackfranklin.co.uk
-
The codebase for Pomodone makes more sense to me in Svelte, not React. I find it easier to navigate and work with.
-
React and Svelte are very similar in many ways, but what I've found is that in all the little ways that they are different, I prefer Svelte.
-
but I like that Svelte comes with a good CSS story out the box.
comes with a good CSS story out the box
-
This isn't really a downside to React; one of React's strengths is that it lets you control so much and slot React into your environment
-
Svelte is different in that by default most of your code is only going to run once; a console.log('foo') line in a component will only run when that component is first rendered.
-
Svelte looks pretty similar, but has two small changes that personally make the Svelte code easier to read, in my opinion:
Tags
- opinion
- flexibility to use the tool that you prefer
- out of the box
- allowing developer/user to pick and choose which pieces to use (allowing use with competing libraries; not being too opinionated; not forcing recommended way on you)
- easy to read
- difference
- library/framework should provide this (standard solution) rather than everyone having to write their own slightly different solution (even if it is easy enough to write yourself)
- Svelte vs. React
- reasonable defaults
- trying to doing things the same way you did in a different library/framework (learning new way of thinking about something / overcoming habits/patterns/paradigms you are accustomed to)
- the little details/things
- Svelte
- important point
- unfortunate defaults
- opinionated
- annotation meta: may need new tag
- turning things around / doing it differently
- feels natural
- Svelte: styles
- pleasant/enjoyable to use
Annotators
URL
-
-
www.semanticsarchive.net www.semanticsarchive.net
-
looking at the semantics of the word "just" and "simply"...
-
-
the-pastry-box-project.net the-pastry-box-project.net
-
A Low Bar to Entry, and then What?There is an interesting tension between making something accessible and making it boring. Lowering the barrier of entry is a good thing, but if all you do is low-bar stuff, you end up losing the people again that you managed to attract. There needs to be a path forward beyond the entry level.
-
-
www.quora.com www.quora.com
-
A business with a low barrier to entry would be those people in poor countries who “wash” your windscreen at traffic lights. A bucket, a cloth, some water and you are in business. A business with a high barrier to entry might be airlines: planes are expensive, staff with the right skills hard to find, the necessary permits to fly hard to obtain.
-
-
www.theatlantic.com www.theatlantic.com
-
<small><cite class='h-cite via'>ᔥ <span class='p-author h-card'>Craig Mod</span> in Oh God, It's Raining Newsletters (<time class='dt-published'>03/26/2021 11:11:49</time>)</cite></small>
-
-
en.wikipedia.org en.wikipedia.org
-
Not to be confused with tree (graph theory), a specific type of mathematical object.
Confusing: https://en.wikipedia.org/wiki/Tree_(data_structure) says
Not to be confused with tree (graph theory) "Tree (graph theory)"), a specific type of mathematical object. but https://en.wikipedia.org/wiki/Tree_(graph_theory) redirects to https://en.wikipedia.org/wiki/Tree_structure and https://en.wikipedia.org/wiki/Tree_structure is in category Trees (data structures) So is one a subtype/hyponym of the other ... or what?? How are they related? Skimming the articles a bit, esp. the first paragraph which clearly states as much ( :) ), I believe the answer is: a tree (data structure) is an implementation (in a programming language) of / or a "type that simulates" a hierarchical tree structure. a tree (data structure) is the computer science analogue/dual to tree structure in mathematics
-
Not to be confused with trie, a specific type of tree data structure. Not to be confused with tree (graph theory), a specific type of mathematical object.
-
-
en.wikipedia.org en.wikipedia.org
-
This should link to / explain the relationship to: https://en.wikipedia.org/wiki/Class_(computer_programming) (which I believe is a way of expressing / codifying semantic classes into source code).
It should also link to / explain the relationship to: https://en.wikipedia.org/wiki/Type_theory
-
(Not answered on this stub article)
What, precisely, is the distinction/difference between a semantic class and a semantic field? At the very least, you would say that they are themselves both very much within the same semantic field.
So, is a semantic class distinct from a semantic field in that semantic class is a more well-defined/clear-cut semantic field? And a semantic field is a more fluid, nebulous, not well-defined field (in the same sense as a magnetic field, which has no distinct boundary whatsoever, only a decay as you move further away from its source) ("semantic fields are constantly flowing into each other")?
If so, could you even say that a semantic class is a kind of (hyponym) of semantic field?
Maybe I should pose this question on a semantics forum.
-
-
www.teenvogue.com www.teenvogue.com
-
en.wikipedia.org en.wikipedia.org
-
The words type, concept, property, quality, feature and attribute (all used in describing things) tend to be used with different verbs. E.g. Suppose a rose bush is defined as a plant that is "thorny", "flowering" and "bushy". You might say a rose bush instantiates these three types, or embodies these three concepts, or exhibits these three properties, or possesses these three qualities, features or attributes.
-
-
en.wikipedia.org en.wikipedia.org
-
The is-a relationship may also be contrasted with the instance-of relationship between objects (instances) and types (classes): see Type–token distinction.
-
-
en.wikipedia.org en.wikipedia.org
-
The precise semantic interpretation of an atomic formula and an atomic sentence will vary from theory to theory.
-
-
en.wikipedia.org en.wikipedia.org
-
There may only be historical reasons that, for example, the periodic table is called a classification rather than a taxonomy
-
-
en.wikipedia.org en.wikipedia.org
-
semantic domain or semantic field
What, then, is the difference between a semantic domain and a semantic field? The way they are used here, it's almost as if they are listing them in order to emphasis that they are synonyms ... but I'm not sure.
From the later examples of basketball (https://hyp.is/ynKbXI1BEeuEheME3sLYrQ/en.wikipedia.org/wiki/Semantic_domain) and coffee shop, however, I am pretty certain that semantic domain is quite different from (broader than) semantic field.
-
This uses techniques such as SIL International's Dictionary Development Process (DDP),[4][5] RapidWords, or software such as WeSay[6] or FLEx. These techniques rely on extensive lists of semantic domains that are relevant to vernacular languages.
-
-
en.wikipedia.org en.wikipedia.org
-
Sometimes lexicography is considered to be a part or a branch of lexicology, but properly speaking, only lexicologists who write dictionaries are lexicographers.
-
Not to be confused with lexicography.
-
-
en.wikipedia.org en.wikipedia.org
-
theodora.com theodora.com
-
BIBLIOGRAPHY. - A large number of the works referred to in the text contain historical material. Among histories of the subject, see C. F. von Aretin, Systesnatische Anleitung zur Theorie and Praxis der Mnemonik (Sulzberg, 1810); A. E. Middleton, Memory Systems, Old and New (espec. 3rd rev. ed., New York, 1888), with bibliography of works from 1325 to 1888 by G. S. Fellows and account of the Loisette litigation; F. W. Colegrove, Memory (1901), with bibliography, pp. 353-3 6 1. (J. M. M.)
This is likely worth checking out for its history.
-
About the end of the 15th century Petrus de Ravenna (b. 1448) awakened such astonishment in Italy by his mnemonic feats that he was believed by many to be a necromancer. His Phoenix artis memoriae (Venice, 1491, 4 vols.) went through as many as nine editions, the seventh appearing at Cologne in 1608. An impression equally great was produced about the end of the 16th century by Lambert Schenkel (Gazophylacium, 1610), who taught mnemonics in France, Italy, and Germany, and, although he was denounced as a sorcerer by the university of Louvain, published in 1593 his tractate De memoria at Douai with the sanction of that celebrated theological faculty. The most complete account of his system is given in two works by his pupil Martin Sommer, published at Venice in 1619. In 1618 John Willis (d. 1628?) published Mnemonica; sive ars reminiscendi (Eng. version by Leonard Sowersby, 1661; extracts in Feinaigle's New Art of Memory, 3rd ed., 1813), containing a clear statement of the principles of topical or local mnemonics. Giordano Bruno, in connexion with his exposition of the ars generalis of Lull, included a memoria technica in his treatise De umbris idearum. Other writers of this period are the Florentine Publicius (1482); Johann Romberch (1533); Hieronimo Morafiot, Ars memoriae (1602); B. Porta, Ars reminiscendi (1602).
Hunt down copies of all these.
-
-
forum.artofmemory.com forum.artofmemory.com
-
Furst’s ‘Memory and Concentration Studies’ was founded in 1929.
Track this down
-
-
trailblazer.to trailblazer.to
-
Currently, I’m working on designing the interfaces and it’s real fun!
-
-
trailblazer.to trailblazer.to
-
This could be an operation, a workflow, or hand-baked Ruby code completely unrelated to Trailblazer.
-
-
www.kickstarter.com www.kickstarter.com
-
click the images below
why not make this a link too?
-
-
stratechery.com stratechery.com
-
cuny.manifoldapp.org cuny.manifoldapp.org
-
<small><cite class='h-cite via'>ᔥ <span class='p-author h-card'>Cathy Davidson</span> in Twitter: "We are so pleased to present this free, open resource on open pedagogy, "I Wake Up Counting: Transformative Learning in the Humanities and Social Sciences," https://t.co/nxD3tMmIPJ https://t.co/aI6vuRt0Kn" / Twitter (<time class='dt-published'>03/23/2021 13:34:30</time>)</cite></small>
-
-
theanarchistlibrary.org theanarchistlibrary.org
-
Friend recommended it
-
-
www.youtube.com www.youtube.com
-
-
-
Bookmarked at 12:24 PM on 2021-03-21 because of the word negentropy. I'm sceptical of the application solely because of this word.
-
-
www.smashingmagazine.com www.smashingmagazine.com
-
CSS Grid Layout Generator
Give these a try.
Tags
Annotators
URL
-
-
blog.computationalcomplexity.org blog.computationalcomplexity.org
-
blog.wolfram.com blog.wolfram.com
Tags
Annotators
URL
-
-
github.com github.com
-
Take this for a spin.
-
-
impedagogy.com impedagogy.com
-
How many people die planetwide every year?
-
-
-
<small><cite class='h-cite via'>ᔥ <span class='p-author h-card'>hyperlink.academy</span> in The Future of Textbooks (<time class='dt-published'>03/18/2021 23:54:19</time>)</cite></small>
-
-
visual-meta.info visual-meta.info
-
<small><cite class='h-cite via'>ᔥ <span class='p-author h-card'>hyperlink.academy</span> in The Future of Textbooks (<time class='dt-published'>03/18/2021 23:54:19</time>)</cite></small>
Tags
Annotators
URL
-
-
askubuntu.com askubuntu.com
-
Now, if you also want deskopen to pass through any command-line parameters, you can instead use this slightly-modified version: #!/bin/sh desktop_file=$1 shift `grep '^Exec' "${desktop_file}" | sed 's/^Exec=//' | sed 's/%.//'` "$@" &
-
-
gitlab.gnome.org gitlab.gnome.org
-
When one is searching for it on the internet, there are many many people wondering how one can open .desktop files. It seems trivial, since one usually just has to click an item on the launcher so one thinks there must be some way.
-
I am wondering if it wasn't faster for maintainers/developers who know the glib code to just provide a fix instead of writing comments on this issue.
-
-
unix.stackexchange.com unix.stackexchange.com
-
If you really want this, I suggest you write a little function that extracts the executable name from the .desktop file and runs it. Add these lines to your shell's initialization file (e.g. ~/.bashrc): runDesktop () { eval "$(awk -F= '$1=="Exec"{$1=""; print}' "$1")" } Then, you can run your .desktop file with runDesktop ~/Desktop/slack.desktop
-
-
unix.stackexchange.com unix.stackexchange.com
-
A solution is almost indicated in the question: hinder xdg-open from choosing exo-open. A brute-force approach is to copy /usr/bin/xdg-open to /usr/local/bin (/usr/local/bin is earlier in PATH unless PATH has been modified) and to patch it to use open_generic instead of exo_open (unlike the XFCE4-specific exo-open, open_generic does honor xdg mime types)
-
-
askubuntu.com askubuntu.com
-
neither knows what to do with naked domain. So gnome-open http://askubuntu.com works but not gnome-open askubuntu.com. Here is a small function to make it easier to type and accept the stripped down domain name. function go { gnome-open http://$1 ; }
-
-
askubuntu.com askubuntu.com
-
XDG stands for X Desktop Group aka freedesktop.org
-
-
www.metacritic.com www.metacritic.com
-
Tbh I find the 44 critic metascore really appalling so made an account just to leave this review.
-
-
www.theguardian.com www.theguardian.com
-
Read Luster
-
-
netflixtechblog.com netflixtechblog.com
-
a Docker container running a very simple NodeJS web server with the Graphile library (and some additional Netflix internal components for security, logging, metrics, and monitoring) could provide a “better REST than REST” or “REST++” platform for rapid development efforts
Give this a try.
Tags
Annotators
URL
-
-
www.youtube.com www.youtube.com
-
<small><cite class='h-cite via'>ᔥ <span class='p-author h-card'>chrisaldrich</span> in From Print to OER Ebook to Obsidian (Hypothesis annotation) (<time class='dt-published'>03/15/2021 10:45:30</time>)</cite></small>
Tags
Annotators
URL
-
-
www.newscientist.com www.newscientist.com
-
Vaughan, Adam. ‘Did Europe’s Lockdowns Work, and Which Countries Got It Right?’ New Scientist. Accessed 25 February 2021. https://www.newscientist.com/article/mg24833112-800-did-europes-lockdowns-work-and-which-countries-got-it-right/.
-
-
psyarxiv.com psyarxiv.com
-
Pownall, M., Harris, R., & Blundell-Birtill, P. (2021). Supporting students during the transition to university in COVID-19: 5 key considerations and recommendations. PsyArXiv. https://doi.org/10.31234/osf.io/4fykt
-
-
www.theatlantic.com www.theatlantic.com
-
The Atlantic. ‘The Most Likely Timeline for Life to Return to Normal’. Accessed 2 March 2021. https://www.theatlantic.com/family/archive/2021/02/pandemic-daily-life-normal-summer-fall/618108/.
-
-
www.thelancet.com www.thelancet.com
-
Ratner, Austin, and Nisarg Gandhi. ‘Psychoanalysis in Combatting Mass Non-Adherence to Medical Advice’. The Lancet 396, no. 10264 (28 November 2020): 1730. https://doi.org/10.1016/S0140-6736(20)32172-3.
-
-
www.aljazeera.com www.aljazeera.com
-
Yeung, Peter. ‘The Lancet Editor: UK “Steadfastly Refused to Follow the Science”’. Accessed 25 February 2021. https://www.aljazeera.com/news/2021/1/11/uk-covid-crisis-qa-with-the-lancets-richard-horton.
-
-
www.apa.org www.apa.org
-
https://www.apa.org. ‘Controlling the Spread of Misinformation’. Accessed 22 February 2021. https://www.apa.org/monitor/2021/03/controlling-misinformation.
-
-
www.cultofpedagogy.com www.cultofpedagogy.com
-
Mentioned at the Liquid Margins session on 2021-03-12.
-
-
www.nature.com www.nature.com
-
<small><cite class='h-cite via'>ᔥ <span class='p-author h-card'>Remi Kalir & Jeremy Dean</span> in Web Annotation as Conversation and Interruption (<time class='dt-published'>03/15/2021 00:21:05</time>)</cite></small>
-
-
press.rebus.community press.rebus.community
-
burk.io burk.io
Tags
Annotators
URL
-
-
www.breitbart.com www.breitbart.com
-
after many online called for her firing over a social media post that likened the experience of Jews during the Holocaust to the U.S. political climate
-
-
medium.com medium.com
-
Very often in these monorepos, packages are so incredibly specific in functionality, the question then becomes why even have a separate package at all if it’s tightly coupled? Can you use these packages independently or are they tied to specific versions of other packages in the monorepo? It’ll probably be easier to remove the mask and just work as a monolith.
-
-
www.chevtek.io www.chevtek.io
-
But I believe the core philosophy of tiny modules is actually sound and easier to maintain than giant frameworks.
-
I would much rather have a "cosine" module than a "trigonometry" module because chances are good I only need a small fraction of the utilities provided by the larger trig module.
-
Small modules are extremely versatile and easy to compose together in an app with any number of other modules that suit your needs.
-
Second, I don't agree that there are too many small modules. In fact, I wish every common function existed as its own module. Even the maintainers of utility libraries like Underscore and Lodash have realized the benefits of modularity and allowed you to install individual utilities from their library as separate modules. From where I sit that seems like a smart move. Why should I import the entirety of Underscore just to use one function? Instead I'd rather see more "function suites" where a bunch of utilities are all published separately but under a namespace or some kind of common name prefix to make them easier to find. The way Underscore and Lodash have approached this issue is perfect. It gives consumers of their packages options and flexibility while still letting people like Dave import the whole entire library if that's what they really want to do.
Tags
- microlibraries
- sound/reasonable/wise/defensible
- composition
- granularity of control
- easy to maintain
- core/guiding beliefs/values/principles/philosophy/ideology
- small units/components/modules/libraries/packages/projects
- flexibility to use the tool that you prefer
- modularity
- allowing developer/user to pick and choose which pieces to use (allowing use with competing libraries; not being too opinionated; not forcing recommended way on you)
- all or nothing (granularity of control)
- micropackages
- monolithic/giant modules/libraries/packages/projects
- allowing developer/user to pick and choose which pieces to use (a la carte, not all or nothing)
- composability
Annotators
URL
-
-
blog.izs.me blog.izs.me
-
All too often, people get hung up on the wrong aspects of the Unix Philosophy, and miss the forest for the trees
-