- Mar 2021
-
www.digitalcitizenship.net www.digitalcitizenship.net
-
Protect Yourself/Protect Others
Learning to protect oneself and know the laws that govern internet activities because many laws and federal regulations apply to youth and online social technology which would require to explore approaches to teaching students about their role as responsible digital citizens. The past decade has seen an exponential increase in digital tools and opportunities, which carry the need for students to master a new set of life skills for behaving responsibly online.
-
-
github.com github.com
-
Money could be good if it is spent to provide some of the above things. Money on it's own is hard because then it means I would have to spend time book-keeping and managing instead of programming.
-
-
www.codetriage.com www.codetriage.com
-
Better yet, send them a link to this page to help them understand why and how to make an example app:
-
- Feb 2021
-
www.huffpost.com www.huffpost.com
-
In the classroom, I delegate responsibilities to my students at a rate that astounds people. There is almost nothing that I will not allow my students to do, including teaching my lessons whenever possible. My students take full and complete ownership of the classroom, whether they like it or not, and as a result, they possess great ownership of their learning.
-
They fail to understand the importance of autonomy when delegating responsibilities.
-
They lack faith in the capacity of others.
-
-
trailblazer.to trailblazer.to
-
I learned to “let go” and simply trust others to maintain certain gem suites.
-
-
-
I do think it's a common pattern that should be solved, and I am probably going to try and solve it as a Gem as opposed to simply writing code that we use in our code base
-
-
nplusonemag.com nplusonemag.com
-
cultural capital
Introduced by Pierre Bourdieu in the 1970s, the concept has been utilized across a wide spectrum of contemporary sociological research. Cultural capital refers to ‘knowledge’ or ‘skills’ in the broadest sense. Thus, on the production side, cultural capital consists of knowledge about comportment (e.g., what are considered to be the right kinds of professional dress and attitude) and knowledge associated with educational achievement (e.g., rhetorical ability). On the consumption side, cultural capital consists of capacities for discernment or ‘taste’, e.g., the ability to appreciate fine art or fine wine—here, in other words, cultural capital refers to ‘social status acquired through the ability to make cultural distinctions,’ to the ability to recognize and discriminate between the often-subtle categories and signifiers of a highly articulated cultural code. I'm quoting here from (and also heavily paraphrasing) Scott Lash, ‘Pierre Bourdieu: Cultural Economy and Social Change’, in this reader.
Tags
Annotators
URL
-
- Jan 2021
-
www.zdnet.com www.zdnet.com
-
Systemd problems might not have mattered that much, except that GNOME has a similar attitude; they only care for a small subset of the Linux desktop users, and they have historically abandoned some ways of interacting the Desktop in the interest of supporting touchscreen devices and to try to attract less technically sophisticated users. If you don't fall in the demographic of what GNOME supports, you're sadly out of luck.
-
-
-
I wanted to use GitHub Gists which are a wonderfully low friction way of sharing code
-
-
github.com github.com
-
You should default to the most permissive option imo and there really is no reason to check anything until you really need to If it were left to me I'd just use optional chaining, as it also eliminates the need for no-ops
(lazy checking)
-
-
en.wikipedia.org en.wikipedia.org
-
In other words, programs that send messages to other machines (or to other programs on the same machine) should conform completely to the specifications, but programs that receive messages should accept non-conformant input as long as the meaning is clear.
-
be conservative in what you do, be liberal in what you accept from others
-
-
discourse.ubuntu.com discourse.ubuntu.com
-
The benefits for developers do reflect on benefits for users, with more software delivered faster and more securely.
-
What’s the use of ie. snap libreoffice if it can’t access documents on a samba server in my workplace ? Should I really re-organize years of storage and work in my office for being able to use snap ? A too high price to pay, for the moment.
-
I - we all - totally agree about the benefits of snap for developers. But the loss of comfort and flexibility for end user is eventually a no-go option.
-
I clearly understand why snap is a safety progress on server and IoT but in my « human » usage snap is just restricting how I use my data and computer.
-
- Dec 2020
-
github.com github.com
-
Treating the web as a compile target has a lot of implications, many negative. For example “view source” is a beloved feature of the web that’s an important part of its history and especially useful for learning, but Svelte’s compiled output is much harder to follow than its source. Source maps, which Svelte uses to map its web language outputs back to its source language, have limitations.
-
-
hacks.mozilla.org hacks.mozilla.org
-
Better community building: At the moment, MDN content edits are published instantly, and then reverted if they are not suitable. This is really bad for community relations. With a PR model, we can review edits and provide feedback, actually having conversations with contributors, building relationships with them, and helping them learn.
Tags
- opportunity to improve/fix something
- community building
- community relations
- encouraging feedback
- reverting: creates negative experience
- helping others
- online community
- helping others to learn
- pull request workflow
- relationship (people)
- open source community
- wiki model
- reverting a previous decision/change/commit
- receiving feedback
- opportunity
- community (for a project or product)
Annotators
URL
-
-
github.com github.com
-
I personally think that starting from google's components makes easier to keeping update to material specs updates.
-
- Nov 2020
-
-
When you email me, please include a minimal bash script that demonstrates the problem in the body of the email (not as an attachment). Also very clearly state what the desired output or effect should be, and what error or failure you are getting instead. You are much more likely to get a response if your script isn't some giant monster with obtuse identifiers that I would have to spend all afternoon parsing.
-
-
linuxfud.wordpress.com linuxfud.wordpress.com
-
I realise this is old, but as it isn’t a forum i see no problem in replying
-
-
github.com github.com
-
I've only done components that need to/can be Svelte-ified. For some things, like RTL and layout grid, you can just use the MDC packages.
-
This is Sass based, and therefore doesn't require Svelte components
Just because we could make Svelte wrapper components for each Material typography [thing], doesn't mean we should.
Compare:
material-ui [react] did make wrapper components for typography.
- But why did they? Is there a technical reason why they couldn't just do what svelte-material-ui did (as in, something technical that Svelte empowers/allows?), or did they just not consider it?
svelte-material-ui did not.
- And they were probably wise to not do so. Just reuse the existing work from the Material team so that there's less work for you to keep in sync and less chance of divergence.
-
- Oct 2020
-
stackoverflow.com stackoverflow.com
-
Library author here. I'm always fascinated by new ways people can invalidate my assumptions. I mean that in a sincerely positive way, as it results in learning.
Tags
- sincere
- not considering all use cases
- learning from others
- testing/challenging one's assumptions (either validating or invalidating them)
- surprising
- author of software answering questions in community (support)
- assumptions
- not:
- they've thought of everything
- can't support everything / all cases
- invalidating one's assumptions
- different way of thinking about something
Annotators
URL
-
-
-
I'm okay with an overall design that allows people to plugin the parts they need in order to be able to generically support a compile-to-javascript language, but to bake in support for one singular solution because its popular is simply bad engineering.
-
I know where you're coming from, and to a degree, I think you're right.
-
-
tech.ebayinc.com tech.ebayinc.com
-
And as an aside, I’m definitely in favor of more debates than sessions in future conferences, since we actually learn more by hearing multiple viewpoints.
-
-
github.com github.com
-
I'm suggesting there should be a way to write lifecycle related code that also responds to changing props, like how useEffect works. I think how React handles this could be a good source of inspiration.
-
If Svelte came up with some kind of hooks like API maybe it could solve both these issues at once.
-
I think Svelte has some things to learn from React hooks.
Tags
- feature proposal
- use as inspiration
- inspiration
- copying ideas from another project
- copying/doing the same as how another project/library did it
- excellent writing
- learning from others
- can we do even better?
- react hooks
- Svelte
- Dylan Vann
- learning by studying/emulating/copying others who do it well
Annotators
URL
-
-
-
I started Solid years ago before I thought anyone would be interested in using it. I only started promoting it because it had already achieved the goals I had set out for it.
-
- Sep 2020
-
github.com github.com
-
I'll work on a preliminary PR (which I expect will need some love from maintainers, sorry!)
-
- Aug 2020
-
pragmaticpineapple.com pragmaticpineapple.com
-
If you are a senior, try talking to a junior or someone less experienced than you. Many companies are running what is called ”reverse mentoring” programs where juniors coach senior members of a company. Senior’s experience is traded for a fresh perspective from a junior. You’d be amazed at how much you could learn and share.
-
-
meta.stackexchange.com meta.stackexchange.com
-
But it's easy to imagine that the caption was incorrect for too long because those who know the language, know where the mistake is, and those who don't, think that it's the correct way to spell it.
those who know the language, know where the mistake is, In other words, they can easily spot the mistake and no better than to repeat it themselves, but either are powerless or too lazy to actually fix it on SE.
and those who don't, think that it's the correct way to spell it. So those who should no better are inadvertently perpetuating the mistake and teaching others that it is an acceptable/correct usage.
-
Can't upvote this enough. It is highly irritating to see language destroyed (and we wonder why kids bastardize the language..).
Tags
- correctness
- popular misconceptions
- combating widespread incorrectness/misconception by consistently doing it correctly
- even if majority makes a mistake; it doesn't make it correct
- hoping/trying to convince others that your view/opinion/way is right by consistently sticking to it despite many being ignorant/mistaken/unaware/holding different opinion
- lead by example
- be a good example for others
- perpetuation
- example of: using incorrect terms
Annotators
URL
-
- May 2020
-
secure.avaaz.org secure.avaaz.org
-
Avaaz. 10 Reasons to Love Humanity right now. https://secure.avaaz.org/campaign/en/covid19_reasons_to_hope/
-
-
www.digital-democracy.org www.digital-democracy.org
-
Don’t go to code academy, go to design academy. Be advocates of the user & consumer. It’s not about learning how to code, it’s about translating real-world needs to technological specifications in just ways that give end users agency and equity in design, development and delivery. Be a champion of user-centric design. Learn how to steward data and offer your help.
The importance of learning to design, and interpreting/translating real-world needs.
-
-
www.brainpickings.org www.brainpickings.org
-
To understand and be understood, those are among life’s greatest gifts, and every interaction is an opportunity to exchange them.
-
-
www.enchantingmarketing.com www.enchantingmarketing.com
-
Studying the masters will help you understand how all copywriting elements fit together.
-
-
digest.bps.org.uk digest.bps.org.uk
-
Fradera, A. New study fails to find any psychological benefits of volunteering, but that doesn’t mean you should stop. (2017, March 14). Research Digest. https://digest.bps.org.uk/2017/03/14/new-study-fails-to-find-any-psychological-benefits-of-volunteering-but-that-doesnt-mean-you-should-stop/
Tags
- volunteer
- lang:en
- mental health
- BPS
- social
- research
- positivity
- benefit
- is:webpage
- wellbeing
- psychology
- study
- emotion
- helping others
Annotators
URL
-
-
www.nytimes.com www.nytimes.com
-
Parker-Pope, T. (2020 April 09). The science of helping out. The New York Times. https://www.nytimes.com/2020/04/09/well/mind/coronavirus-resilience-psychology-anxiety-stress-volunteering.html
-
- Apr 2020
-
www.brucebnews.com www.brucebnews.com
-
Don’t worry, I’m not judging you, at least as far as you know.
-
-
www.techrepublic.com www.techrepublic.com
-
there's no reasonable way to communicate effectively with the less technically minded without acquiescing to the nontechnical misuse of the term "hacker"
-
The more easily relabeled of the two uses of the term "hacker" is the malicious security cracker: it is not only the more recent phenomenon to acquire that label, but also the one whose meaning is most easily evoked by an alternative term. This is why, when you read an article of mine that talks about malicious security crackers, I use the term "malicious security cracker"
Tags
- acquiescing/giving in
- communication
- language
- alternative to mainstream way
- hoping/trying to convince others that your view/opinion/way is right by consistently sticking to it despite many being ignorant/mistaken/unaware/holding different opinion
- language: misuse of word
- popular misconceptions
- communicating with less technical people
- "hacker" vs. "cracker"
Annotators
URL
-
- Mar 2020
-
www.wikihow.com www.wikihow.com
-
Get phrasebooks to start studying basic terminology. Phrasebooks are lists of expressions made for travelers to foreign countries. These lists give you an example of the sentence structure a language uses and what kind of words are useful. Find a phrasebook in the language you wish to learn and treat it as a foundation you can build upon as you learn more.
-
- Jan 2020
-
drewdevault.com drewdevault.com
-
I’m often neglecting half of my projects in order to obtain progress by leaps and bounds in just a few
-
- Dec 2019
-
unixwiz.net unixwiz.net
-
Before each election, I have traditionally written up an analysis of the California ballot measures and send it to my friends. It's not always obvious what the "real" agenda is on each one, and even with clear purposes there are often competing interests at play. These writings are the result of my own analysis, which comes from a libertarian perspective, and I'm not knowingly affiliated with any party behind any ballot measure. I believe that mere lists of "vote yes" or "vote no" are not very helpful except for sheep: it's important to know why one is urged to vote in any given direction. I would rather you vote against my position because you had an opposing view than vote with my position because you flipped a coin.
-
- Oct 2019
-
quickbooks.intuit.com quickbooks.intuit.com
-
This issue is already known to us since yesterday. Our engineers are now working diligently to fix this behavior. I'd recommend you contact our Customer Care team and let them know that you're one of the affected users of INV36818. That way, they will link your company to the case. You will then receive a notification via email for its updates.
-
- Apr 2019
-
scalar.usc.edu scalar.usc.edu
-
life as the reigning queen of Rupaul's Drag Race
Certainly, it would be interesting to discuss how normative male domination doesn't leave place for posthuman drags deemed by society as "otherness". Otherness would not be the right term to convince the multiple identities embodied by drags. I think you can challenge the relationality between multiple others in so may ways (inanimate objects, cyborgs...), because posthuman drags' life are diverse (multiple characters). There is even maybe some self-styling notion.
Maybe, you can also introduce some limitations of the posthuman drags boundaries.
-
- Jan 2019
-
foucault.info foucault.info
-
CORRESPONDENCE
Throughout this section, Foucault characterizes correspondence as a way to reveal the self: "a certain way of manifesting oneself to oneself and to others," to "show oneself," "a decipherment of the self by the self as an opening one gives the other onto oneself."
This sort of 'opening' is to make oneself vulnerable, to be seen by others. (cf. Marback's "A Meditation on Vulnerability in Rhetoric")
This is characteristic particularly of writing that is intended for others (correspondence), but in what ways are other forms of writing equally--if not more--revealing of the self?
(That also makes me question whether any writing is truly for the self and not intended in some way for others. Even diaries/journals are written with the possible eventuality that someone other than the writer will read it.)
-
- Mar 2017
-
static1.squarespace.com static1.squarespace.com
-
have to start searching that person's history until we begin to understand what led him or her to speak just so. Sometimes we do less well: if the history isn't there for us, we don't learn it, but instead make it up to suit ourselves.
This is an excellent view of the relationship with Others who do not fit the schema we hold. We can probably relate this back to embodiment and how a disagreement of ideas turns into a disagreement between (and because of) bodies, but I'm going to wait and see where Corder goes with this before wandering down that road . . .
Later update: I like his very embodied, lengthy chain of descriptions (flushed, feverish, quaky, shakey" etc.) to the heart of competing narratives.
-