- Oct 2024
-
www.carnegie.org www.carnegie.org
-
That this talent for organization and management is rare among men is proved by the fact that it invariably secures for its possessor enormous rewards, no matter where or under what laws or conditions.
for - critique - extreme wealth a reward for rare management skills - Andrew Carnegie - The Gospel of Wealth - Mondragon counterexample - to - stats - Mondragon pay difference between highest and lowest paid - article - In this Spanish town, capitalism actually works for the workers - Christian Science Monitor - Erika Page - 2024, June 7
critique - extreme wealth a reward for rare management skills - Andrew Carnegie - The Gospel of Wealth - Mondragon counterexample - This is invalidated today by large successful cooperatives such as Mondragon
to - stats - Mondragon corporation - comparison of pay difference between highest paid and lowest paid - https://hyp.is/QAxx-o14Ee-_HvN5y8aMiQ/www.csmonitor.com/Business/2024/0513/income-inequality-capitalism-mondragon-corporation
Tags
- to - stats - Mondragon pay difference between highest and lowest paid - article - In this Spanish town, capitalism actually works for the workers - Christian Science Monitor - Erika Page - 2024, June 7
- critique - extreme wealth a reward for rare management skills - Andrew Carnegie - The Gospel of Wealth - Mondragon counterexample
Annotators
URL
-
- Sep 2024
-
4thgenerationcivilization.substack.com 4thgenerationcivilization.substack.com
-
Society was thus ruled largely through a bipartite structure of oratores and bellatores, clerics and warriors, with little place for the lot of ordinary workers.
for - false dichotomy - common throughout history - clerics and warriors - alienated masses of the ordinary workers - Benjamin Suriano
-
- Aug 2024
-
theanarchistlibrary.org theanarchistlibrary.org
-
Democratic Union Party (PYD)
-
- Jul 2024
-
www.reddit.com www.reddit.com
-
"The factory cannot only look at the profit index. It must distribute wealth, culture, services, democracy. I think factory for man, not man for factory, right? The divisions between capital and labour, industry and agriculture, production and culture must be overcome. Sometimes, when I work late I see the lights of the workers working double shifts, the clerks, the engineers, and I feel like going to pay my respects." —Adriano Olivetti
quote likely from Incontro con la Olivetti (Giorgio Ferroni, 1950) via the Archivio Nazionale Cinema Impresa
via https://www.reddit.com/r/typewriters/comments/1e5gz0i/in_me_non_c%C3%A8_che_futuro/
-
- May 2024
-
4thgenerationcivilization.substack.com 4thgenerationcivilization.substack.com
-
open source paradigms, with its copyleft licensing scheme
for - adjacency - open source - copyleft - Achilles Heel - unpaid workers - predatory capitalism
adjacency - between - open source - copyleft - Achilles Heel - predatory capitalism - unpaid workers - adjacency statement - The Achilles Heel of the open source copyleft system is that it allows everyone to participate. Everyone can look at the innovation, including corporate raiders in it for their own self-interest. - This enables predatory capitalism. The well-capitalized corporations take the best open source ideas and integrate them into their own private systems. With their abundant capitalization, they can maintain the existent structural inequality - Meanwhile, most open source software is maintained by underpaid programmers
-
- Apr 2024
-
www.vox.com www.vox.com
-
The American Psychiatric Association noted that police are also more likely to use excessive force when they interact with unhoused people with mental illness. Even when “well-intentioned law enforcement responders” respond to calls for help, according to the Substance Abuse and Mental Health Services Administration, the situations often escalate due to “the presence of police vehicles and armed officers that generate anxiety.”
-
Willison’s research found that 22 percent of mayors from over 120 cities station their homelessness staff within police departments. Even among those cities that station homeless outreach teams elsewhere, most still include formal roles for police. Seventy-six percent of homeless outreach teams formally involve the police, per another study she co-published last year.
-
-
archive.org archive.org
-
Lisa, Apple's demonstration of its leadership,in bringing technology to the knowledge worker.
Use of "knowledge worker" in a 1983 advertisement for the Lisa computer from Apple.
-
- Dec 2023
- Oct 2023
-
blog.cloudflare.com blog.cloudflare.com
-
While the interface among services is HTTP, the networking is not. In fact, there is no networking! Unlike the typical “microservice architecture,” where services communicate over a network and can suffer from latency or interruption, service bindings are a zero-cost abstraction. When you deploy a service, we build a dependency graph of its service bindings, then package all of those services into a single deployment. When one service invokes another, there is no network delay; the request is executed immediately.This zero-cost model enables teams to share and reuse code within their organizations, without sacrificing latency or performance.
-
-
developers.cloudflare.com developers.cloudflare.com
-
github.com github.com
- Sep 2023
-
medium.com medium.com
- Aug 2023
-
mswjs.io mswjs.io
-
gitlab.com gitlab.com
Tags
Annotators
URL
-
-
developers.cloudflare.com developers.cloudflare.com
-
stackoverflow.com stackoverflow.com
-
```toml type = "webpack" webpack_config = "webpack.config.js"
these will be used in production
vars = { WORKER_ENV = "production", SENTRY_ENABLED = true }
[env.local]
these will be used only when --env=local
vars = { WORKER_ENV = "local", SENTRY_ENABLED = false } ```
wrangler dev --env=local
-
-
developers.cloudflare.com developers.cloudflare.com
-
```js // Auth Worker
export default { async fetch(request, env) { // Read x-custom-token header and make sure it matches SECRET_TOKEN if (request.headers.get('x-custom-token') === env.SECRET_TOKEN) { return new Response('Request allowed', { status: 200 }); } else { return new Response('x-custom-token does not match, request not allowed', { status: 403 }); } }, }; ```
```js // Gateway Worker
export default { async fetch(request, env) { // Fetch AUTH service and pass request const authResponse = await env.auth.fetch(request.clone());
// Return response from the AUTH service if the response status is not 200 // It would return 403 'x-custom-token does not match, request not allowed' response in such case if (authResponse.status !== 200) { return authResponse; } // Request allowed // You can write application logic here // In this case we delegate the logic to an `application` Worker return await env.application.fetch(request)
}, }; ```
-
- Jul 2023
-
kit.svelte.dev kit.svelte.dev
-
blog.cloudflare.com blog.cloudflare.com
-
blog.cloudflare.com blog.cloudflare.com
Tags
Annotators
URL
-
-
developers.cloudflare.com developers.cloudflare.com
-
developers.cloudflare.com developers.cloudflare.com
-
js export default { async tail(events) { fetch("https://example.com/endpoint", { method: "POST", body: JSON.stringify(events), }) } }
-
-
developers.cloudflare.com developers.cloudflare.com
-
``` wrangler dev --test-scheduled
$ curl "http://localhost:8787/__scheduled?cron=++++*" ```
-
-
developers.cloudflare.com developers.cloudflare.com
-
js export default { async scheduled(event, env, ctx) { ctx.waitUntil(doSomeTaskOnASchedule()); }, };
-
-
developers.cloudflare.com developers.cloudflare.com
Tags
Annotators
URL
-
-
developers.cloudflare.com developers.cloudflare.com
Tags
Annotators
URL
-
-
blog.cloudflare.com blog.cloudflare.com
Tags
Annotators
URL
-
-
blog.cloudflare.com blog.cloudflare.com
-
github.com github.com
Tags
Annotators
URL
-
-
developers.cloudflare.com developers.cloudflare.com
-
developers.cloudflare.com developers.cloudflare.com
Tags
Annotators
URL
-
-
developers.cloudflare.com developers.cloudflare.com
-
github.com github.com
-
github.com github.com
-
developers.cloudflare.com developers.cloudflare.com
-
The Hibernation API allows a Durable Object that is not currently running an event handler, such as handling a WebSocket message, HTTP request, or alarm, to be removed from memory while keeping its WebSockets connected (“hibernation”).
-
- Jun 2023
-
blog.cloudflare.com blog.cloudflare.com
-
developers.cloudflare.com developers.cloudflare.com
-
blog.cloudflare.com blog.cloudflare.com
-
cloudflare.tv cloudflare.tv
-
jeffy.info jeffy.info
-
astro-sw-demo.netlify.app astro-sw-demo.netlify.appAstro1
Tags
Annotators
URL
-
- May 2023
-
github.com github.com
-
Workers Types Generator
-
-
github.com github.com
-
Hey! Thanks for raising this. As pointed out earlier in the thread, the workerd npm distribution is currently incompatible with Debian 11 "Bullseye", so won't work with any distro based off that (e.g. Ubuntu 20.04). Debian 12 "Bookworm" based distros (e.g. Ubuntu 22.04) should work, provided you apt install libc++1. We're working on getting a statically linked version of workerd published that should work on older Linux versions. No timeline on when this will be available though.
-
-
github.com github.com
-
Figured it out. Cache-Control header is required.
js const headers = { 'Cache-Control': 'public, max-age=604800' }; const request = new Request('https://foobar.com/') const cacheResponse = new Response('bar',{ headers }) const cache = caches.default await cache.put(request, cacheResponse) const response = await cache.match(request);
-
-
developers.cloudflare.com developers.cloudflare.com
-
blog.cloudflare.com blog.cloudflare.com
-
🥳
```js import { connect } from 'cloudflare:sockets';
export default { async fetch(req: Request) { const gopherAddr = "gopher.floodgap.com:70"; const url = new URL(req.url);
try { const socket = connect(gopherAddr); const writer = socket.writable.getWriter() const encoder = new TextEncoder(); const encoded = encoder.encode(url.pathname + "\r\n"); await writer.write(encoded); return new Response(socket.readable, { headers: { "Content-Type": "text/plain" } }); } catch (error) { return new Response("Socket connection failed: " + error, { status: 500 }); }
} };
ts connect(address: SocketAddress | string, options?: SocketOptions): Socket
declare interface Socket { get readable(): ReadableStream; get writable(): WritableStream; get closed(): Promise<void>; close(): Promise<void>; startTls(): Socket; }
declare interface SocketOptions { secureTransport?: string; allowHalfOpen: boolean; }
declare interface SocketAddress { hostname: string; port: number; } ```
-
- Apr 2023
-
github.com github.com
-
blog.cloudflare.com blog.cloudflare.com
Tags
Annotators
URL
-
-
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?
-
- Mar 2023
-
workers.tools workers.tools
-
HTML templating and streaming response library for Worker Runtimes such as Cloudflare Workers.
js function handleRequest(event: FetchEvent) { return new HTMLResponse(pageLayout('Hello World!', html` <h1>Hello World!</h1> ${async () => { const timeStamp = new Date( await fetch('https://time.api/now').then(r => r.text()) ); return html`<p>The current time is ${timeEl(timeStamp)}.</p>` }} `)); }
Tags
Annotators
URL
-
-
blog.cloudflare.com blog.cloudflare.com
Tags
Annotators
URL
-
-
blog.cloudflare.com blog.cloudflare.com
- Feb 2023
-
github.com github.com
-
```js import type { EntryContext } from "@remix-run/cloudflare"; import { RemixServer } from "@remix-run/react"; import isbot from "isbot"; import { renderToReadableStream } from "react-dom/server";
const ABORT_DELAY = 5000;
const handleRequest = async ( request: Request, responseStatusCode: number, responseHeaders: Headers, remixContext: EntryContext ) => { let didError = false;
const stream = await renderToReadableStream( <RemixServer context={remixContext} url={request.url} abortDelay={ABORT_DELAY} />, { onError: (error: unknown) => { didError = true; console.error(error);
// You can also log crash/error report }, signal: AbortSignal.timeout(ABORT_DELAY), }
);
if (isbot(request.headers.get("user-agent"))) { await stream.allReady; }
responseHeaders.set("Content-Type", "text/html"); return new Response(stream, { headers: responseHeaders, status: didError ? 500 : responseStatusCode, }); };
export default handleRequest; ```
-
-
developers.cloudflare.com developers.cloudflare.com
-
developers.cloudflare.com developers.cloudflare.com
-
developers.cloudflare.com developers.cloudflare.com
- Jan 2023
-
deno.land deno.land
-
- Dec 2022
-
-
-
-
-
webauthn.qwtel.workers.dev webauthn.qwtel.workers.dev
Tags
Annotators
URL
-
-
blog.cloudflare.com blog.cloudflare.com
Tags
Annotators
URL
-
-
developers.cloudflare.com developers.cloudflare.com
- Nov 2022
-
developers.cloudflare.com developers.cloudflare.com
-
developers.cloudflare.com developers.cloudflare.com
-
developers.cloudflare.com developers.cloudflare.com
-
Pages offers developers the ability to define a _worker.js file in the output directory of your Pages project.
-
-
developers.cloudflare.com developers.cloudflare.com
Tags
Annotators
URL
-
-
billyoppenheimer.com billyoppenheimer.com
-
He has a warehouse of notecards with ideas and stories and quotes and facts and bits of research, which get pulled and pieced together then proofread and revised and trimmed and inspected and packaged and then shipped.
While the ancients thought of the commonplace as a storehouse of value or a treasury, modern knowledge workers and content creators might analogize it to a factory where one stores up ideas in a warehouse space where they can be easily accessed, put into a production line where those ideas can be assembled, revised, proofread, and then package and distributed to consumers (readers).
(summary)
-
- Oct 2022
-
workers.tools workers.tools
Tags
Annotators
URL
-
-
Local file Local file
-
The reason theytreasure their smallest experiences is because, in thecourse of a lifetime, a modem man has so very littlepersonal experience, and yet experience is so important asa source of good intellectual work.
The antecedent for "they" here is "accomplished thinkers".
-
whether he knows it or not, the intellec-tual workman forms his own self as he works towards theperfection of his craft.
Here Mills seems to be defining (in 1952) an "intellectual workman" as an academic, but he doesn't go as broad as a more modern "knowledge worker" (2022) which includes those who broadly do thinking in industry as well as in academia. His older phrase also has a more gendered flavor to it that knowledge worker doesn't have now.
-
- Sep 2022
-
blog.cloudflare.com blog.cloudflare.com
Tags
Annotators
URL
-
-
blog.cloudflare.com blog.cloudflare.com
Tags
Annotators
URL
-
-
community.cloudflare.com community.cloudflare.com
-
egghead.io egghead.io
- Aug 2022
-
developers.cloudflare.com developers.cloudflare.com
-
workers.js.org workers.js.org
-
-
developers.cloudflare.com developers.cloudflare.com
-
twitter.com twitter.com
-
Prof. Gavin Yamey MD MPH. (2021, October 15). “Italy set a new bar on Friday for major Western democracies seeking to move beyond the pandemic by putting in place a sweeping law that requires the nation’s entire work force—Public and private—To have government-issued health passes.” https://t.co/pBOR37rhhq [Tweet]. @GYamey. https://twitter.com/GYamey/status/1448959207093452801
-
-
twitter.com twitter.com
-
ReconfigBehSci on Twitter: “RT @dgurdasani1: 3.5% of health and care workers already have long COVID- the highest across all occupations. How can we expect the NHS to…” / Twitter. (n.d.). Retrieved December 23, 2021, from https://twitter.com/SciBeh/status/1474026547753463817
-
- Jul 2022
-
developers.cloudflare.com developers.cloudflare.com
-
drive.google.com drive.google.com
-
Many of the workers reported that first thing in themorning, or after any interruption in their thought(like a ‘phone call), they have the “where was 1?”problem in a complex and ill-defined space of ideas.The layout of physical materials on their desk givesthem powerful and immediate contextual cues torecover a complex set of threads without difilcultyand delay, “this is my whole context, these are mypersonal piles”
Following interruptions by colleagues or phone calls at work, people may frequently ask themselves "where was I?" more frequently than "what was I doing?" This colloquialism isn't surprising as our memories for visual items and location are much stronger than actions. Knowledge workers will look around at their environments for contextual clues for what they were doing and find them in piles of paper on their desks, tabs in their computer browser, or even documents (physical or virtual) on their desktops.
-
Mander, R., Salomon, G. and Wong, Y. A PileMetaphor for Supporting Casual Organisationof Information. Proceedings of Human Factorsin Computing Systems CHI’92, pp 627-634,1992.
The quote from this paper references Mander 1992:
It seems that knowledge workers use physical space, such as desks or floors, as a temporary holding pattern for inputs and ideas which they cannot yet categorise or even decide how they might use [12].
leads me to believe that the original paper has information which supports office workers using their physical environments as thinking and memory spaces much as indigenous peoples have for their knowledge management systems using orality and memory.
-
Many knowledge workers have extremely cluttereddesks and floors and yet are seriously disrupted bychanges made to this apparent “muddle” or byneeding to move offices regularly. This supportsearlier studies of otllce work [10, 11]. It seems thatthis apparent “muddle” plays a number of importantroles for them in their work:-
For scholars of orality, the value of the messiness in many knowledge workers' work spaces is probably not surprising. It's likely that these workers are using their local environment as oral cultures have since time immemorial. They're creating physical songlines or memory palaces in their local environment to which they're spatially attaching memories of the work they're doing, performing, or need to perform. This allows them to offload some of their memory work, storage, and retention to items in their physical space.
-
Unfortunately, many corporate software programsaim to level or standardise the differences betweenindividual workers. In supporting knowledgeworkers, we should be careful to provide tools whichenable diversification of individuals’ outputs.Word-processors satisfi this criterion; tools whichembed a model of a knowledge worker’s task in thesoftware do not.
Tools which allow for flexibility and creativity are better for knowledge workers than those which attempt to crystalize their tasks into ruts. This may tend to force the outputs in a programmatic way and thereby dramatically decrease the potential for innovative outputs. If the tools force the automation of thought without a concurrent increase in creativity then one may as well rely on manual labor for their thinking.
This may be one of the major flaws of tools for thought in the educational technology space. They often attempt to facilitate the delivery of education in an automated way which dramatically decreases the creativity of the students and the value of the overall outputs. While attempting to automate education may suit the needs of institutions which are delivering the education, particularly with respect to the overall cost of delivery, the automation itself is dramatically at odds with the desire to expand upon ideas and continue innovation for all participants involved. Students also require diverse modes of input (seen/heard) as well as internal processing followed by subsequent outputs (written/drawn/sculpted/painted, spoken/sung, movement/dance). Many teachers don't excel at providing all of these neurodiverse modes and most educational technology tools are even less flexible, thus requiring an even larger panoply of them (often not interoperable because of corporate siloing for competitive reasons) to provide reasonable replacements. Given their ultimate costs, providing a variety of these tools may only serve to increase the overall costs of delivering education or risk diminishing the overall quality. Educators and institutions not watching out for these traps will tend to serve only a small portion of their intended audiences, and even those may be served poorly as they only receive a limited variety of modalities of inputs and outputs. As an example Western cultures' overreliance on primary literacy modes is their Achilles' heel.
Tools for thought should actively attempt to increase the potential solution spaces available to their users, while later still allowing for focusing of attention. How can we better allow for the divergence of ideas and later convergence? Better, how might we allow for regular and repeated cycles of divergence and convergence? Advanced zettelkasten note taking techniques (which also allow for drawing, visual, auditory and other modalities beyond just basic literacy) seem to allow for this sort of practice over long periods of time, particularly when coupled with outputs which are then published for public consumption and divergence/convergence cycles by others.
This may also point out some of the stagnation allowed by social media whose primary modes is neither convergence nor divergence. While they allow for the transmission/communication portion, they primarily don't actively encourage their users to closely evaluate the transmitted ideas, internalize them, or ultimately expand upon them. Their primary mode is for maximizing on time of attention (including base emotions including excitement and fear) and the lowest levels of interaction and engagement (likes, retweets, short gut reaction commentary).
-
the definingcharacteristic of knowledge workers is that they arethemselves changed by the information theyprocess.’ So, the workers interviewed saw theirvalue to an organisation being to understand a bodyof knowledge and generate new information fromthis understanding which changed either theorganisation or its customer in a direct way.
a more refined and nuanced definition of knowledge workers than Peter Drucker's 1973 definition.
-
I thereforeidentified twelve knowledge workers in a range ofU. S, and European companies, Their job functionsincluded: design, advertising, marketing,management consultancy, broadcasting, law, financeand research.
Areas of knowledge work (as determined in 1994 at least) included design, advertising, marketing, management consultancy, broadcasting, law, finance, and research.
-
In the rest of this section, wherever I say “knowledge worker”, I strictly mean only the small set I sampled.
CAUTION!
Built in assumptions which may not extrapolate.
This caveat is also a strong indication of the state-of-the-art of the level of knowledge worker research in 1994.
-
Peter Drucker, the distinguished commentator onorganisation and management, has popularised theterm “knowledge worker” to describe the role of agrowing percentage of employees in businessorganisations: “The manual worker is yesterday..,..The basic capital resource, the fundamentalinvestment, but also the cost centre for a developedeconomy is the knowledge worker who puts to work
what he has learned in systematic education, that is, concepts, ideas and theories, rather than the man who puts to work manual skill or muscle, ” [5]. 5. Drucker, P. F. Management: Tasks, Responsibilities and Practices, Harper & Row; New York, 1973.
Influential management consultant, educator, and author Peter Drucker helped to popularize the concept of the "knowledge worker" by way of his book Management: Tasks, Responsibilities and Practices (Harper & Row, 1973).
Who/where is the origin of the neologism/idea of "knowledge worker"?
Tags
- neologisms
- neurodiversity
- pedagogy
- where was I?
- orality
- memory palaces
- art
- combinatorial creativity
- personal knowledge management
- location
- method of loci
- education reform
- EdTech
- open questions
- memory
- history
- contextual clues
- creativity
- Peter F. Drucker
- tools for thought
- songlines
- tools for thought affordances
- orality vs. literacy
- definitions
- social media
- divergence/convergence
- knowledge workers
- orality and memory
- emotions
Annotators
URL
-
-
developer.chrome.com developer.chrome.com
-
wicg.github.io wicg.github.io
Tags
Annotators
URL
-
- Jun 2022
-
en.wikipedia.org en.wikipedia.org
-
Weber left home and lived in poverty while working as a street-corner evangelist and social activist for two years with the evangelical Church Army Workers, an organization similar to the Salvation Army, preaching and singing hymns on street corners and singing and playing the organ in rescue missions in red-light districts in Pittsburgh and New York,[13][33] until the Church Army Workers disbanded in 1900.
This is interesting background given her subsequent blockbuster film Where are My Children? (Universal Studios, 1916) which covered abortion and birth control.
-
-
Local file Local file
-
The Essential Habits ofDigital Organizers
This chapter is too entailed with productivity advice, which can be useful to some, but isn't as note taking focused for those who probably need more of that.
What is the differentiator between knowledge workers, knowledge creators, students, researchers, academics. How do we even clearly delineate knowledge worker as a concept. It feels far too nebulous which makes it more difficult to differentiate systems for them to use for improving productivity and efficiency.
-
-
miniflare.dev miniflare.dev
-
- May 2022
- Apr 2022
-
twitter.com twitter.com
-
Eric Topol. (2021, April 23). Just published @TheLancet: Effect of vaccine in >23,000 health care workers https://t.co/ohy3VyHM3C Dose response: No vaccine 977 infections; 1 dose 71 infections; 2 doses 9 infections (14|8|4 per 10,000 person-days) "can prevent both symptomatic and asymptomatic infection " https://t.co/EybVBFmXrU [Tweet]. @EricTopol. https://twitter.com/EricTopol/status/1385729322472730626
-
-
twitter.com twitter.com
-
Kamlesh Khunti. (2021, February 14). Our pre-print publication on #COVIDVaccine hesitancy in health care workers. Vaccination rates: White 70% South Asian 59% Black 37% ⬆️ rates in Allied HCPs & administrative/exe staff vs Drs Urgently need to identify barriers & overcome these https://t.co/hBYJFCBzyi https://t.co/OLeNZrswcN [Tweet]. @kamleshkhunti. https://twitter.com/kamleshkhunti/status/1360926907978682372
-
-
twitter.com twitter.com
-
David Leonhardt. (2021, February 19). For weeks, the public messages about vaccines have been more negative than the facts warrant. Now we are seeing the cost: A large percentage of Americans wouldn’t take a vaccine if offered one. 🧵... [Tweet]. @DLeonhardt. https://twitter.com/DLeonhardt/status/1362767520764203011
-
-
blog.opstree.com blog.opstree.com
-
developers.cloudflare.com developers.cloudflare.com
-
Cache using fetch
Determine how to cache a resource by setting TTLs, custom cache keys, and cache headers in a fetch request.
```js async function handleRequest(request) { const url = new URL(request.url);
// Only use the path for the cache key, removing query strings // and always store using HTTPS, for example, https://www.example.com/file-uri-here const someCustomKey =
https://${url.hostname}${url.pathname}
;let response = await fetch(request, { cf: { // Always cache this fetch regardless of content type // for a max of 5 seconds before revalidating the resource cacheTtl: 5, cacheEverything: true, //Enterprise only feature, see Cache API for other plans cacheKey: someCustomKey, }, }); // Reconstruct the Response object to make its headers mutable. response = new Response(response.body, response);
// Set cache control headers to cache on browser for 25 minutes response.headers.set('Cache-Control', 'max-age=1500'); return response; }
addEventListener('fetch', event => { return event.respondWith(handleRequest(event.request)); }); ```
Caching HTML resources
Setting the cache level to Cache Everything will override the default cacheability of the asset. For time-to-live (TTL), Cloudflare will still rely on headers set by the origin.
js // Force Cloudflare to cache an asset fetch(event.request, { cf: { cacheEverything: true } });
-
-
felixgerschau.com felixgerschau.com
- Mar 2022
-
www.theguardian.com www.theguardian.com
-
Al Newman. (2022, March 8). @danaparish @jennybluebird2U To your point: Https://t.co/CsULpIACoI [Tweet]. @AlNewman_. https://twitter.com/AlNewman_/status/1501056062262333441
-
-
betterprogramming.pub betterprogramming.pub
-
blog.cloudflare.com blog.cloudflare.com
-
blog.cloudflare.com blog.cloudflare.com
Tags
Annotators
URL
-
-
blog.cloudflare.com blog.cloudflare.com
- Feb 2022
-
psyarxiv.com psyarxiv.com
-
Bower, Dr Marlee, Scarlett Smout, Amarina Donohoe-Bales, Lily Teesson, Eleisha Lauria, Julia Boyle, Philip Batterham, et al. ‘A Hidden Pandemic? An Umbrella Review of Global Evidence on Mental Health in the Time of COVID-19’. PsyArXiv, 14 January 2022. https://doi.org/10.31234/osf.io/bzpvw.
-
- Jan 2022
-
developers.google.com developers.google.com
-
www.abc.net.au www.abc.net.au
-
Pathology insider describes unworkable conditions in SydPath PCR labs. (2022, January 10). ABC News. https://www.abc.net.au/news/2022-01-10/pathology-insider-describes-unworkable-conditions/100744536
-
- Oct 2021
-
-
Its cooperatives employ more than 70,000 people in Spain, making it one of the nation’s largest sources of paychecks. They have annual revenues of more than 12 billion euros ($14.5 billion).
-
Mondragón
-
-
en.wikipedia.org en.wikipedia.org
-
Mondragon Corporation
-
- Sep 2021
-
www.theguardian.com www.theguardian.com
-
Rafiquddin, Sadia. “Doctors Treating Unvaccinated Covid Patients Are Succumbing to Compassion Fatigue.” The Guardian, September 18, 2021, sec. US news. https://www.theguardian.com/us-news/2021/sep/18/doctors-caring-unvaccinated-covid-patients.
-
-
us4.forward-to-friend.com us4.forward-to-friend.com
-
Three days before Labor Day, on Friday, September 2, 1921, the U.S. Army intervened on the side of coal companies against striking coal miners, marking the end of the Battle of Blair Mountain in southern West Virginia. The battle was the climax of two decades of low-intensity warfare across the coalfields of Appalachia, as the West Virginia miners sought to unionize and mining companies used violent tactics to undermine their efforts. The struggle turned deadly.
-
-
- Aug 2021
-
www.hhs.gov www.hhs.gov
-
General, Office of the Surgeon. “Health Misinformation Reports and Publications.” Text. HHS.gov, July 14, 2021. https://www.hhs.gov/surgeongeneral/reports-and-publications/health-misinformation/index.html.
-
-
www.frontiersin.org www.frontiersin.org
-
Figueiras, Maria J., Jihane Ghorayeb, Mariana V. C. Coutinho, João Marôco, and Justin Thomas. ‘Levels of Trust in Information Sources as a Predictor of Protective Health Behaviors During COVID-19 Pandemic: A UAE Cross-Sectional Study’. Frontiers in Psychology 0 (2021). https://doi.org/10.3389/fpsyg.2021.633550.
-
-
www.thenation.com www.thenation.com
- Jul 2021
-
www.theatlantic.com www.theatlantic.com
-
So these two classes, rising professionals and sinking workers, which a couple of generations ago were close in income and not so far apart in mores, no longer believe they belong to the same country. But they can’t escape each other, and their coexistence breeds condescension, resentment, and shame.
This rings true to me. How can we reverse this tide?
-
-
www.nytimes.com www.nytimes.com
-
Bellafante, Ginia. “How to Survive a Plague, Part 2.” The New York Times, July 23, 2021, sec. New York. https://www.nytimes.com/2021/07/23/nyregion/Covid-Delta-Vaccination-AIDS.html.
-
-
theamericanscholar.org theamericanscholar.org
-
If we believe everyday work to be mindless, then that will affect the work we create in the future.
-
Joe learned the most efficient way to use his body by acquiring a set of routines that were quick and preserved energy. Otherwise he would never have survived on the line.
Sometime in the past six months I ran across a description of how migrant workers do this sort of activity in farming contexts. That article also pointed out the fact that the average person couldn't do this sort of work and that there was extreme value in it.
-
- Jun 2021
-
www.bmj.com www.bmj.com
-
Iacobucci, Gareth. ‘Covid:19: Ethnic Minority Health Staff Are Less Likely to Take up Vaccine, Early Data Show’. BMJ 372 (16 February 2021): n460. https://doi.org/10.1136/bmj.n460.
-
-
www.channel4.com www.channel4.com
-
Study suggests vaccine take-up at hospital trust lower among Black and Asian staff. (2021, February 15). Channel 4 News. https://www.channel4.com/news/study-suggests-vaccine-take-up-at-hospital-trust-lower-among-black-and-asian-staff
-
-
www.theguardian.com www.theguardian.com
-
the Guardian. “‘They Stormed the ICU and Beat the Doctor’: Health Workers under Attack,” June 7, 2021. http://www.theguardian.com/global-development/2021/jun/07/they-stormed-the-icu-and-beat-the-doctor-health-workers-under-attack.
-
-
lessonsfromthecrisis.substack.com lessonsfromthecrisis.substack.com
-
Crisis, L. F. T. (n.d.). The ‘noble lie’ on masks probably wasn’t a lie. Retrieved 7 June 2021, from https://lessonsfromthecrisis.substack.com/p/the-noble-lie-on-masks-probably-wasnt
-
- May 2021
-
-
Young people demand vaccination requirements for reopening—Axios. (n.d.). Retrieved May 29, 2021, from https://www.axios.com/vaccination-work-school-reopening-poll-7e8c2e4e-54b4-4831-8e51-146f13a26ca3.html
-
-
kit.svelte.dev kit.svelte.dev
-
Service workers act as proxy servers that handle network requests inside your app. This makes it possible to make your app work offline, but even if you don't need offline support (or can't realistically implement it because of the type of app you're building), it's often worth using service workers to speed up navigation by precaching your built JS and CSS.
-
-
www.thelancet.com www.thelancet.com
-
Hall, V. J., Foulkes, S., Saei, A., Andrews, N., Oguti, B., Charlett, A., Wellington, E., Stowe, J., Gillson, N., Atti, A., Islam, J., Karagiannis, I., Munro, K., Khawam, J., Chand, M. A., Brown, C. S., Ramsay, M., Lopez-Bernal, J., Hopkins, S., … Heeney, J. L. (2021). COVID-19 vaccine coverage in health-care workers in England and effectiveness of BNT162b2 mRNA vaccine against infection (SIREN): A prospective, multicentre, cohort study. The Lancet, 0(0). https://doi.org/10.1016/S0140-6736(21)00790-X
-
-
www.medrxiv.org www.medrxiv.org
-
Saadat, S., Tehrani, Z. R., Logue, J., Newman, M., Frieman, M. B., Harris, A. D., & Sajadi, M. M. (2021). Single Dose Vaccination in Healthcare Workers Previously Infected with SARS-CoV-2. MedRxiv, 2021.01.30.21250843. https://doi.org/10.1101/2021.01.30.21250843
-
-
www.propublica.org www.propublica.org
-
Martin, N. (n.d.). Nobody Accurately Tracks Health Care Workers Lost to COVID-19. So She Stays Up At Night Cataloging the Dead. ProPublica. Retrieved March 1, 2021, from https://www.propublica.org/article/nobody-accurately-tracks-health-care-workers-lost-to-covid-19-so-she-stays-up-at-night-cataloging-the-dead?token=k0iWSlfCBQl5DBRfyvJNIuVaKXSL22HN
-
- Apr 2021
-
reallifemag.com reallifemag.com
-
indifference to human drivers
Our week 8 module on Web 2.0 and the gig economy discussed this in more depth, and Barron alludes to this dynamic elsewhere in the article when describing both the typical user of an app like seamless and the typical profile of the gig economy worker who actually delivers their food - I appreciate the critiques of app design and user infantilization he is making here, but the article could have also discussed in more depth how these design choices help these companies to obfuscate and divert attention from the way they impact people besides the consumer. There is a whole class people whose primary interaction with these apps is on the back end- as struggling small business owners dependent on positive yelp reviews, delivery people, and rideshare drivers - maybe that is outside the purview of this article, but it would have been nice to see this angle explored a bit more.
Tags
Annotators
URL
-
- Mar 2021
-
www.jackfranklin.co.uk www.jackfranklin.co.uk
-
However, if these timeouts are moved into a web worker, they should run to time and not get de-prioritised by the browser.
-
-
www.telegraph.co.uk www.telegraph.co.uk
-
Smith, N. (2020, April 18). Taiwan’s Vice-President Chen Chien-jen on his country’s fight with Covid-19. The Telegraph. https://www.telegraph.co.uk/global-health/science-and-disease/taiwans-vice-president-chen-chien-jen-countrys-fight-covid-19/
-
-
twitter.com twitter.com
-
David R Tomlinson 💙. (2021, March 5). Truth. 💙 @FreshAirNHS @theRCN @TheBMA @mancunianmedic @DrLindaDykes @Chakladar_A @KGadhok https://t.co/Ke2C84KuaT https://t.co/C469qvrSoK [Tweet]. @DRTomlinsonEP. https://twitter.com/DRTomlinsonEP/status/1367962251211202566
Tags
- COVID-19
- is:tweet
- SARS-CoV-2
- PPE
- lang:en
- DHSC
- respiratory protection
- scientists
- policy contexts
- economic issues
- government
- health and care workers
- ethical guidelines
- misleading
- respiratory conditions
- guidance
- misinformation
- advisory bodies
- infections
- care homes
- PHE
- transmission
- variant
Annotators
URL
-
- Feb 2021
-
-
Coronavirus doctor’s diary: Karen caught Covid - and took it home. (2021, January 16). BBC News. https://www.bbc.com/news/stories-55682405
-
-
www.miraclecenter.org www.miraclecenter.org
-
A miracle is a universal blessing from God through me to all my brothers. It is the privilege of the forgiven to forgive.
The Prince of Peace, also known as Jesus or Jeshua or simply J calls YOU! To join his Holy Crusade in undoing your ego!
I need devoted teachers who share my aim of healing the mind. T-4.1.13
Once you have developed a thought system of any kind, you live by it and teach it. Your capacity for allegiance to a thought system may be misplaced, but it is still a form of faith and can be redirected. T-6.in.2
You have been called, together with your brother, to the most holy function this world contains. T-18.1.13
-
- Jan 2021
-
www.bloomberg.com www.bloomberg.com
-
ow the Coronavirus Recovery Is Changing Cities
Plosz. J., (2020/06/22)., How the Coronavirus Recovery Is Changing Cities. Retrieved from https://www.bloomberg.com/features/2020-city-in-recovery/?utm_medium=social&utm_campaign=socialflow-organic&utm_source=twitter&utm_content=citylab
-
-
redfin.engineering redfin.engineering
-
v1 tabs tightly couple to their v1 Cache; v2 tabs tightly couple to their v2 Cache. This tight coupling makes them “application caches.” The app must be completely shut down (all tabs closed) in order to upgrade atomically to the newest cache of code.
-
-
-
redfin.engineering redfin.engineering
-
If a Service Worker fails, it’s possible to break an entire website in ways that we can’t fix on the server side (or at least, not right away). Imagine this: your site appears to be down, but refreshing the page won’t help, because the browser isn’t even talking to your server; it’s just talking to your broken Service Worker.
-
As programmers, we sometimes have to work on tricky stuff, but then we say, “Well, it’s not rocket science.” But Service Workers are rocket science.
-
- Dec 2020
-
www.nature.com www.nature.com
-
Ledford, H., Cyranoski, D., & Noorden, R. V. (2020). The UK has approved a COVID vaccine—Here’s what scientists now want to know. Nature, 588(7837), 205–206. https://doi.org/10.1038/d41586-020-03441-8
-
- Nov 2020
-
-
Service Workers are very powerful. They allow offline functionality, push notifications, content caching, and more. They have a short lifetime, and the way they work is by waking up when they get an event (e.g., network requests, push notifications, connectivity changes) and then they start running only as long as the process needs it.
-
Service Workers are also helpful for offline caching and performance. You can write code to cache your application shell to work offline and populate its content using JavaScript.
-
- Oct 2020
-
www.scientificamerican.com www.scientificamerican.com
-
Daley, J. (2020). How to Avoid COVID while Voting. Scientific American. https://www.scientificamerican.com/article/how-to-avoid-covid-while-voting/
-
-
covid-19.iza.org covid-19.iza.org
-
IZA – Institute of Labor Economics. ‘COVID-19 and the Labor Market’. Accessed 6 October 2020. https://covid-19.iza.org/publications/dp13650/.
Tags
- COVID-19
- safety net policy
- is:report
- lang:en
- labour market
- social insurance
- policy makers
- immigrants
- less educated
- Department of Homeland Security (DHS)
- lower wages
- disadvantaged minorities
- American Community Survey
- researchers
- demographic market
- lockdown
- men
- Hispanics
- essential workers
- frontline workers
- microdata
Annotators
URL
-
- Sep 2020
-
www.huffpost.com www.huffpost.com
-
HuffPost UK. ‘The Coronavirus Is Creating A Mental Health Crisis For Health Care Workers’, 21 September 2020. https://www.huffpost.com/entry/health-care-workers-covid-mental-health_n_5f625a6ac5b6c6317cfed815.
-
-
www.nytimes.com www.nytimes.com
-
The New York Times (2020) C.D.C. Halts Evictions, Citing Covid-19 Risks. Retrieved from: https://www.nytimes.com/2020/09/01/world/covid-19-coronavirus.html?action=click&module=Top%20Stories&pgtype=Homepage#link-26bc7ab3
-
- Aug 2020
-
covid-19.iza.org covid-19.iza.org
-
Von Gaudecker. H. M., Holler. R., Janys. L., Siflinger. B., Zimpelmann. C. (2020). Labour Supply in the Early Stages of the COVID-19 Pandemic: Empirical Evidence on Hours, Home Office, and Expectations. Institute of labor economics. Retrieved from: https://covid-19.iza.org/publications/dp13158/
-
- Jun 2020
-
www.weforum.org www.weforum.org
-
Unemployment worries spike around the world as coronavirus remains top global concern. (n.d.). World Economic Forum. Retrieved June 29, 2020, from https://www.weforum.org/agenda/2020/06/coronavirus-unemployment-top-global-worries-ipsos/
-
-
-
COVID-19 is a threat to waste pickers. Here’s how to help them. (n.d.). World Economic Forum. Retrieved June 29, 2020, from https://www.weforum.org/agenda/2020/06/covid19-is-a-threat-to-waste-pickers-heres-how-to-help-them/
-
- May 2020
-
www.theguardian.com www.theguardian.com
-
Kale, S. (2020, May 26). “People were like animals!” How supermarket staff watched the coronavirus crisis unfold. The Guardian. https://www.theguardian.com/lifeandstyle/2020/may/26/people-were-like-animals-how-supermarket-staff-watched-coronavirus-crisis-unfold
-
- Feb 2020
-
www.bbc.com www.bbc.com
Tags
Annotators
URL
-
- Jul 2019
-
ir.aboutamazon.com ir.aboutamazon.com
-
Amazon announced that it will hire nearly 12,000 new employees across Europe in 2019, taking its permanent workforce in Europe to nearly 95,000 by the end of 2019. Amazon pledged to upskill 100,000 of its employees across the U.S. by 2025, dedicating over $700 million to provide employees across its corporate offices, tech hubs, fulfillment centers, retail stores, and transportation network with access to training programs that will help them move into more highly-skilled roles within or outside of the company. Programs include Machine Learning University, Amazon Technical Academy, and Career Choice.
More workers that can practically be enslaved in 55-hour-work weeks and sleep standing up: yeay!
-
- Oct 2018
-
www.w3.org www.w3.org
-
-
github.com github.com
-
launch a web worker that can require() in the browser with browserify
Tags
Annotators
URL
-
-
50linesofco.de 50linesofco.de
-
Workers, transferable objects and SharedArrayBuffer
-
-
github.com github.com
Tags
Annotators
URL
-
-
developer.mozilla.org developer.mozilla.org
- Sep 2018
-
developer.mozilla.org developer.mozilla.orgWorker1
Tags
Annotators
URL
-
- Jul 2017
-
docs.confluent.io docs.confluent.io
-
In distributed mode, you start many worker processes using the same group.id and they automatically coordinate to schedule execution of connectors and tasks across all available workers. I
Distributed workers.
group.id = "SHOUDL BE THE SAME FOR ALL WORKERS"
-