- Sep 2022
-
rbspy.github.io rbspy.github.io
-
So when should you use rbspy, and when should you use stackprof? The two tools are actually used in pretty different ways! rbspy is a command line tool (rbspy record --pid YOUR_PID), and StackProf is a library that you can include in your Ruby program and use to profile a given section of code.
-
-
-
Even with interactive features,highlighting does not require active engagement with the text, suchas paraphrasing or summarizing, which help to consolidate learning(Brown et al., 2014)
What results do Brown et al show exactly? How do they dovetail with the citations and material in Ahrens2017 on these topics?
Brown, P. C., Roediger, H. L., & McDaniel, M. A. (2014). Make it stick: The science of successful learning. The Belknap Press of Harvard University Press. http://ebookcentral.proquest.com/lib/jhu/detail.action?docID=3301452
Ahrens, doesn't provide a full citation of Brown, but does quote it for the same broad purpose (see: https://hypothes.is/a/8ewTno3pEeydaHscXVaIzw) specifically with respect to the idea that highlighting doesn't help in the learning process, yet students still actively do it.
-
-
hypothes.is hypothes.is
-
Why is this important in this history of psychology?
"The present work will, I venture to think, prove that I both saw at the time the value and scope of the law which I had discovered, and have since been able to apply it to some purpose in a few original lines of investigation. But here my claims cease. I have felt all my life, and I still feel, the most sincere satisfaction that Mr. Darwin had been at work long before me, and that it was not left for me to attempt to write 'The Origin of Species.' I have long since measured my own strength, and know well that it would be quite unequal to that task. Far abler men than myself may confess that they have not that untiring patience in accumulating and that wonderful skill in using large masses of facts of the most varied kinds, -- that wide and accurate physiological knowledge, -- that acuteness in devising, and skill in carrying out, experiments, and that admirable style of composition, at once clear, persuasive, and judicial, -- qualities which, in their harmonious combination, mark out Mr. Darwin as the man, perhaps of all men now living, best fitted for the great work he has undertaken and accomplished." This comes from the Classics in the History of Psychology Limits of Natural Selection By Chauncey Wright (1870). This shows us the importamce of the limits including in theories like this one. Natural selection indicates that the strongest will be the ones that will survive and there for will be the ones that will be able to have offsprings and make their generation endure. But thjis has a limit due to the sexual selection because it shows that the natural selection can not be impossed to people in any way or form. I see this working in psychology in a very big way because now that we are in a generation that is so ruled out by the social media this concept wants to persist and endure no matter what. I can see natural selecetion slowly decreasing amd really another type of selection evolving with the next future generations.
Angela Cruz Cubero (Christian Cruz Cubero)
-
- Aug 2022
-
www.uml-diagrams.org www.uml-diagrams.org
-
The interaction operator strict requires a strict sequencing (order) of the operands on the first level within the combined fragment
-
The interaction operator seq means that the combined fragment represents a weak sequencing between the behaviors of the operands.
-
-
www.reddit.com www.reddit.com
-
Title for My Book
It's tough to do your own marketing and naming is hard. If you have an obscure short title, be sure to have a sharply defined subtitle, both for definition but to hit the keywords you'll want for discovery and search (SEO) purposes. Though be careful with keyword stuffing, if for no other reason than that Luhmann had a particularly sparse index.
Zettelkasten doesn't have much value for for native search (yet). Who besides a student that doesn't really want to buy it searches for a book on note taking?! Creativity, Productivity, and Writing are probably most of your potential market, so look at books in those areas for words to borrow (aka steal flagrantly). Other less common keywords to consider or throw into your description of the book, though not the title: research, research methods, literature review, thesis writing, Ph.D., etc.
Perhaps you've limited the question Scott. Instead ask everyone: What title would you want to see on such a book that would make you want to buy and read it? Everyone should brainstorm for 3 minutes and write down a few potential titles.
I'll start:
Antinet Method: Thought Development for Creativity and Productive Writing
Antinet Zettelkasten: A Modern Approach to Thought Development
Antinet: The Technique of Unreasonably Productive Intellectual Work (and Fun) [h/t F. Kuntze]
Mix and match away...
-
-
docs.gitlab.com docs.gitlab.com
-
Here are some problems with current issues usage and why we are looking into work items:
-
-
www.reddit.com www.reddit.com
-
I'am stressed about relearning every thing about the antinet zettlekasten...
https://www.reddit.com/r/antinet/comments/wsb1ff/iam_stressed_about_relearning_every_thing_about/
If it helps to frame things in smaller building blocks with progressive enhancement as you progress, this outline may be of help: https://boffosocko.com/2022/06/10/reframing-and-simplifying-the-idea-of-how-to-keep-a-zettelkasten/
Start small and you can evolve and revise as things progress, but you'll at least have a start.
-
- Jul 2022
-
tomcritchlow.com tomcritchlow.com
-
Yes, it’s making it easier than ever to write code collaboratively in the browser with zero configuration and setup. That’s amazing! I’m a HUGE believer in this mission.
Until those things go away.
A case study: DuckDuckHack used Codio, which "worked" until DDG decided to call it a wrap on accepting outside contributions. DDG stopped paying for Codio, and because of that, there was no longer an easy way to replicate the development environment—the DuckDuckHack repos remained available (still do), but you can't pop over into Codio and play around with it. Furthermore, because Codio had been functioning as a sort of crutch to paper over the shortcomings in the onboarding/startup process for DuckDuckHack, there was never any pressure to make sure that contributors could easily get up and running without access to a Codio-based development environment.
It's interesting that, no matter how many times cloud-based Web IDEs have been attempted and failed to displace traditional, local development, people keep getting suckered into it, despite the history of observable downsides.
What's also interesting is the conflation of two things:
-
software that works by treating the Web browser as a ubiquitous, reliable interpreter (in a way that neither
/usr/local/bin/node
nor/usr/bin/python3
are reliably ubiquitous)—NB: and running locally, just like Node or Python (orgo build
ormake run
or...)—and -
the idea that development toolchains aiming for "zero configuration and setup" should defer to and depend upon the continued operation of third-party servers
That is, even though the Web browser is an attractive target for its consistency (in behavior and availability), most Web IDE advocates aren't actually leveraging its benefits—they still end up targeting (e.g.)
/usr/local/bin/node
and/usr/local/python3
—except the executables in question are expected to run on some server(s) instead of the contributor's own machine. These browser-based IDEs aren't so browser-based after all, since they're just shelling out to some non-browser process (over RPC over HTTP). The "World Wide Wruntime" is relegated to merely interpreting the code for a thin client that handles its half of the transactions to/from said remote processes, which end up handling the bulk of the computing (even if that computing isn't heavyweight and/or the client code on its own is full of bloat, owing to the modern trends in Web design).It's sort of crazy how common it is to encounter this "mental slippery slope": "We can lean on the Web browser, since it's available everywhere!" → "That involves offloading it to the cloud (because that's how you 'do' stuff for the browser, right?)".
So: want to see an actual boom in collaborative development spurred by zero-configuration dev environments? The prescription is straightforward: make all these tools truly run in the browser. The experience we should all be shooting for resemble something like this: Step 1: clone the repo Step 2: double click README.html Step 3: you're off to the races—because project upstream has given you all the tools you need to nurture your desire to contribute
You can also watch this space for more examples of the need for an alternative take on working to actually manage to achieve the promise of increased collaboration through friction-free (or at least friction-reduced) development: * https://hypothes.is/search?q=%22the+repo+is+the+IDE%22 * https://hypothes.is/search?q=%22builds+and+burdens%22
-
-
-
docdrop.org docdrop.org
-
. I thinkit’s often an issue for people when they first become note-makers: an anxiety about getting the “right” stuff out ofa book, or even “all the stuff”. I don’t think this iscompletely possible, and I think it’s increasingly lesspossible, the better the book.
In the 1400s-1600s it was a common desire to excerpt all the value of books and attempts were made, though ultimately futile. This seems to be a commonly occurring desire.
Often having a simple synopsis and notes isn't as useful as it may not spark the same sort of creativity and juxtaposition of ideas a particular reader might have had with their own context.
Some have said that "content is king". I've previously thought that "context is king". Perhaps content and context end up ruling as joint monarchs.
-
-
via3.hypothes.is via3.hypothes.is
-
Here are the rules associated with the free and checked vowels. Theserules apply only to stressed syllables.
.c1
-
-
gist.github.com gist.github.com
-
5.1 Recognize that 1) the biggest threat to good decision making is harmful emotions, and 2) decision making is a two-step process (first learning and then deciding).
5.1 Recognize that 1) the biggest threat to good decision making is harmful emotions, and 2) decision making is a two-step process (first learning and then deciding).
-
4.5 Getting the right people in the right roles in support of your goal is the key to succeeding at whatever you choose to accomplish.
4.5 Getting the right people in the right roles in support of your goal is the key to succeeding at whatever you choose to accomplish.
-
1.5 Evolving is life’s greatest accomplishment and its greatest reward.
.
-
1.2 Truth—or, more precisely, an accurate understanding of reality —is the essential foundation for any good outcome.
.
Tags
- 4.5 Getting the right people in the right roles in support of your goal is the key to succeeding at whatever you choose to accomplish.
- 5.1 Recognize that 1) the biggest threat to good decision making is harmful emotions, and 2) decision making is a two-step process (first learning and then deciding).
- 1.5 Evolving is life’s greatest accomplishment and its greatest reward.
- 1.2 Truth—or, more precisely, an accurate understanding of reality —is the essential foundation for any good outcome.
Annotators
URL
-
-
github.com github.com
-
Interestingly, Rails doesn't see this in their test suite because they set this value during setup:
-
-
-
I want to start with a game. Okay? And to win this game, all you have to do is see the reality that's in front of you as it really is, all right? So we have two panels here, of colored dots. And one of those dots is the same in the two panels. And you have to tell me which one. Now, I narrowed it down to the gray one, the green one, and, say, the orange one. 00:00:41 So by a show of hands, we'll start with the easiest one. Show of hands: how many people think it's the gray one? Really? Okay. How many people think it's the green one? And how many people think it's the orange one? Pretty even split. Let's find out what the reality is. Here is the orange one. (Laughter) Here is the green one. And here is the gray one. 00:01:16 (Laughter) So for all of you who saw that, you're complete realists. All right? (Laughter) So this is pretty amazing, isn't it? Because nearly every living system has evolved the ability to detect light in one way or another. So for us, seeing color is one of the simplest things the brain does. And yet, even at this most fundamental level, 00:01:40 context is everything. What I'm going to talk about is not that context is everything, but why context is everything. Because it's answering that question that tells us not only why we see what we do, but who we are as individuals, and who we are as a society.
- Title: Optical illusions show how we see
- Author: Beau Lotto
- Date: 8 Oct, 2009
The opening title is very pith:
No one is an outside observer of nature, each of us is defined by our ecology.
We need to unpack the full depth of this sentence.
Seeing is believing. This is more true than we think.Our eyes trick us into seeing the same color as different ones depending on the context. Think about the philosophical implications of this simple finding. What does this tell us about "objective reality"? Colors that we would compare as different in one circumstance are the same in another.
Evolution helps us do this for survival.
-
-
www.judithragir.org www.judithragir.org
-
First we have to understand that the opposites need each other, revolve around each other, actually make one complete dynamic. Form is on the left and emptiness is on the right of the chart. Form needs emptiness and emptiness needs form. They are actually not separated but intellectually we conceive them as separate and opposite.
Explanation of Trungpa Rinpoche's Diamond Sliver
Form and Emptiness need each other to exist and be understood. Let's unpack this. All forms can be broken down further and further into smaller and smaller bits...in the quantum mechanical limits, into emptiness. At the micro level, it is so tiny, it is no longer recognizable as form. And all this quantum mechanical soup is what makes up all forms.
So the above is a statement using science, one perspective, which is also a position so also incomplete.It (science) is also propositional.
-
-
-
Protagonist Does a Thing formula
https://slate.com/culture/2022/06/book-titles-eleanor-oliphant-women-fiction.html
This article has a nice number of examples of the naming convention: "Protagonist Does a Thing"
I am a bit shocked to see Hypothes.is indicates that there are 31 (private) annotations on this particular page. What is going on here?!
-
- Jun 2022
-
Local file Local file
-
Are there relevant IPs buried in other projects you’ve worked onin the past?
Sadly, I've already forgotten his self-defined version of IP and I can only think of intellectual property. Is footnote mention linking it to intellectual property certainly didn't help things.
This is part of why using popular acronyms that aren't descriptive or clever is a bad naming practice.
-
-
www.danah.org www.danah.org
-
Douglas Adams noted, "Capital letters were always the best way of dealing with things you didn't have a good answer to."
from Dirk Gently's Holistic Detective Agency
-
-
www.youtube.com www.youtube.com
-
https://www.youtube.com/watch?v=bWkwOefBPZY
Some of the basic outline of this looks like OER (Open Educational Resources) and its "five Rs": Retain, Reuse, Revise, Remix and/or Redistribute content. (To which I've already suggested the sixth: Request update (or revision control).
Some of this is similar to:
The Read Write Web is no longer sufficient. I want the Read Fork Write Merge Web. #osb11 lunch table. #diso #indieweb [Tantek Çelik](http://tantek.com/2011/174/t1/read-fork-write-merge-web-osb110
Idea of collections of learning as collections or "playlists" or "readlists". Similar to the old tool Readlist which bundled articles into books relatively easily. See also: https://boffosocko.com/2022/03/26/indieweb-readlists-tools-and-brainstorming/
Use of Wiki version histories
Some of this has the form of a Wiki but with smaller nuggets of information (sort of like Tiddlywiki perhaps, which also allows for creating custom orderings of things which had specific URLs for displaying and sharing them.) The Zettelkasten idea has some of this embedded into it. Shared zettelkasten could be an interesting thing.
Data is the new soil. A way to reframe "data is the new oil" but as a part of the commons. This fits well into the gardens and streams metaphor.
Jerry, have you seen Matt Ridley's work on Ideas Have Sex? https://www.ted.com/talks/matt_ridley_when_ideas_have_sex Of course you have: https://app.thebrain.com/brains/3d80058c-14d8-5361-0b61-a061f89baf87/thoughts/3e2c5c75-fc49-0688-f455-6de58e4487f1/attachments/8aab91d4-5fc8-93fe-7850-d6fa828c10a9
I've heard Jerry mention the idea of "crystallization of knowledge" before. How can we concretely link this version with Cesar Hidalgo's work, esp. Why Information Grows.
Cross reference Jerry's Brain: https://app.thebrain.com/brains/3d80058c-14d8-5361-0b61-a061f89baf87/thoughts/4bfe6526-9884-4b6d-9548-23659da7811e/notes
-
-
www.nbcnews.com www.nbcnews.com
-
“Data is the new oil,” she said.
Oft repeated phrase and one I wouldn't have expected in this article.
-
-
dx.tips dx.tips
-
Your personal dev environment travels with you no matter which device you use
A lot of these ideas are junk. This one, though, is achievable. triplescripts.org.
-
- May 2022
-
marshallmcluhan.com marshallmcluhan.com
-
Why is the title of the book “The medium is the massage” and not “The medium is the message”? Actually, the title was a mistake. When the book came back from the typesetter’s, it had on the cover “Massage” as it still does. The title was supposed to have read “The Medium is the Message” but the typesetter had made an error. When Marshall saw the typo he exclaimed, “Leave it alone! It’s great, and right on target!” Now there are four possible readings for the last word of the title, all of them accurate: “Message” and “Mess Age,” “Massage” and “Mass Age.”
Quote from the Commonly Asked Questions (and Answers) on https://marshallmcluhan.com/common-questions/ with answers written by Dr. Eric McLuhan, Marshall McLuhan's eldest son.
-
-
github.com github.com
-
We document the order of hooks, but I don't think we document where in that order we integrate Rails helpers which makes this confusing, I do sort of think this is a bug but as we use RSpec to integrate Rails here and RSpec Core has no distinction that matches before / after teardown its sort of luck of the draw, we could possibly use prepend_after for Rails integrations which would sort of emulate these options.
-
-
www.blog.powernotes.com www.blog.powernotes.com
-
Online Learning & Tools
I would like to see how PowerNotes compares to Hypothes(is). I think annotation is a major opportunity for the digital, online space in education.
-
-
www.edweek.org www.edweek.org
-
Social interactions with other students is undoubtedly a good thing. Online learning has its place as well.
-
-
wordpress.com wordpress.com
-
"I'd want to learn a lot from Professor Zimmerman so that I may obtain as much information as possible and use it in reality. It's not about the work."
Tags
- (Shorter Piece) First two-sentences
- The backdrop of this annotation is that it was a late-semester free writing for an essay brainstorm. In this piece of writing, I mentioned how I didn't know what to expect going into the project and wanted to learn as much as possible for my own betterment.
Annotators
URL
-
-
wordpress.com wordpress.com
-
"Specifically, when one of my classmates stated how he was struggling with the concept and another one of my classmates took the initiative to clarify it, I realized that that individual possibilities vary greatly among students."
Tags
- (Major Essay) Climax paragraph. 3
- This annotation consisted of me continuing to do what I've been doing, which is primarily adding more direct experiences. In my draft for this one, I outlined the scenario of the triangle theory, but I did not go into further detail. Therefore, I resolved to describe the actual circumstances in order to offer the readers a better insight into the experience.
Annotators
URL
-
- Apr 2022
-
www.esquire.com www.esquire.com
-
https://www.esquire.com/news-politics/a7922/price-is-right-perfect-bid-0810/
Read this circa: 2019-10-26 20:00 See: https://hyp.is/HU9r5MhaEeyq-8OBZj_W7A/forum.artofmemory.com/
-
-
forum.artofmemory.com forum.artofmemory.com
-
https://forum.artofmemory.com/t/the-contestant-who-outsmarted-the-price-is-right/43337
Circling back to this a few years later... I just watched the documentary Perfect Bid: The Contestant who Knew Too Much (2017) which follows the story of Theodore Slauson from the article. Apparently he had spent a significant amount of time watching/taping the show and documenting the prices.
The documentary provides a single example of Slauson using a visual mnemonic for remembering the price of one item. The majority of his method seemed to be the fact that he put his pricing lists into a self-made spaced repetition system which he practiced with extensively. For some of his earliest visits to the show he mentions that a friend who travelled with him quizzed him on items on his price list on the way to the show. This, likely combined with an above average natural memory, allowed him to beat TPIR.
Outside of the scant memory portion portrayed, it was a reasonably entertaining watch.
-
I was doing some research on counting cards and memory and came across this story from 2010 in Esquire relating to several who were using (unnamed) memory methods to perform better on The Price is Right game show. If nothing else, it’s a fascinating example of applied memory methods in modern culture.
The Contestant Who Outsmarted ‘The Price Is Right’
I was doing some research on counting cards and memory and came across this story from 2010 in Esquire relating to several who were using (unnamed) memory methods to perform better on The Price is Right game show. If nothing else, it’s a fascinating example of applied memory methods in modern culture.
https://www.esquire.com/news-politics/a7922/price-is-right-perfect-bid-0810/
2019-10-26 20:00
-
-
www.expressnews.com www.expressnews.com
-
Excerpts from “The Price is Right” in “Perfect Bid” show this and other events happening exactly as Slauson remembers them. While he dismisses suggestions that he has a photographic memory, his ability to recall details — prices, prizes, contestant names and their bids — is impressively accurate. “Perfect Bid” director C.J. Wallis marvels at Slauson’s memory. “When we interviewed him, he sat down and, without any notes, remembered everything about probably a dozen different times he was in the studio audience,” he said.
-
-
-
The lateral keyword allows us to access columns after the FROM statement, and reference these columns "earlier" in the query ("earlier" meaning "written higher in the query").
-
-
www.postgresql.org www.postgresql.org
-
This latter equivalence does not hold exactly when more than two tables appear, because JOIN binds more tightly than comma. For example FROM T1 CROSS JOIN T2 INNER JOIN T3 ON condition is not the same as FROM T1, T2 INNER JOIN T3 ON condition because the condition can reference T1 in the first case but not the second.
-
A LATERAL item can appear at top level in the FROM list, or within a JOIN tree. In the latter case it can also refer to any items that are on the left-hand side of a JOIN that it is on the right-hand side of.
Unlike with most joins (IIUC), order is important with lateral joins. Weird. Why?
Maybe because it is equivalent to a cross join lateral (see example), and in an explicit cross join, you have a LHS and RHS?
-
This allows them to reference columns provided by preceding FROM items.
-
-
-
Transpiling with Babel ushered in the era of horrendously complicated transpiling pipelines and tooling. Writing the JavaScript of the future wasn't free. The price was an ever expanding web of complexity. This clearly wasn't the finish line.
-
-
web.archive.org web.archive.org
-
Bu araştırmanın amacı üniversite öğrenimine yeni başlayan fen bilimleri öğretmeniadaylarının oryantasyon programına yönelik görüşlerinin incelenmesidir. Araştırmada olgubilim deseni benimsenmiştir.
bu kısım mantıkı
-
-
sde.ok.gov sde.ok.gov
-
assistive technology
We should place the definition of Assistive Technology here: Assistive Technology is technology used by individuals with disabilities in order to perform functions that might otherwise be difficult or impossible.
-
-
stackoverflow.com stackoverflow.com
-
t's annoying there's no native event for this yet (popstate did not work for me)
-
- Mar 2022
-
www.iqsdirectory.com www.iqsdirectory.com
-
Drum or bag – a mechanism that requires replacement of the drum or bag that collects the matter.
-
-
www.proquest.com www.proquest.com
-
mono
mononucleosis = the presence of an abnormally large number of mononuclear leukocytes, or monocytes, in the blood. - definition pathology
Mononucleosis is an infectious illness that’s usually caused by the Epstein-Barr virus (EBV). It’s also called mono or “the kissing disease.”
Tags
Annotators
URL
-
-
www.lemonde.fr www.lemonde.fr
-
on rappelle aux enseignants qu’au fond, s’ils ont choisi ce métier, c’est bien pour partager la connaissance
-
-
world.hey.com world.hey.com
-
www.reddit.com www.reddit.com
-
level 1Fatal_Taco · 2 days ago · edited 2 days agoArch Linux, and likely most distros, are defined by these few things and are not limited to:The Linux Kernel, what type of config and modules it's been compiled with.The pre-packaged programs it comes with by default.The init.The package manager.The repositories it references.The slightly differing Linux Filesystem Hierarchy.The types of computers it runs on.
-
Just like any other distribution, Arch Linux is just a collection of utilities strapped together running Linux kernel under the hood.
-
-
inst-fs-iad-prod.inscloudgate.net inst-fs-iad-prod.inscloudgate.net
-
insidious declamations should have no effect upon the wise legislators who have decreed liberty to humanity. The attacks the colonists propose against this liberty must be feared all the more insofar as they hide their detestable projects under the veil of patriotism. We know that illusory and specious descriptions have been made to you of the renewal of terrible violence. Already, perfidious emissaries have crept among us to foment destruction at the hands ofliberticides. They will not succeed, this 1 swear by all that is most sacred in liberty. My attachment to France, the gratitude that all the blacks conserve for her, make it my duty to hide from you neither the plans being fomented nor the oath that we renew to bury ourselves beneath the ruins of a country revived by liberty rather than suffer the return of slavery.
Here Toussaint states that he refuses to let Vaublanc convince 'property' owners in St. Domingue to regress back to the use of enslavement. Toussaint also says that it he and other Blacks have gratitude to France and will not try to hide the fact they will all fight should, the "enemy of liberty" slavery return.
-
-
open.lib.umn.edu open.lib.umn.edu
-
ensures active participation
-
A larger group would limit each student’s participation and make scheduling of regular study sessions a real problem.
-
your work will just be much more effective.
-
A study group that is too large is more likely to digress into casual conversation.
-
take short breaks at least once an hour.
-
Don’t let a wrong answer be the last thing you wrote on a subject, because you will most likely continue to remember the wrong answer.
-
reviewing and applying stage of the learning cycle involves studying and using the material you have been exposed to
-
take the learning cycle to its conclusion and a new beginning.
-
Effective studying is your most important tool to combat test anxiety,
-
-
acestoohigh.com acestoohigh.com
-
that although evil exists, people aren’t born evil. How they live their lives depends on what happens after they’re born
So very true. Monsters are made, not born. Everyone is born into the sacred, but then life can transform the sACred into the sCAred. Pathological fear can motivate a host of pathological responses such as selfishness, alienation, greed, anger, control, abuse, othering,dehumanization, etc.
-
-
-
gesture isimpressionistic and holistic, conveying an immediate sense of how things lookand feel and move.
Gestures provide a powerful and immediate sense of how things look, feel, and move and provide facilities that can't be matched by spoken communication.
Link this to the idea of dance being used in oral cultures to communicate the movement of animals, particularly in preparation for hunting. cross reference: Songlines and Knowledge and Power by Lynne Kelly
Link to [[a picture is worth a thousand words]]
-
-
docdrop.org docdrop.org
-
the war in Ukraine now, it’s not a natural disaster. It’s a man-made disaster, and a single man. It's not the Russian people who want this war. There's really just a single person who, by his decisions, created this tragedy.
Technology is an amplifier and as Ronald Wright observed so presciently, our rapid cultural evolution has created advanced cognition in humans, and is like allowing modern software to run on 50,000 year old hardware. Amidst the exponential rate of technological development, biological evolution cannot keep up. So our propensity for violence, with more and more powerful technological weapons at our disposal has resulted in one man, Putin, having the capability to destroy an entire civilization with the press of one finger.
Unless we can understand this, we will not resolve the predicament civilization finds itself in.
-
- Feb 2022
-
www.colbyrussell.com www.colbyrussell.com
-
Also, this would be a good trick to use to realize "README.html":
If folks were really committed to improving the developer experience, [...] development would work like this: ¶1. Download the project source tree ¶2. Open README.html ¶3. Drag and drop the project source onto README.html
This is also a ripe place for the toolbench pattern to manifest.
The README can both appear to take care of the ABCs and also act as the entry point to any other shell stowed away in the project. For example, in atticus.js, the README contains a line that says to run the tests "use tests/harness.app.htm on the project repo". We could kick off the build process, open up Contribute.app.htm, squirt the contents of README.txt.htm over there, and then display that to the user, making that region "live" (so actually getting to the test runner and running the tests is even easier).
-
-
bugs.ruby-lang.org bugs.ruby-lang.org
-
"Context" manipulation is one of big topic and there are many related terminologies (academic, language/implementation specific, promotion terminologies). In fact, there is confusing. In few minutes I remember the following related words and it is good CS exam to describe each :p Thread (Ruby) Green thread (CS terminology) Native thread (CS terminology) Non-preemptive thread (CS terminology) Preemptive thread (CS terminology) Fiber (Ruby/using resume/yield) Fiber (Ruby/using transfer) Fiber (Win32API) Generator (Python/JavaScript) Generator (Ruby) Continuation (CS terminology/Ruby, Scheme, ...) Partial continuation (CS terminology/ functional lang.) Exception handling (many languages) Coroutine (CS terminology/ALGOL) Semi-coroutine (CS terminology) Process (Unix/Ruby) Process (Erlang/Elixir) setjmp/longjmp (C) makecontext/swapcontext (POSIX) Task (...)
-
-
www.joshmcarthur.com www.joshmcarthur.com
-
Remember, our wizard controller is responsible for showing and updating steps, but our top-level controller is still responsible for managing our Pet models.
-
-
www.excellentwebworld.com www.excellentwebworld.com
-
Theoretically speaking, we will answer all your queries inclusive of What is an Embedded System, Embedded System Characteristics, and various Types of Embedded Systems.
-
- Jan 2022
-
-
Boilerplate is only boilerplate if it's the same everywhere, which it shouldn't be.
-
-
stackoverflow.com stackoverflow.com
-
Checks are usually done in this order: 404 if resource is public and does not exist or 3xx redirection OTHERWISE: 401 if not logged-in or session expired 403 if user does not have permission to access resource (file, json, ...) 404 if resource does not exist or not willing to reveal anything, or 3xx redirection
-
-
github.com github.com
-
Sorry, let me rephrase. Is this how it is supposed to work? Because right now it looks like a bug. The documentation is really terribly sparse on this topic.
Tags
Annotators
URL
-
-
www.noemamag.com www.noemamag.com
-
Unfortunately, the ideas most economists use have been too influenced by “methodological individualism,” rather than the more scientifically supported view of us as a super-social, super-cooperative, intensely interdependent species. Often, this economics-style individualism is of the Thomas Hobbes variety, which paints humans in “a state of nature,” waging a “war of all against all.”
This statement in the framing of biology is quite similar to the framing in anthropology and archaeology that David Graeber and David Wengrow provide in The Dawn of Everything.
Perhaps we should be saying (especially from a political perspective): Cooperation is King!
-
- Dec 2021
-
monicasuri.com monicasuri.com
-
Raising an Independent Child
Monica Suri on healthy parenting
-
-
link.springer.com link.springer.com
-
Cryospheric and hydrological changes in combination with socioeconomic changes are threatening downstream water security (Drenkhan et al., 2019; IPCC, 2019). Glacial melting impacts river discharge and the availability of water in areas downstream and change in runoff pattern of rivers draining from the glaciated catchments (Table 4). Hydroelectric power generation depends completely on water availability, and any variability in flow pattern of rivers can have far-reaching consequences for energy security of the country. Available hydrological simulations indicate reduced rainfall and shrinkage of glacier, thereby leading to shortage of water supply for power generation and irrigation particularly in highly glaciated basins (Gautam et al., 2013). The increasing drought frequency combined with other environmental degradation has already affected the livelihoods particularly of smallholder farmers.
YEs!
-
-
steamcommunity.com steamcommunity.com
-
This post is like a year old... Does not matter ,
-
-
thesephist.com thesephist.com
-
Some people have found success with a crowd-funded Patreon-kind of funding model. Even though ostensibly making is showbusiness now,
Starting with reality television, everything seems to have become entertainment. Social media has accelerated this.
The idea that "making is showbusiness" is an interesting label for this.
We also have "manufacturing"; when will we have digufacturing?
-
-
oli.cmu.edu oli.cmu.edu
-
Please provide a thoughtful reply.
-
-
docdrop.org docdrop.org
-
you've used this word evil and you've used the word crime why I have used those words? Why do you think that's appropriate at this point ? it's a crime. It's a crime against humanity. It's actually a crime against all humanity, right? If we start calling it a crime as it is, I call it the crime of all time. 00:28:27 Then, at least we will switch the discussion to a level that people can actually understand, right? You can give people all these numbers but they're just numbers. You can show people graphs but they're just graphs, right? We are now, our business model are perverse, irrational economics, it's destroying us! 00:28:52 It's destroying the planet! Disrupting all the oceans, poisoning the oceans. The entire oceans with acidification with heating, which disturbs and breaks down all the healthy, ocean, currents, and deoxygenation. This is evil! If you don't act against that evil, if you don't call that evil, evil 00:29:20 you are complicit and that's an enormously powerful and emotional realization and I think you're dead right
Using ethically charged words such as evil and crime shift the paradigm.
-
-
-
The results of the study showed that object control motor skills (such as kicking, catching, and throwing a ball), were better in the children who played interactive games.“This study was not designed to assess whether interactive gaming can actually develop children’s movement skills, but the results are still quite interesting and point to a need to further explore a possible connection,” said Dr. Lisa Barnett, lead researcher on the study.“It could be that these children have higher object control skills because they are playing interactive games that may help to develop these types of skills (for example, the under hand roll through playing the bowling game on the Wii). Playing interactive electronic games may also help eye-hand coordination.”
This is a deductive argument because the logical premise which is that video games can improve motion control skills is supported by a logical premises which is the evidence from Dr. Lisa Barnett. This premises leads to the conclusion that video games can improve motor skills.
-
- Nov 2021
-
sharonede.medium.com sharonede.medium.com
-
Land rezoning and infrastructure decisions, such as rezoning from industrial or farmland to residential land, or building a new transport hub, generate windfall gains to private owners. While some of this is captured in the form of development contributions, the private value capture is much greater than what it contributes back to public coffers.Rezoning of land and infrastructure investment decisions undertaken by government create enormous amounts of private value:Throughout Australia, when land is rezoned from industrial to high-rise residential, a charge is levied to help fund the required infrastructure. A well-situated industrial site in Sydney’s inner west was bought for $8.5 million, rezoned high density residential, then sold again for $48.5 million. The 470% windfall was the result of a government decision: rezoning.
Rezoning is a key leakage of value from the commons to the private sector. This needs to be addressed in creative ways so that the commons can flourish. Rezoning can be viewed as a form of predatory capitalism, a form of theft from the commons by the private sector. Land owners who reap the benefits don't even think they are committing this theft because it is such normative behavior!
-
-
docs.google.com docs.google.com
-
“Thanksgiving Time” By Langston Hughes
When the night winds whistle through the trees and blow the crisp brown leaves a-crackling down, When the autumn moon is big and yellow-orange and round, When old Jack Frost is sparkling on the ground, It's Thanksgiving time!
When the pantry jars are full of mince-meat and the shelves are laden with sweet spices for a cake When the butcher man sends up a turkey nice and fat to bake, When the stores are crammed with everything ingenious cooks can make, It's Thanksgiving time!
When the gales of coming winter outside your window howl, When the air is sharp and cheery so it drives away your scowl, When one's appetite craves turkey and will have no other fowl, It's Thanksgiving Time!
-
-
www.varvet.com www.varvet.com
-
I am firmly convinced that asserting on the state of the interface is in every way superior to asserting on the state of your model objects in a full-stack test.
-
Now after a long debugging session, our developer has found the timing issue. They now realize that there is a wait_until method in the API, and immediately think that, "hey, this sounds like what I need!"
-
Its existence confuses people into thinking that it is necessary, when in fact it isn’t.
-
-
manpages.ubuntu.com manpages.ubuntu.com
-
apt-rdepends exists. This functionality should really reside in apt-cache itself.
Update: Maybe it does already exist now. I was able to run this, for example without apt-rdepends being installed: apt-cache rdepends --installed libwebpmux3
-
-
github.com github.com
-
Calling a software convention "pretty 90s" somewhat undermines your position. Quite a lot of well-designed software components are older than that. If something is problematic, it would be more useful to argue its faults. When someone cites age to justify change, I usually find that they're inexperienced and don't fully understand the issues or how their proposed change would impact other people.
-
-
stackoverflow.com stackoverflow.com
-
Manually reorder the reactive declaration statements, especially when there's an implicit dependency of the order of execution.
-
if you put the reactive statement $: validate(inputValue); after the function updateInputValue declaration, it's working as expected:
-
-
meta.stackoverflow.com meta.stackoverflow.com
-
I posted a question about MD5 hash collision back in 2014. As far as I know questions about algorithms are on-topic on Stack Overflow, and the cryptography tag did not have the warning "CRYPTOGRAPHY MUST BE PROGRAMMING RELATED" back then.
-
-
Someone reported it for being off-topic, but a mod declined it with a comment "I see no reason why this is off-topic. Not a programming question? You must surely be joking!", so it seems that this is controversial for the mods as well.
-
-
eleap.unimas.my eleap.unimas.my
-
It is initiated when bargaining is done between the parties, i.e employers and employees
-
- Oct 2021
-
github.com github.com
-
serverFetch name is unclear. That the docs need to say in bold that it's external is a bit of a code smell.
-
Rename to externalFetch. That it runs on the server is already implied by it being located in hooks
-
-
guides.rubyonrails.org guides.rubyonrails.org
-
Inflections go the other way around.In classic mode, given a missing constant Rails underscores its name and performs a file lookup. On the other hand, zeitwerk mode checks first the file system, and camelizes file names to know the constant those files are expected to define.While in common names these operations match, if acronyms or custom inflection rules are configured, they may not. For example, by default "HTMLParser".underscore is "html_parser", and "html_parser".camelize is "HtmlParser".
-
-
techpreneurbold.com techpreneurbold.com
-
Finding how to check if a list is empty in Python is not so a tricky task as you think. There are few effective methods available to make your functionalities easy. And of course, list play a paramount role in python that come up with few tempting characteristics listed in the below for your reference.
Hope so, you got the points that are listed in the above points. All the methods are very simple to write and execute! Probably, the best solution is revealed for your query of “how to Check if a List Is Empty in Python”
-
-
archive.nytimes.com archive.nytimes.com
-
Employees were ‘free’ to negotiate a work contract to their liking within the context of accepting the ‘prerogatives’ of managers to organised and remunerate their efforts as they saw fit (Fox, 1974).
Tags
Annotators
URL
-
- Sep 2021
-
www.familyhandyman.com www.familyhandyman.com
-
Just for fun, I did a little experimenting at home to show how some of these different types of cement hold up. I started by cementing a bunch of materials together with a bunch of different types of cement. I waited 24 hours, then cut each one roughly in half, down the middle.
-
-
www.reddit.com www.reddit.com
-
It is also why it's implementation in firefox is completely useless, considering that windows/osx/most linux distros plan to add support for DoH/DoT/DNScrypt resolvers in the near future, so firefox doing it itself will provide no additional benefit.
-
-
hypothes.is hypothes.is
-
The only trace left of Anna, a freshman at the University of Berkeley California, is an open internet connection in her neatly furnished dorm room. Join the four generations of a Japanese-American family as they search for Anna and discover credit card conspiracies, ancient family truths, waterfalls that pour out of televisions, and the terrifying power of the internet.
-
-
hcommons.org hcommons.org
-
It was diction who created the kinetoscope and other Mashona and Edison took credit.
-
-
sakai.duke.edu sakai.duke.edu
-
em ? Puritanism, in its marriage of convenience with industrial capitalism, was the agent which converted men to new valuations of time; which taught children even in their infancy to improve each shining hour; and which saturated men's minds with the equation, time is money.128 O
-
-
www.todayonline.com www.todayonline.com
-
“There is LeBron James, but it’s not LeBron James. It’s a cartoon version of him.”
More of what was being digitized.
-
-
stackoverflow.com stackoverflow.com
-
Sigh why was such a standard feature like resizable columns that have been super simple to do in desktop apps for 15+ years not added to css3/html5
why is it so difficult/hard?
-
-
www.npmjs.com www.npmjs.com
-
The more your tests resemble the way your software is used, the more confidence they can give you.
-
-
blog.sindresorhus.com blog.sindresorhus.com
-
The main reason I love Node.js is that I don’t have to deal with the awfulness that is JS front-end tooling.
-
Users think every Webpack tool/config problem is a problem with a specific package and opens an issue asking for support on the package instead of Webpack. In the past year alone, I’ve had to deal with hundreds of Webpack issues on my repos.
Tags
- whose bug is it?
- javascript: server environment vs. browser environment
- where (which project) do I even report this problem/bug? (whose responsibility is it?)
- Why can't this be easier/simpler? Why does it have to be so hard/complicated?
- modern javascript development is complicated
Annotators
URL
-
-
-
To enable PostCSS, Sass or Less support, add CSS support first and then add the relevant pre-processors:
-
-
github.com github.com
-
I feel like app/packs (or something like it) is a good name because it communicates to developers that it's not just JavaScript that can be bundled, it's also CSS, images, SVGs — you name it. I realize what can be bundled is wholly dependent on the bundler you use, but even esbuild supports bundling CSS. So couldn't this possibly be confusing?
-
-
-
Webpacker used to configure Webpack indirectly, which lead to a complicated secondary configuration process. This was done in order to provide default configurations for the most popular frameworks, but ended up creating more complexity than it cured. So now Webpacker delegates all configuration directly to Webpack's default configuration setup.
more trouble than it's worth
- creating more complexity than it cured
Tags
- more trouble than it's worth
- modern javascript development is complicated
- too hard/complicated/non-trivial
- too complicated
- changed their mind/opinion
- doing more harm than good
- removing feature that is more trouble than it's worth (not worth the effort to continue to maintain / fix bugs caused by keeping it)
- newer/better ways of doing things
- complicated
- Why can't this be easier/simpler? Why does it have to be so hard/complicated?
Annotators
URL
-
-
spin.atomicobject.com spin.atomicobject.com
-
An extensible plugin architecture allows for customizing your workflow or even making Yarn a package manager for non-JavaScript projects.
-
- Aug 2021
-
4cd.instructure.com 4cd.instructure.com
-
Our due dates will be Thursdays and Sundays at midnight
-
hold four hours a week on set days and times; M 11:15AM-12:15PM (in-person & on-line) T 10AM-11AM (on-line)W 2:15PM-3:15PM (in-person & on-line)Th 1PM-2PM (on-line) and by appointment
-
-
woodzwolfy.medium.com woodzwolfy.medium.comMedium1
-
Tips to fix HP Printer Error State Windows 10
-
-
stackoverflow.com stackoverflow.com
-
Javascript required? In other words, one cannot do this on cross-site iframes (due to cross-site scripting restrictions), is that right? As @clankill3r is suggesting, this demonstrates the need for a pure CSS solution to this problem
-
-
github.com github.com
-
In the vast majority of cases when I'm using prettier-ignore I'm only really looking to prevent it from breaking my code into new lines, whilst keeping its other transformations such as switching quotes and adding space between brackets. When ignoring single lines, fixing these formatting problems by hand is very manageable. With the ability to have Prettier ignore entire blocks of code I think the ability to specify what you want it to ignore is essential.
-
This should be basic functionality.
-
- Jul 2021
-
askubuntu.com askubuntu.com
-
The shell is responsible for expanding variables.
-
-
stackoverflow.com stackoverflow.com
-
I think that it's nonsense not to have a method that just gives -1 or +1. Even BASIC has such a function SGN(n). Why should we have to deal with Strings when it's numbers we want to work with. But's that's just MHO.
-
-
developer.mozilla.org developer.mozilla.org
-
All safe methods are also idempotent, but not all idempotent methods are safe. For example, PUT and DELETE are both idempotent but unsafe.
-
- Jun 2021
-
www.migrationencounters.org www.migrationencounters.org
-
Shelby
typo
Tags
Annotators
URL
-
-
stackoverflow.com stackoverflow.com
-
I've copied his response here as this question ranks very high in web search results.
-
-
hypothes.is hypothes.is
-
Giving peers permission to engage in dialogue about race and holding a lofty expectation that they will stay engaged in these conversations throughout the semester or year is the first of the four agreements for courageous conversation. While initially, some participants may be eager to enter into these conversations, our experience indicates that the more personal and thus risky these topics get, the more difficult it is for participants to stay committed and engaged." Singleton and Hays
-
"Many North American music education programs exclude in vast numbers students who do not embody Euroamerican ideals. One way to begin making music education programs more socially just is to make them more inclusive. For that to happen, we need to develop programs that actively take the standpoint of the least advantaged, and work toward a common good that seeks to undermine hierarchies of advantage and disadvantage. And that, inturn, requires the ability to discuss race directly and meaningfully. Such discussions afford valuable opportunities to confront and evaluate the practical consequences of our actions as music educators. It is only through such conversations, Connell argues, that we come to understand “the real relationships and processes that generate advantage and disadvantage”(p. 125). Unfortunately, these are also conversations many white educators find uncomfortable and prefer to avoid."
-
"I am also concerned that despite the best of intentions many of us have not considered adequately what social justice means and entails. I worry that social justice may become simply a “topic du jour” in music education, a phrase easily cited and repeated without careful examination of the assumptions and actions it implicates. That can lead to serious misunderstandings."
Tags
- This is exactly why I'm taking this class. The phrase Social Justice along with Multiculturalism has changed SO MUCH
- Having explicit and concise rules for the conversation is important to create a safe space for more participation in the tougher questions. The facilitator has to be consistently doing this.
- As music educators we do our best to include cultures and introduce new ideas because of what is relevant at the time. Yet we don't go to the next level and dive into the importance of "why" and how we as citizens along with our students can get involved and take positive actions. This may be due to the lack of autonomy in the classroom and/or time to teach in general.
Annotators
URL
-
-
stackoverflow.com stackoverflow.com
-
You particular circumstances may or may not warrant a way different from what lhunath (and other users) deem "best practices".
-
-
github.com github.com
-
Whether you agree or not, to me there's nothing in this world that is entirely apolitical - when there are people there is politics. You don't have to agree with my views, nor do I expect you to. Diversity and disagreement is what drives mankind forward.
-
In the end this plugin is a piece of software that I wrote and I'm just doing what I think is reasonable to make our community more inclusive.
- doing what one believes is best for community
-
so by adopting git installations with latest source code you're effectively agreeing to go bleeding-edge. I would assume that means you're ready for any breaking changes and broken installations, which is what happened here.
-
I'm not sure if there's any cost in terms of contributing either, especially when by design git can have any branch as default, and will not hinder your experience when you use something other than master.
git is neutral/unbiased/agnostic about default branch name by design
And that is a good thing
-
On existing projects, consider the global effort to change from origin/master to origin/main. The cost of being different than git convention and every book, tutorial, and blog post. Is the cost of change and being different worth it?
Tags
- annotation meta: may need new tag
- doing what one believes is best
- high-cost changes
- is using bleeding-edge tech risky?
- do pros outweigh/cover cons?
- is it worth it?
- good point
- this is a good thing
- neutral/unbiased/agnostic
- git
- separation of personal/political views from professional activity
- nothing is apolitical where people are involved
- diversity
- using cutting-edge/pre-release tech
- being inclusive
- I agree
- the cost of changing something
- you don't have to agree with my views
- by design
Annotators
URL
-
-
github.com github.com
-
The emphasis was made on a raw CDP protocol because Chrome allows you to do so many things that are barely supported by WebDriver because it should have consistent design with other browsers.
compatibility: need for compatibility is limiting:
- innovation
- use of newer features
-
-
-
The main (IMO) feature of MQTT – quality of service – doesn't make sense in our case: if a WebSocket server is down and doesn't receive broadcast messages (through HTTP/Redis/queue), it's likely not to handle client connections too.
-
-
www.mutuallyhuman.com www.mutuallyhuman.com
-
We used testing tools that were in the same ecosystem as our backend technology stack for primrily three reasons: We owned both ends of the stack Team experience Interacting with the database
-
-
pragmaticstudio.com pragmaticstudio.com
-
Note: Instead of storing a user’s ID in the session cookie you could store a JWT, but I’m not sure what that buys you. However, you may be using specific JWT claims that make this worthwhile.
-
-
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)
- too detailed
- communication: effective communication
- describe the what without getting bogged down by how (implementation details; too detailed)
- communication: focus on what is important
- communication: use the right level of detail
Annotators
URL
-
-
docs.gitlab.com docs.gitlab.com
-
Test we react correctly to any events emitted from child components:
-
Test any directive that defines if/how child component is rendered (for example, v-if and v-for).
-
-
docs.gitlab.com docs.gitlab.com
-
When mocking is deemed profitable:
-
targeting what the user actually sees
-
The most important guideline to give is the following: Write clean unit tests if there is actual value in testing a complex piece of logic in isolation to prevent it from breaking in the future Otherwise, try to write your specs as close to the user’s flow as possible
-
It’s better to test a component in the way the user interacts with it: checking the rendered template.
Tags
- only do it if it makes sense/is worth it (may be sometimes but not always worthwhile)
- guidelines
- end-to-end testing
- just because you can doesn't mean you should
- do pros outweigh/cover cons?
- is it worth it?
- rule of thumb
- testing: what is worth testing?
- testing: tests should resemble the way your software is used
- reasonable compromise
- testing: unit tests
- good advice
- quotable
- pragmatic
Annotators
URL
-
-
www.lesswrong.com www.lesswrong.com
-
-
outdoors.stackexchange.com outdoors.stackexchange.com
-
You can watch videos, but videos can't watch you.
-
No article or video can replace qualified instruction and experience
-
-
-
dba.stackexchange.com dba.stackexchange.com
-
Careful, Instead of != you may need to IS DISTINCT FROM operator which also compares NULL value
-
-
github.com github.com
-
We need to be really careful about what's 'same origin' because the server has no idea what host/path the various cookies are associated with. It just has a list of cookies that the browser had determined to be relevant for this SSR'd page, and not for any other subrequests.
-
- May 2021
-
interpersonal.stackexchange.com interpersonal.stackexchange.com
-
If you're already an admin for the zone in question, then the proper way to get that information is to log on to the DNS server or DNS control console and read it right from there. If you're not an admin for the zone, you're not supposed to have that information. Note that the person you are talking to on the phone is almost certainly not a DNS zone admin, so they also should not have that information. If they somehow did have it, they definitely shouldn't give it out over the phone. This is for your protection.
-
DNS zone information is sensitive. Many years ago it was possible for anyone to query a DNS server and literally get back all the records at once, but that was a security issue. Now you have to be an admin for the zone to get that info.
-
However I appreciate that price and functionality often dictates who we deal with.
-
-
github.com github.com
-
one of the following package repositories:
-
-
en.wikipedia.org en.wikipedia.org
-
As the token is unique and unpredictable, it also enforces proper sequence of events (e.g. screen 1, then 2, then 3) which raises usability problem (e.g. user opens multiple tabs). It can be relaxed by using per session CSRF token instead of per request CSRF token.
-
-
www.washingtonpost.com www.washingtonpost.com
-
sanjaykumarro.com sanjaykumarro.com
-
what is ozonation?
what is ozonation. Ozone gas perfect disinfectant and this is used to purify water. Unlike chlorine gas, which leaves harmful residual chlorine gas in the treated water, ozone leaves no harmful residual gases. Any unreacted ozone decomposes to oxygen gas.
-
-
kit.svelte.dev kit.svelte.dev
-
Building an app with all the modern best practices — code-splitting, offline support, server-rendered views with client-side hydration — is fiendishly complicated. SvelteKit does all the boring stuff for you so that you can get on with the creative part.
-
-
jeetheer.substack.com jeetheer.substack.com
-
I miss the thriving blogging culture of circa 1999-2012. People blogged before and after those dates, but that was a period where blogging really had an outsized voice in shaping political and cultural conversation.
Maybe it's the fact that there's more thoughts, ideas, and actual conversation in longer form media? Too much has moved to social media which really immediately implies small, bite-sized bits of information---a short note, a photo, a star or a heart.
-
-
mijn.bsl.nl mijn.bsl.nl
-
orchitis
Orchitis of orchiditis is een ontsteking van de testes. Orchitis wordt veelal veroorzaakt door SOA's als chlamydia en gonorroe. Bij het doormaken van de bof door jongens vanaf de puberteit is orchitis een veel geziene complicatie.
-
-
stackoverflow.com stackoverflow.com
-
Negative margins are in many cases equivalent to position:relative; with negative position, e.g. position:relative; top:-100px, as in Guffa's answer.
-
-
stackoverflow.com stackoverflow.com
-
Negative margins get removed by Gmail and others. So, no negative margins.
-
-
stackoverflow.com stackoverflow.com
-
You can't use negative margin in html email. To mimic this, there are 2 ways to do it, the nested tables way and the more complex rowspan way:
-
gmail and other mail services are ignoring the negative margin.
-
-
stackoverflow.com stackoverflow.com
-
Negative values are mostly unsupported in html email. So is CSS position. For webmail at least, this is so that your email doesn't render outside of the desired window. Imagine Gmail with your CSS or email affecting the interface - they've limited the CSS you can use specifically to prevent this.
-
-
hashnode.com hashnode.com
-
But more so, external style cannot be applied to a subsection of a web page unless they force it into an iframe, which has all sorts of issues of it's own which is why external CSS is usually ignored. Inline CSS is often stripped by the tag strippers who don't want you turning things on or off... and media queries shouldn't even play into it since the layout should be controlled by the page it's being shown inside (for webmail) or the client itself, NOT your mail.
-
-
mjml.io mjml.io
-
Email is Hard: learn how MJML will help you.
Tags
Annotators
URL
-
-
litmus.com litmus.com
-
I'd say the author's updated version is canonical: https://hyp.is/2lzvXK4sEeu3s1Piywmzww/www.hteumeuleu.com/2016/using-flexbox-in-an-email/
-
-
css-tricks.com css-tricks.com
-
Please have a look at (in same order)
-
- Apr 2021
-
github.com github.com
-
There is a similar feature in the standard library Logger class, but the implementation here is safe to use with multiple processes writing to the same log file.
-
-
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
- waiting for someone else to fix it: that is not going to happen
- whose responsibility is it?
- whether maintainer or contributor should/will implement something
- frustrating when maintainers stubbornly stick to opinions/principles/decisions and won't change despite popular user support
- at the mercy of maintainer
Annotators
URL
-
-
stackoverflow.com stackoverflow.com
-
This is definitely not the place to report bugs related to sass, rails, or sprockets. Each project has it's own issue tracker (not on SO)
-
-
github.com github.com
-
can you remove the not a bug label considering that PaperTrail is creating this empty versions even when :updated_at is an ignored attribute?
-
-
stackoverflow.com stackoverflow.com
-
According to Google (not that they are the end all of browser knowledge)
-
-
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.
-
-
linux.die.net linux.die.net
-
english.stackexchange.com english.stackexchange.com
-
It has two very different meanings, that you would have to distinguish by context. One meaning is just expressing that we have limitations. If you don't know something, that's just tough, you don't know it and you have to live with that. You don't have information if you don't have that information. The other meaning is that not only are there gaps in our knowledge, but often we don't even know what the gaps in our knowledge are. I don't know how to speak Finnish. That's a gap in my knowledge that I know about. I know that I don't know how to speak Finnish. But there are gaps in my knowledge that I'm not even aware of. That's where you can say "You don't know what you don't know" meaning that you don't even know what knowledge you are missing.
I had this thought too.
-
-
english.stackexchange.com english.stackexchange.com
-
What is the difference between “wry” and “dry” humor?
-
-
en.wikipedia.org en.wikipedia.org
-
The basic rule of thumb is: "I'm not aware of all types of security exploits. I must protect against those I do know of and then I must be proactive!".
-
-
docs.microsoft.com docs.microsoft.com
-
How is a pseudoconsole different from a pseudoterminal ?
I'm guessing that's just a Microsoftism to make it easier to search/find things that are specifically about Microsoft's flavor of pseudoterminal.
I see they don't use the word "pseudoterminal" at all, but they do mention
ConPTY, or the Windows PTY
where PTY is another synonym/name for pseudoterminal. So I think we're safe in saying that this is talking about a pseudoterminal.
-
-
en.wikipedia.org en.wikipedia.org
-
Operating systems implement a command-line interface in a shell for interactive access to operating system functions or services.
-
-
-
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.
Tags
Annotators
URL
-
-
empty.sourceforge.net empty.sourceforge.net
-
In some cases empty can be the simplest replacement for TCL/expect or other similar programming tools because empty:
-
-
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.
-
-
en.wikipedia.org en.wikipedia.org
-
TTY is right there in the name, but this article makes no attempt to clarify what exactly the relationship between a pseudoterminal and a TTY. I feel like a whole paragraph about the relation to TTY would be warranted, including a link to TTY article, of course, which does link [back] to and explain some of the relation to pseudoterminal:
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.
-
-
linusakesson.net linusakesson.net
-
Then who is responsible for the actual rendering?
-
-
unix.stackexchange.com unix.stackexchange.com
-
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?)
-
-
github.com github.com
-
-
COPYRIGHT Rsync was originally written by Andrew Tridgell and is currently maintained by Wayne Davison. It has been improved by many developers from around the world. Rsync may be used, modified and redistributed only under the terms of the GNU General Public License, found in the file COPYING in this distribution, or at the Free Software Foundation.
Only answered:
- who maintains
- what the license is
-
-
git.samba.org git.samba.org
-
Was trying to figure out where the canonical repo even is. Hard to figure out. Could be made clearer (like a prominent notice on one saying this is an unofficial clone with a link to the canonical source).
Ended up here via link from https://unix.stackexchange.com/questions/86879/suppress-rsync-warning-some-files-vanished-before-they-could-be-transferred to https://git.samba.org/?p=rsync.git;a=blob_plain;f=support/rsync-no-vanished;hb=HEAD
But then found https://github.com/WayneD/rsync, which I now believe to be canonical based on:
- last change here is Mon, 15 Mar 2021 09:35:39 -0700 (09:35 -0700) but on https://github.com/WayneD/rsync it was April 3.
- https://rsync.samba.org/bug-tracking.html links to: create an issue on GitHub
-
-
medium.com medium.com
-
Class Methods Are Singleton MethodsSince in Ruby classes are objects as well, class methods are merely methods defined on a specific instance of Class.
-
-
github.com github.com
-
Read the code! No, really. I wrote this code to be read.
-
-
store.steampowered.com store.steampowered.com
-
Not really sure who the audience is... the puzzles are a bit too difficult for kids but won't tax adults very much at all--some bare bones hidden object, match-3 and peg hopping.
-
-
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
-
An admonition is a parenthetical
-
-
www.kickstarter.com www.kickstarter.com
-
Academy Games has always prided itself in the quality of its rules. Most of our rules are taught in stages, allowing you to start playing as soon as possible without needing to read everything. We are very careful about the order we teach rules and rely heavily on graphics and pictures to facilitate understanding. We also include a large number of detailed picture examples, often with 3D renders, that help you understand the context of the rules.
-
-
github.com github.com
-
Wasn't sure if this belonged as an issue in Devise or Rails though.
-