- Dec 2024
-
library.scholarcy.com library.scholarcy.com
-
he analysis reveals that media coverage is dominated by five themes: military justice, institutional structure, culture, gender/gender integration, and change. Gender is a relatively minor focus throughout media coverage, with attention to court cases dominating the majority of the coverage.
-
Institutional gaslighting includes political strategies to resist critiques of the institution or discredit evidence that undermines the authority or carefully crafted image of the institution.
-
Military exceptionalism is shaped by ideals of "good militaries" and "good soldiers," which are constructed as necessarily white, masculine, exclusive, and reproduced through the regulation of sex and the exclusion of women and racialized groups.
-
- Nov 2024
-
library.scholarcy.com library.scholarcy.com
-
and its management in state-buildin
-
worshiped Pan Hu, a legendary figure, as part of their New Year's celebrations.
more detailed, specific on beliefs
-
he treatment is anecdotal
-
"Miao albums" that were compiled by officials responsible for governing frontier areas during the late Yongzheng or early Qianlong periods. These albums contained illustrations and texts describing the customs and practices of different ethnic minority groups in southwest China.
-
Qing Imperial Illustrations of Tributary Peoples was based on direct observation,
-
China saw a rise in ethnographic representation of different peoples, including the development of a systematic ethnography of ethnic minority groups.
-
-
library.scholarcy.com library.scholarcy.com
-
The chapter also explores the development of anthropology and ethnography as academic disciplines, which began to take shape in the 19th century.
-
- Oct 2024
-
library.scholarcy.com library.scholarcy.com
-
Benjamin's travelogue is a product of his imagination, influenced by biblical authority and rumors, rather than actual geographical knowledge.
-
rather a way to link places along a real but somewhat abstracted route.
-
medieval understanding of travel writing.
-
- Feb 2024
-
npproduction.wpenginepowered.com npproduction.wpenginepowered.com
- Jan 2024
-
docdrop.org docdrop.org
-
one of the greatest martial arts artists ever was bruce lee who i actually read a lot of his writings
for - William Li influences - Bruce Lee - know yourself - key question to ask people - what do they really enjoy?
-
- Nov 2022
-
github.com github.com
-
Post.in_order_of(:type, %w[Draft Published Archived]).order(:created_at).pluck(:name) which generates SELECT posts.name FROM posts ORDER BY CASE posts.type WHEN 'Draft' THEN 1 WHEN 'Published' THEN 2 WHEN 'Archived' THEN 3 ELSE 4 END ASC, posts.created_at ASC
-
- Oct 2022
-
ghuntley.com ghuntley.com
-
spamming open-source as a growth strategy is a super bad idea
Tags
Annotators
URL
-
- Sep 2022
-
metalblueberry.github.io metalblueberry.github.io
-
Some people eventually realize that the code quality is important, but they lack of the time to do it. This is the typical situation when you work under pressure or time constrains. It is hard to explain to you boss that you need another week to prepare your code when it is “already working”. So you ship the code anyway because you can not afford to spent one week more.
-
- Jul 2022
-
gist.github.com gist.github.com
-
5.5 Logic, reason, and common sense are your best tools for synthesizing reality and understanding what to do about it.
5.5 Logic, reason, and common sense are your best tools for synthesizing reality and understanding what to do about it.
-
- May 2022
-
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
- 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.
- (Major Essay) Climax paragraph. 3
Annotators
URL
-
-
Local file Local file
-
Second, we shape the work before giving it to a team. A small senior group works in parallel to the cycle teams. They define the key elements of a solution before we consider a project ready to bet on. Projects are defined at the right level of abstraction: concrete enough that the teams know what to do, yet abstract enough that they have room to work out the interesting details themselves.
Tags
Annotators
-
-
tomcritchlow.com tomcritchlow.com
-
build a browser that comes pre-installed with node.js
Nah. Just stop programming directly against NodeJS to start with!
The Web platform is a multi-vendor standardized effort involving broad agreement to implement a set of common interfaces. NodeJS is a single implementation of a set of APIs that seemed good (to the NodeJS developers) at the time, and that could change whenever the NodeJS project decides it makes sense to.
(Projects like WebRun which try to provide a shim to let people continue to program against NodeJS's APIs but run the result in the browser is a fool's errand. Incredibly tempting, but definitely the wrong way to go about tackling the problem.)
-
- Aug 2021
-
granta.com granta.com
-
Always use the word ‘Africa’ or ‘Darkness’ or ‘Safari’ in your title.
I love the style in which this is written. While it appears to be a "how-to" guide, the author is doing nothing more than addressing the stereotypes that surround Africa. Turning this piece into a " how NOT to " guide.
Tags
Annotators
URL
-
- Jun 2021
-
hypothes.is hypothes.is
-
"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."
Tags
Annotators
URL
-
-
stackoverflow.com stackoverflow.com
-
Is there a way to select from multiple custom tables using ActiveRecord QueryMethods? I'm trying to replicate this SQL query using Ruby's ActiveRecord Query Methods. select employee.emplid, address.location from (....) employee, (....) address where employee.emplid = address.emplid
-
- Mar 2021
-
tylergaw.com tylergaw.com
-
This is a non-exhaustive list of other things I love;
-
- Feb 2021
-
github.com github.com
-
While Trailblazer offers you abstraction layers for all aspects of Ruby On Rails, it does not missionize you. Wherever you want, you may fall back to the "Rails Way" with fat models, monolithic controllers, global helpers, etc. This is not a bad thing, but allows you to step-wise introduce Trailblazer's encapsulation in your app without having to rewrite it.
Tags
- Trailblazer
- making changes / switching/migrating gradually/incrementally/step-wise/iteratively
- leaving the details of implementation/integration up to you
- abstractions
- newer/better ways of doing things
- focus on concepts/design/structure instead of specific/concrete technology/implementation
- freedom of user to override specific decision of an authority/vendor (software)
- focus on what it should do, not on how it should do it (implementation details; software design)
- rails: the Rails way
- allowing developer/user to pick and choose which pieces to use (allowing use with competing libraries; not being too opinionated; not forcing recommended way on you)
Annotators
URL
-
- Jan 2021
-
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)
-
- Nov 2020
-
button.dev button.dev
-
i like working on application frameworks, compilers, interpreters, and emulators.
-
-
jimmy.schementi.com jimmy.schementi.com
-
but know I know what I don't want to do. I definitely know I want to be an Engineer now, and it makes it more clear that I should start my own business.
-
- Sep 2020
-
github.com github.com
-
When the message say function was called outside component initialization first will look at my code and last at my configuration.
-
- Jul 2020
-
-
The second situation occurs when a person says unpleasant things about another when he or she ought to have known they are false. A reasonable person generally refrains from sharing negative information about others if he or she has reason to doubt its veracity.
-
- May 2016
-
developer.mozilla.org developer.mozilla.orgRegExp1
-
Standard built-in objects
something like this http://www.publicrecordcenter.com/canada_courts.htm and other stuff like https://duckduckgo.com/?q=parliaments+list&ia=web
-