What I have seen is situations where things were made horribly complicated to get around protections for which there was no need, and to try to guard the consistency of data structures that were horribly over-complicated and un-normalized.
- Jun 2023
-
stackoverflow.com stackoverflow.com
-
-
Are protected members/fields really that bad? No. They are way, way worse. As soon as a member is more accessible than private, you are making guarantees to other classes about how that member will behave. Since a field is totally uncontrolled, putting it "out in the wild" opens your class and classes that inherit from or interact with your class to higher bug risk. There is no way to know when a field changes, no way to control who or what changes it. If now, or at some point in the future, any of your code ever depends on a field some certain value, you now have to add validity checks and fallback logic in case it's not the expected value - every place you use it. That's a huge amount of wasted effort when you could've just made it a damn property instead ;) The best way to share information with deriving classes is the read-only property: protected object MyProperty { get; } If you absolutely have to make it read/write, don't. If you really, really have to make it read-write, rethink your design. If you still need it to be read-write, apologize to your colleagues and don't do it again :) A lot of developers believe - and will tell you - that this is overly strict. And it's true that you can get by just fine without being this strict. But taking this approach will help you go from just getting by to remarkably robust software. You'll spend far less time fixing bugs.
In other words, make the member variable itself private, but can be abstracted (and access provided) via public methods/properties
-
Public and/or protected fields are bad because they can be manipulated from outside the declaring class without validation; thus they can be said to break the encapsulation principle of object oriented programming.
-
Using a property or a method to access the field enables you to maintain encapsulation, and fulfill the contract of the declaring class.
-
Exposing properties gives you a way to hide the implementation. It also allows you to change the implementation without changing the code that uses it (e.g. if you decide to change the way data are stored in the class)
-
They are based on defensive coding carried to extremes.
-
Another point is that properties are good in that you can place breakpoints in them to capture getting/setting events and find out where they come from.
-
They sound like "argument by prestige". If MSDN says it, or some famous developer or author whom everybody likes says it, it must be so.
-
you nailed it! A consumer should only be able to set an object's state at initialization (via the constructor). Once the object has come to life, it should be internally responsible for its own state lifecycle. Allowing consumers to affect the state adds unnecessary complexity and risk.
-
Making a property writable adds an order of magnitude in complexity. In the real world it's definitely not realistic for every class to be immutable, but if most of your classes are, it's remarkably easier to write bug-free code. I had that revelation once and I hope to help others have it.
Tags
- defensive coding carried to extremes
- overly complicated
- doing something because someone prestigious says to
- well-intentioned protections causing pain or overly complicated workarounds
- normalizing data
- breaking encapsulation
- using properties to abstract, encapsulate, and control access to private instance variables/data
- fallacy: treating an authority as infallible
- good idea
- contract (programming)
- encapsulation (programming)
- properties vs. direct access to instance variables
- to make debugging easier
- member visibility: make it private unless you have a good reason not to
- I agree
- good point
- immutable data/objects/members to prevent bugs
- +0.9
- keeping software simple to prevent bugs
Annotators
URL
-
-
www.typescriptlang.org www.typescriptlang.org
-
The main thing to note here is that in the derived class, we need to be careful to repeat the protected modifier if this exposure isn’t intentional.
-
-
stackoverflow.com stackoverflow.com
-
I'm not saying never mark methods private. I'm saying the better rule of thumb is to "make methods protected unless there's a good reason not to".
-
Marking methods protected by default is a mitigation for one of the major issues in modern SW development: failure of imagination.
-
If it's dangerous, note it in the class/method Javadocs, don't just blindly slam the door shut.
-
When a developer chooses to extend a class and override a method, they are consciously saying "I know what I'm doing." and for the sake of productivity that should be enough. period.
-
The old wisdom "mark it private unless you have a good reason not to" made sense in days when it was written, before open source dominated the developer library space and VCS/dependency mgmt. became hyper collaborative thanks to Github, Maven, etc. Back then there was also money to be made by constraining the way(s) in which a library could be utilized. I spent probably the first 8 or 9 years of my career strictly adhering to this "best practice". Today, I believe it to be bad advice. Sometimes there's a reasonable argument to mark a method private, or a class final but it's exceedingly rare, and even then it's probably not improving anything.
Tags
- rule of thumb
- failure of imagination
- allow others take the responsibility/risk if they want; don't just rigidly shut the door to even the possibility
- bad advice
- please elaborate
- you can't know for sure
- give the benefit of the doubt
- dangerous (programming)
- can't predict the future
- never say never
- rigidness/inflexibility
- software development
- taking on the responsibility
- reasonable defaults
- member visibility: make it private unless you have a good reason not to
- good point
- inextensible
- what does this actually mean?
- subclassing/inheritance
- inheritance (programming)
- it's your responsibility to handle that
- don't be so rigid
- +0.9
- extensibility
- member visibility: make it protected unless you have a good reason not to
- not extensible enough
Annotators
URL
-
-
help.openai.com help.openai.com
-
Shared links offer a new way for users to share their ChatGPT conversations, replacing the old and burdensome method of sharing screenshots.
-
-
inst-fs-iad-prod.inscloudgate.net inst-fs-iad-prod.inscloudgate.net
-
There are now about 22,000 contributorsto the site, which charges between $1 and $5 per basic image
This reminds me of the article "Wikipedia and the Death of an Expert" how there are also so many volunteers running the wikipedia page. I inserted an article that mentions how many active editors there are on wikipedia so we can really compare the similarities in contributors.
Tags
Annotators
URL
-
-
en.wikipedia.org en.wikipedia.org
-
https://en.wikipedia.org/wiki/Personal_Memoirs_of_U._S._Grant
Early precursor to the sort of publishing and marketing work of James Patterson?
-
-
platform.openai.com platform.openai.com
-
-
Don’t confuse Consent Mode with Additional Consent Mode, a feature that allows you to gather consent for Google ad partners that are not yet part of the Transparency and Consent Framework but are on Google’s Ad Tech Providers (ATP) list.
-
-
www.semanticscholar.org www.semanticscholar.org
-
This analysis will result in the form of a new knowledge-based multilingual terminological resource which is designed in order to meet the FAIR principles for Open Science and will serve, in the future, as a prototype for the development of a new software for the simplified rewriting of international legal texts relating to human rights.
software to rewrite international legal texts relating to human rights, a well written prompt and a few examples, including the FAIR principles will let openAI's chatGPT do it effectively.
-
- May 2023
-
www.nicksantalucia.com www.nicksantalucia.com
-
“Why do we need to learn [this]?” where [this] is whatever I happened to be struggling with at the time. Unfortunately for everyone, this question – which should always elicit a homerun response from the teacher
The eternal student question, "Why do we need to learn this?" should always have a fantastic answer from their teachers.
-
-
www.youtube.com www.youtube.com
-
-
-
https://pressbooks.pub/illuminated/
A booklet prepared for teachers that introduces key concepts from the Science of Learning (i.e. cognitive neuroscience). The digital booklet is the result of a European project. Its content have been compiled from continuing professional development workshops for teachers and features evidence-based teaching practices that align with our knowledge of the Science of Learning.
-
-
patrickrhone.com patrickrhone.com
-
https://patrickrhone.com/dashplus/
referenced via Simon Woods at micro.camp https://hypothes.is/a/_GvLrPczEe2T-tfEqnLNhw
-
-
teuxdeux.com teuxdeux.comTeuxDeux1
-
www.bbc.com www.bbc.com
-
At the 'Library of Things' in Sachsenhausen Library Centre, people can borrow objects they might otherwise need to buy
- Comment
- Question
- How much material would be freed up if it was SHARED instead of hoarded by one person?
- related questions
- what kind of behavioral change is required to reach an impactful level of sharing?
- in a sense, public-instead-of-private
- transportation
- etc
- is the ultimate expression of private converted to public
- Question
- Comment
-
-
kimberlyhirsh.com kimberlyhirsh.com
-
https://kimberlyhirsh.com/uploads/2023/5976538a38.jpg
Putting a list of one's core values in the front of their notebook can be a useful reminder within their journaling or bullet journal practice.
-
-
jasonchatfield.medium.com jasonchatfield.medium.com
-
I would recommend ruling a line under the 6th point and having the rest as ‘if you get time’ tasks. Nothing else is allowed to get done until those first 6 tasks are complete: This is known as the Ivy Lee method.
The "Ivy Lee method" for productivity involves making a to do list with a line underneath the first six most important tasks and doing nothing else until the top six items are finished.
Jason Chatfield credits http://katiefarnan.com/blogs/the-form/lauren-layne for the idea.
-
Use David Allen’s GTD method and put your MIT (Most Important Task) at the top, and don’t attempt anything below it until that one task is done.
sometimes known as eating the frog first...
-
-
-
The someday card is described as being not only for individual to do items, but "big picture" goals.
-
-
ugmonk.com ugmonk.comAnalog2
-
Throughout the day, mark each task as completed, in-progress, or delegated. Feel free to create your own symbols.
Similar to the sorts of to do list task key in many bullet journals, the Analog system has "task signals" : - black filled circle means "complete task" - half filled circle means task is in progress - a right arrow in the circle means the task was delegated - a cross in the circle means that the task is an appointment, potentially with the appointment time added to the to do item
The system suggests that you can "create your own" task signals, though in true minimalist fashion, it doesn't give other suggestions. Presumably one could do other pattern fills of the circle or symbols within it to mean other things (example: bullet journal key symbols).
Interestingly, the to do circles start out not blank, but with a single thin line splitting the circle in half vertically. This is apparently a design choice, perhaps to make it easier to fill in half of the circle?
-
The Analog system utilizes a simplified version of an Eisenhower matrix which we'll call "today / next / someday" as a means of prioritizing to do list items on a temporal basis.
-
-
en.wikipedia.org en.wikipedia.org
-
www.amazon.com www.amazon.com
-
Midnight Riot (Rivers of London)<br /> by Ben Aaronovitch
https://www.amazon.com/Midnight-Riot-Rivers-London-Aaronovitch/dp/034552425X
Recommended by Patrick Rhone at today's micro.camp book meetup.
-
-
sites.pitt.edu sites.pitt.edu
-
You have come for your Mistress Darling, but that beautiful bird is no longer sitting in her nest, nor is she singing any more. The cat got her, and will scratch your eyes out as well.
4 -- Rhetorical Strategies
Frequently, tales of Rapunzel include typical characters or archetypes such as the distressed damsel, the wicked captor, and the gallant savior striving for freedom. These familiar archetypes add to the genre's essence and lay a basis for investigating dynamics between characters.
-
Rapunzel recognized him, and crying
4 -- Rhetorical Strategies
Rapunzel as a type of literature often incorporates opposing elements to generate a sense of unease and emphasize important messages. This is shown through the juxtaposition of the cramped tower and the vastness of the world outside, the purity of Rapunzel in contrast with the wickedness of her captor, or even in how her vulnerability transforms into resilience. Vulnerability becoming resilience is perfectly portrayed in this portion here and in many other retellings where Rapunzel's tears are used to heal the prince.
-
Once upon a time
4 -- Rhetorical Structure
The storytelling framework for Rapunzel narratives is often predictable, with a standard narrative structure comprising of an initial period of imprisonment followed by the appearance of either a prince or another character seeking liberation. The climax comes with overcoming obstacles to achieve ultimate victory. This model offers an overarching design for the genre and its characteristic rhetorical effects.
-
locked her in a tower
4 -- Analyze Rhetoric
An indispensable aspect of fairy tale storytelling is the conspicuous tower in which Rapunzel is held captive. Its iconography and allegorical significance- evoking separation, desire, and an unwavering aspiration towards autonomy-remains specific to the story and genre of Rapunzel.
-
-
viva.pressbooks.pub viva.pressbooks.pub
-
Diatonic Modes
-
-
viva.pressbooks.pub viva.pressbooks.pub
-
Diatonic Modes
-
Relative darkness and brightness of modes
-
-
www.mendeley.com www.mendeley.com
-
Afro Cuban and Afro Brazilian Jazz
-
Voicing
-
Walking Bass
-
Turn around progressions
-
Passing chords, Approach chords and substitutions
-
-
www.mendeley.com www.mendeley.com
-
Musicpsychologydefinesgrooveashumans’pleasureableurgeto movetheirbodyin syn-chronywithmusic.Pastresearchhasfoundthatrhythmicsyncopation,eventdensity,beatsalience,andrhythmicvariabilityarepositivelyassociatedwithgroove
-
-
www.mendeley.com www.mendeley.com
-
www.mendeley.com www.mendeley.com
-
MOTIVIC DEVELOPMENT
-
The ABAC Song Form
-
VOICE-LEADING PRINCIPLES
-
Bebop Blues
-
MOTIVIC DEVELOPMENT
-
“COLTRANE” SUBSTITUTIONS
-
CHROMATIC MODES
-
BEBOP SCALES
-
The AABA Song Form
-
Phrase Models
-
BLUES RIFFS
-
Pentatonics and Hexatonics
-
THE ROLE OF GUIDE TONES
-
DROP 2
-
Chord–Scale Theory
-
Post-Tonal Jazz
-
Jazz Reharmonization
-
Bebop
-
Idiomatic Jazz Progressions
-
Keyboard Textures
-
Jazz Lead Sheets
-
Improvisation
-
The Blues
-
Chord–Scale Theory
-
Diatonic Modes
-
Swing
-
Syncopation
-
Jazz Rhythm
-
Modes
-
The II–V–I Progression
Tags
- form
- source:terefenko
- texture
- improvisation
- modes
- melodies
- ABAC
- chromatic-modes
- scales
- swing
- voicings
- bebop-blues
- AABA
- chord-scale-theory
- diatonic-modes
- drop-2
- motives
- guide-tones
- post-tonal
- progression
- syncopation
- II-V-I
- substitutions
- rhythm
- posted-to-public
- bebop
- reharmonisation
- phrase
- riffs
- blues
- lead-sheets
- voice-leading
Annotators
URL
-
-
viva.pressbooks.pub viva.pressbooks.pub
-
Substitutions
-
-
en.wikipedia.org en.wikipedia.org
Tags
Annotators
URL
-
-
www.thejazzpianosite.com www.thejazzpianosite.com
-
Modern Jazz Theory
-
-
musictheory.pugetsound.edu musictheory.pugetsound.edu
-
Chapter 31 Introduction to Jazz Theory
-
-
viva.pressbooks.pub viva.pressbooks.pubVI. Jazz1
-
viva.pressbooks.pub viva.pressbooks.pub
-
OPEN MUSIC THEORY
-
-
musictheory.pugetsound.edu musictheory.pugetsound.edu
-
Music Theory for the 21st-Century Classroom
-
-
www.mendeley.com www.mendeley.com
-
The History of Jazz
-
The History of Jazz
-
The History of Jazz
-
-
www.mendeley.com www.mendeley.com
-
there is some evidence that microtiming patterns are genre-specific.
-
Microtiming Deviations and Swing feel in Jazz
-
-
www.mendeley.com www.mendeley.com
-
drop
-
Chord Scale Theory
-
Reharmonizing Specific Approach Note Patterns
-
Jazz Voicings
-
-
southafrica.co.za southafrica.co.za
-
Mbaqanga
-
-
southafrica.co.za southafrica.co.za
-
South African Jazz
-
-
southafrica.co.za southafrica.co.za
-
Sound of Soweto
-
Sound of Soweto
-
-
docs.google.com docs.google.com
-
Melodic rhythms
Melodic rhythms
-
-
www.mendeley.com www.mendeley.com
-
As Schuller points out: “There is no question in my mind that the classical world can learn much about timing. rhythmic accuracy and subtlety from jazz musicians, as jazz musicians can in dynamics. structure and contrast from the classical musicians.”
-
-
www.mendeley.com www.mendeley.com
-
dynam
dynamics as improvisation aid - accenting every 2nd note, for example
-
-
www.mendeley.com www.mendeley.com
-
Inside Improvisation - Melodic Structures, is the first in a series of books which describe a simple and pragmatic approach to improvisation.
-
-
www.facebook.com www.facebook.com
-
Give!Give!124129Create ReelReels
Voicings Youtube video
-
-
www.thejazzpianosite.com www.thejazzpianosite.com
-
viva.pressbooks.pub viva.pressbooks.pub
-
Phrase-Level Forms
-
-
viva.pressbooks.pub viva.pressbooks.pub
-
American Standard Pitch Notation
aspn
-
-
viva.pressbooks.pub viva.pressbooks.pub
-
Bebop Composition
-
-
viva.pressbooks.pub viva.pressbooks.pubii–V–I2
-
ii–V–I
-
Turnarounds
-
-
viva.pressbooks.pub viva.pressbooks.pubTitle1
-
Jazz Voicings
Exercises
-
-
viva.pressbooks.pub viva.pressbooks.pub
-
viva.pressbooks.pub viva.pressbooks.pub
-
Swing Rhythms
-
-
viva.pressbooks.pub viva.pressbooks.pub
-
Jazz Rhythms
-
-
viva.pressbooks.pub viva.pressbooks.pub
-
Blues Composition
-
-
viva.pressbooks.pub viva.pressbooks.pub
-
Composing with Neo-Riemannian Transformations
-
-
viva.pressbooks.pub viva.pressbooks.pubTexture1
-
Texture
-
-
viva.pressbooks.pub viva.pressbooks.pub
-
Jazz Voicings
-
-
viva.pressbooks.pub viva.pressbooks.pub
-
Chord-Scale Theory
-
-
viva.pressbooks.pub viva.pressbooks.pub
-
Blues Harmony
-
-
viva.pressbooks.pub viva.pressbooks.pub
-
Blues Melodies and the Blues Scale
-
-
www.thejazzpianosite.com www.thejazzpianosite.com
-
Chord Tensions (Extensions & Alterations)
-
-
www.thejazzpianosite.com www.thejazzpianosite.com
-
Jazz Chord Voicings
-
-
www.thejazzpianosite.com www.thejazzpianosite.com
-
Jazz Scales
-
-
www.thejazzpianosite.com www.thejazzpianosite.com
-
Jazz Chord Progressions
-
-
www.thejazzpianosite.com www.thejazzpianosite.com
-
Jazz Improvisation
-
-
www.thejazzpianosite.com www.thejazzpianosite.com
-
Jazz Reharmonization
-
-
www.thejazzpianosite.com www.thejazzpianosite.com
-
Jazz Genres
-
-
southafrica.co.za southafrica.co.za
-
Marabi
-
-
www.masterclass.com www.masterclass.com
-
Mbaqanga Music Guide: Brief History of Mbaqanga
-
-
www.last.fm www.last.fm
-
Recommended next african african Share… Share this tag: Mbaqanga music
audio recordings of mbaqanga music
-
-
www.baslerafrika.ch www.baslerafrika.ch
-
Marabi
-
-
www.mendeley.com www.mendeley.com
-
www.mendeley.com www.mendeley.com
-
Colonialism
Colonialism
-
-
www.mendeley.com www.mendeley.com
-
maskanda, often marketed as “Zulu blues.”
Maskanda - zulu blues
-
-
www.mendeley.com www.mendeley.com
-
www.mendeley.com www.mendeley.com
-
Dynamics are yet another aspect of composition over which McNeely exercises deliberate and organized control. Writing for a high level ensemble such as the Vanguard Jazz Orchestra, he is able to demand and receive a great deal of nuance, shape and color. McNeely uses an extraordinarily high number of dynamic markings throughout all his arrangements and in particular here. Undulating hairpin (crescendo followed by immediate decrescendo) shapes are prevalent with each dynamic level marked 14specifically. As a rule, the ensemble exaggerates the dynamic shapes, often in ways that give prominence to the dynamics over and above elements of harmony and melody. In this respect, the dynamics may sometimes be considered a compositional device of equal importance. This general approach to dynamics as shapes is characteristic of all three of the compositions studied herein.
-
-
www.mendeley.com www.mendeley.com
-
patterns are often called‘formulas’, ‘licks’, ‘stock-phrases’, and ‘riffs’. The maindifferences between these terms lie in their supposed ori-gin, their function, and their musical characteristics .
-
TWO WEB APPLICATIONS FOR EXPLORING MELODIC PATTERNS INJAZZ SOLOS
-
-
www.imdb.com www.imdb.com
-
Loving Highsmith (2022)<br /> https://www.imdb.com/title/tt15239466/
recommended by Patricia Highsmith's Cahiers by [[Jillian Hess]]
-
-
stackoverflow.com stackoverflow.com
-
Stop to think about "normal app" as like desktop app. Android isn't a desktop platform, there is no such this. A "normal" mobile app let the system control the lifecycle, not the dev. The system expect that, the users expect that. All you need to do is change your mindset and learn how to build on it. Don't try to clone a desktop app on mobile. Everything is completely different including UI/UX.
depends on how you look at it: "normal"
-
-
baronfig.com baronfig.com
-
tesl-ej.org tesl-ej.org
-
low degree of immediacy and spontaneity
Online synchronous tutoring is not as urgent and spontaneous as in-person. Some writers might struggle with communication, or find the platform difficult to use.
-
- Apr 2023
-
-
those who got the updated booster had one-tenth the risk of being hospitalized compared with those who are unvaccinated
Basically 65-79 higher seniors are in high risk of being sent to the hospital rather than other people who aren't even vaccines The booster is much more stronger to seniors.
-
-
kimberlyhirsh.com kimberlyhirsh.com
-
Want to read: How Romantics and Victorians Organized Information by Jillian M. Hess 📚
https://kimberlyhirsh.com/2023/04/28/want-to-read.html
👀 How did I not see this?!?? 😍 Looks like a good follow up to Ann Blair's Too Much to Know (Yale, 2010) and the aperitif of Simon Winchester's Knowing What We Know (Harper) which just came out on Tuesday. 📚 Thanks for the recommendation Kimberly!
-
-
www.youtube.com www.youtube.com
-
Zhao briefly describes Cal Newport's Questions, Evidence, Conclusions (QEC) framework which she uses as a framework for quickly annotating books and then making notes from those annotations later.
How does QEC differ from strategies in Adler/Van Doren?
-
-
en.wikipedia.org en.wikipedia.org
-
www.irchelp.org www.irchelp.org
-
www.irchelp.org www.irchelp.org
-
www.westerly.k12.ri.us www.westerly.k12.ri.us
-
If Parvana lost track of hermother, she was afraid she'd never find her again
This is sad, a child has a fear to lose her mother because all women on the street are wearing the same cloth
-
-
www.marxists.org www.marxists.org
-
From this striving, otherwise than in the case of the intellectuals, there results also another statement of the problem, and new perspectives are opened. In this way conceptions are formed regarding the regulation of the mutual relations of human beings in social production, conceptions which to the intellectual elements appear incomprehensible and which they declare to be utopian and unrealizable. But these conceptions have already unfolded a powerful force in the revolutionary uprisings of the wage-workers, of the modern proletarians. This force was shown first on a major scale in the Paris Commune, which sought to overcome the centralized authority of the State through the self-administration of the communes. It was the cause also of Marx’s giving up his idea (expressed in the Communist Manifesto) that state economy would lead to the disappearance of class society. In the workers’ and soldiers’ councils of the Russian and German revolutions of 1917-23, it arose once more to a mighty and at times all-mastering power. And in future no proletarian-revolutionary movement is conceivable in which it will not play a more and more prominent and finally all-mastering role. It is the self-activity of the broad working masses which manifests itself in the workers’ councils. Here is nothing utopian any longer; it is actual reality. In the workers’ councils the proletariat has shaped the organizational form in which it conducts its struggle for liberation.
-
-
www.marxists.org www.marxists.org
-
Nonetheless, there remains still an unbalanced contradiction between on one hand Marx's characterization of the Paris Commune as the finally discovered "political form" for accomplishing the economic and social self-liberation of the working class and, on the other hand, his emphasis at the same time that the suitability of the commune for this purpose rests mainly on its formlessness; that is, on its indeterminateness and openness to multiple interpretations. It appears there is only one point at which Marx's position is perfectly clear and to which he professed at this time under the influence of certain political theories he had in the meantime come up against and which were incorporated in this original political concept-and not least under the practical impression of the enormous experience of the Paris Commune itself. While in the Communist Manifesto of 1847-48 and likewise in the Inaugural Address to the International Workers' Association in 1864, he still had only spoken of the necessity “for the proletariat to conquer political power” now the experiences of the Paris Commune provided him with the proof that "the working class can not simply appropriate the ready-made state machinery and put it into motion for its own purposes, but it must smash the existing bourgeois state machinery in a revolutionary way." This sentence has since been regarded as an essential main proposition and core of the whole political theory of Marxism, especially since in 1917 Lenin at once theoretically restored the unadulterated Marxian theory of the state in his work "State and Revolution" and practically realized it through carrying through the October Revolution as its executor. But obviously nothing positive is at all yet said about the formal character of the new revolutionary supreme state power of the proletariat with the merely negative determination that the state power cannot simply "appropriate the state machinery" of the previous bourgeois state "for the working class and set it in motion for their own purposes." So we must ask: for which reasons does the "Commune" in its particular, determinate form represent the finally discovered political form of government for the working class, as Marx puts it in his Civil War, and as Engels characterizes it once more at great length in his introduction to the third edition of the Civil War twenty years later? Whatever gave Marx and Engels, those fiery admirers of the centralized system of revolutionary bourgeois dictatorship realized by the great French Revolution, the idea to regard precisely the "Commune" as the "political form" of the revolutionary dictatorship of the proletariat, when it appeared to be the complete opposite to that system?
-
-
www.walnerlaw.com www.walnerlaw.com
-
Holding Negligent Doctors AccountableWhen a doctor fails to diagnose your medical condition, it can have serious consequences. We put our trust in medical workers to identify a disease to increase our chances of recovery. A doctor’s failure to diagnose is a form of medical malpractice because such negligence can cause significant injury
I want: - monetary and punitive damages - I want to put it in the spot light that most "psychotherapists" are not qualified, but people, themselves, think they are, and law language makes them think they are - that law, nor anything, meaningfully restrictions anyone from making a "diagnosis" - that not only are psychotherapists not qualified, they are not qualified to know when they are not qualified and refer out - that there is gross insufficiency in not only oversight, but no meaningful sufficient method/tools by which to measure and enforce oversight - that there is gross insufficiency in sound method to match mental needs to mental services - to provide parents and children and welfare the tools and ammo to select, apply, enforce, and measure performance of services - further to do the same for every other person in this world who is in need of, receiving ineffective, receiving damage because of wrong, mental care.
-
-
beiner.substack.com beiner.substack.com
-
He began a process that would move past merely separating mind and matter, and toward a worldview that saw only matter as real. A contemporary of Descartes, Thomas Hobbes, went further and suggested that thinking arose from small mechanical processes happening in the brain. In doing so, Vervaeke points out, he was laying the ground for artificial intelligence:…what Hobbes is doing is killing the human soul! And of course that’s going to exacerbate the cultural narcissism, because if we no longer have souls, then finding our uniqueness and our true self, the self that we’re going to be true to, becomes extremely paradoxical and problematic. If you don’t have a soul, what is it to be true to your true self? And what is it that makes you utterly unique and special from the rest of the purposeless, meaningless cosmos?
Quote - Descartes created the mind / body dualism - Thomas Hobbes reduced consciousness to physicalism - by claiming that thinking was an epi-phenomena of atomic interactions
-
-
www.blackpast.org www.blackpast.org
-
will fail to give them credit for brilliant talents and excellent dispositions.
I am confused on who Frederick Douglas referred to as the people who will fail to give these women credit for brilliant talents and excelent dispositons. Was he talking about the audience at the convention or was he talking about people in the general population?
-
Among these was a declaration of sentiments, to be regarded as the basis of a grand movement for attaining all the civil, social, political and religious rights of woman.
What were these sentiments? I am curious about how they constructed and pushed forth with their views and points. Fedrick Douglas mentioned that some of these women read their greivances; I have a question for these women. Were any of the sentiments more important than the others, and why?
-
Many who have at last made the discovery that negroes have some rights as well as other members of the human family, have yet to be convinced that woman is entitled to any.
So basically a black woman had to fight for her rights because she is black AND because she is a woman? A black woman had two barriers that held them from being treated like a decent human being, and not one or the other. Of course there were other circumstances and disadvantages but race and gender were big at this time.
-
- Mar 2023
-
github.com github.com
-
before_action -> { doorkeeper_authorize! :public }, only: :index
-
-
www.nytimes.com www.nytimes.com
-
Two years later, he produced Mr. De Palma’s comic drama about a disfigured composer who sells his soul, “Phantom of the Paradise,” which has become a cult favorite.
-
-
www.insidehighered.com www.insidehighered.com
-
It does not feel patriotic to have my students pay money for public-domain literature on their American heritage.”
-
-
www.youtube.com www.youtube.com
-
Roberta Stewart of Dartmouth has written a description (available on the website) of how an article for the TLL is generally written. [01:10:26]
-
-
www.frontiersin.org www.frontiersin.org
-
we propose five cornerstones that help deal with the highlighted issues and categorize unintended consequences.
5 principles for mitigating progress traps - 1) - a priori assessments of potential unintended consequences of policies - should be conducted by - multidisciplinary teams - with as broad a range of expertise as possible. - This would require decision-making - to flex around specific policy challenges - to ensure that decision-makers reflect the problem space in question. - 2) - policy plans made in light of the assessment should be iterative, - with scheduled re-assessments in the future. - As has been discussed above, - knowledge and circumstances change. - New consequences might have since - become manifest or new knowledge developed. - By planning and implementing reviews, - organizational reflexivity and - humility - needs to be built into decision-making systems (e.g., Treasury, 2020).
- 3)
- given the scale of systems
- such as the water-energy-food nexus
- and the potential for infinite variety and nuance of unintended consequences,
- pragmatism necessitates specification of boundaries
- within which assessments are made.
- pragmatism necessitates specification of boundaries
- It should be noted that this can in itself give rise to unintended consequences
- through potential omission of relevant areas.
- Hence, boundary decisions regarding
- where the boundaries lie
- should be regularly revisited (as per 2) above.
- where the boundaries lie
- given the scale of systems
- 4)
- unintended consequences identified
- should be placed in the framework
- with as much consensus among decision-makers as possible.
- should be placed in the framework
- The positioning does not need to be limited to a single point,
- but could be of the form of a distribution of opinions of range
- of knowability and
- avoidability;
- the distribution will be indicative of
- the perspectives and
- opinions of the stakeholders.
- but could be of the form of a distribution of opinions of range
- If a lack of consensus exists on the exact position,
- this can highlight a need to
- seek more diverse expertise, or
- for further research in order to improve consensus, or
- for fragmenting of the issue into
- smaller,
- more readily assessable pieces.
- this can highlight a need to
- unintended consequences identified
- 5)
- there is a need for more active learning
- by decision-makers
- about how to avoid repeating past unintended consequences.
- by decision-makers
- To support this,
- assessment process and
- outcomes should be
- documented and
- used
- to appraise the effectiveness of policy mechanisms,
- with specific attention on outcomes
- beyond those defined by policy objectives and the
- assumptions and
- decisions
- which led to these outcomes.
- beyond those defined by policy objectives and the
- with specific attention on outcomes
- Such appraisals could reflect on
- the scope of the assessment, and
- the effectiveness of specific groups of stakeholders
- in being able to identify potential negative outcomes,
- highlighting gaps in knowledge and limitations in the overall approach.
- in being able to identify potential negative outcomes,
- Additional records of the level of agreement of participants
- would allow for re-evaluation with new learning.
- there is a need for more active learning
- 3)
-
-
www.ghacks.net www.ghacks.net
-
For those who wish to conceal their location from Google, keep in mind that you use Google services under license agreement. That’s a contract. Google is within their legal rights to know under which country’s laws that agreement is being made. Google is liable for honoring each country’s laws.
-
-
www.jstor.org www.jstor.org
-
Müller, A., and A. Socin. “Heinrich Thorbecke’s Wissenschaftlicher Nachlass Und H. L. Fleischer’s Lexikalische Sammlungen.” Zeitschrift Der Deutschen Morgenländischen Gesellschaft 45, no. 3 (1891): 465–92. https://www.jstor.org/stable/43366657
Title translation: Heinrich Thorbecke's scientific estate and HL Fleischer's lexical collections Journal of the German Oriental Society
... wrote a note. There are about forty smaller and larger card boxes , some of which are not classified, but this work is now being undertaken to organize the library. In all there may be about 100,000 slips of paper; Of course, each note contains only one ...
Example of a scholar's Nachlass which contains a Zettelkasten.
Based on this quote, there is a significant zettelkasten example here.
-
-
fidoalliance.org fidoalliance.org
-
Also, service providers can offer passkeys without needing passwords as an alternative sign-in or account recovery method.
-
When a user is asked to sign-in to an app or website, the user approves the sign-in with the same biometric or PIN that the user has to unlock the device (phone, computer or security key). The app or website can use this mechanism instead of the traditional (and insecure) username and password.
-
-
-
We now take an opinionated stance on which second factor you should set up first – you'll no longer be asked to choose between SMS or setting up an authenticator app (known as TOTP), and instead see the TOTP setup screen immediately when first setting up 2FA.
-
-
-
We're going to define a has-many relationship for a user's second factors, to be able to support multiple second factor types, e.g. TOTP, backup codes, or hardware keys.
-
-
apps.apple.com apps.apple.com
-
No support group discussions as far as I can tell ("Smart Lock" is too generic to really find anything).
too generic
-
-
www.raulpacheco.org www.raulpacheco.org
-
How to Write a Thesis (Umberto Eco) - my reading notes<br /> by Raul Pacheco-Vega
perfunctory positive review; no great insight
-
-
www.jowr.org www.jowr.org
-
Schiller, Melanie. “Ahrens, S. (2017). How to Take Smart Notes: One Simple Technique to Boost Writing, Learning and Thinking for Students, Academics and Nonfiction Book Writers.” Journal of Writing Research 9, no. 2 (October 15, 2017): 227–31. https://doi.org/10.17239/jowr-2017.09.02.05.
-
-
scholarworks.umass.edu scholarworks.umass.edu
-
Noteworthy for its longstanding influence is thebook “Nonparametric statistics for the behavioralsciences” by Siege
Highly cited book from 1956!
Siegel (1956) pointed out that traditional parametric tests should not be used with extremely small samples, because these tests have several strong assumptions underlying their use. The t-test requires that observations are drawn from a normally distributed population and the two-sample t-test requires that the two populations have the same variance. According to Siegel (1956), these assumptions cannot be tested when the sample size is small. Siegel (1957) stated that “if samples as small as 6 are used, there is no alternative to using a nonparametric statistical test unless the nature of the population distribution is known exactly” (p. 18).
-
-
www.ncbi.nlm.nih.gov www.ncbi.nlm.nih.gov
-
Recently, redox-responsive biomolecules such as phenazines have been used in several electrochemical strategies to interrogate a range of biological activities30,31 and to control gene expression in living cells32,33, where the redox status of the biomolecules could be measured or manipulated by application of electronic potentials
-
-
journals.plos.org journals.plos.org
-
when to use parametric versus nonparametric tests [8,9,10]
Tags
Annotators
URL
-
-
-
Sort Files in Folders.py
Here we commit to the Fever Dream
This is the page where the story is. The story is told through the three C's. Commits, Code and Comments. Wander through.
-
-
biblioracle.substack.com biblioracle.substack.com
-
If we assume students want to learn - and I do - we should show our interest in their learning, rather than their performance.
-
Value the process, rather than the product.
Good writing is often about practices and process to arrive at an end product and not just the end product itself.
Writing is a means to an end, but most don't have the means to begin with.
Writing with a card index, zettelkasten, commonplace book or other related tools can dramatically help almost any writer because it provides them with a means from the start rather than facing a blank page and having to produce whole cloth in bulk.
-
-
-
Mercury/Jupiter midpoint
Mercury - Communication, / Jupiter - Expansion
-
-
-
The genre kicked off with “Maps of Time” (2004), by David Christian, and includes such practitioners as Mr. Harari, Steven Pinker, Jared Diamond and Francis Fukuyama.
Books similar to "Guns, Germs and Steel"
-
-
www.ncbi.nlm.nih.gov www.ncbi.nlm.nih.gov
-
-
Back to the basics: Identifying and addressing underlying challenges in achieving high quality and relevant health statistics for indigenous populations in Canada
-
-
takingnotenow.blogspot.com takingnotenow.blogspot.com
-
Not sure why Manfred Kuehn removed this website from Blogger, but it's sure to be chock full of interesting discussions and details on his note taking process and practice. Definitely worth delving back several years and mining his repository of articles here.
http://takingnotenow.blogspot.com/<br /> archive: https://web.archive.org/web/20230000000000*/http://takingnotenow.blogspot.com/
-
-
www.ebay.com www.ebay.com
-
Vintage Memindex Wilson Wood Box 1937-38 Diary Planner Date Keeper Ephemera
Includes particularly good image of the individual day cards:
Notice that the tabs are done as 1/6th as most of these systems were manufactured/sold with out including Sunday.
-
-
www.npmjs.com www.npmjs.com
Tags
Annotators
URL
-
-
www.tandfonline.com www.tandfonline.com
-
www.mailjet.com www.mailjet.com
-
Send me the Mailjet newsletter. I expressly agree to receive the newsletter and know that I can easily unsubscribe at any time.
-
-
ebookcentral.proquest.com ebookcentral.proquest.com
Tags
Annotators
URL
-
-
www.filmsforaction.org www.filmsforaction.org
-
-
Title
- Revolution and American Indians: “Marxism is as Alien to My Culture as Capitalism"
-
Author
- Russell Means
-
Context
- The following speech was given by Russell Means in July 1980, before several thousand people who had assembled from all over the world for the Black Hills International Survival Gathering, in the Black Hills of South Dakota.
- It was Russell Means's most famous speech.
-
-
-
www.nature.com www.nature.com
-
The black line in Fig. 5 shows that redistribution is not enough; if everyone’s emissions are equalized at escape from poverty levels, then we would still overshoot the climate boundaries
- First stage of characterizing the Safe and Just Corridor
- The black line in Fig. 5 shows that
- redistribution is not enough
- if everyone’s emissions are equalized at escape from poverty levels, then
- we would STILL overshoot the climate boundaries (annotator's emphasis)
- hypothetical pressure from 62% of humanity that is lacking humane access to resources is equal to the pressure exerted by 4% of the elits of humanity
-
-
stackoverflow.com stackoverflow.com
-
As an aside, I think I now prefer this technique to Python for at least one reason: passing arguments to the decorator method does not make the technique any more complex. Contrast this with Python: <artima.com/weblogs/viewpost.jsp?thread=240845>
-
When you call 'foo' in Ruby, what you're actually doing is sending a message to its owner: "please call your method 'foo'". You just can't get a direct hold on functions in Ruby in the way you can in Python; they're slippery and elusive. You can only see them as though shadows on a cave wall; you can only reference them through strings/symbols that happen to be their name. Try and think of every method call 'object.foo(args)' you do in Ruby as the equivalent of this in Python: 'object.getattribute('foo')(args)'.
-
def document(f): def wrap(x): print "I am going to square", x f(x) return wrap @document def square(x): print math.pow(x, 2) square(5)
-