- Jun 2024
-
-
perhaps 100 million human researcher equivalents running day and night t
for - stats - AI evolution - equivalent of 100 million human researchers working 24/7
stats - AI evolution - equivalent of 100 million human researchers working 24/7 - By 2027, the industry's aim is to have tens of millions of GPU training clusters, running - millions of copies of automated AI researchers, or the equivalent of - 100 million human AI researchers working 24/7
-
- Apr 2024
-
docdrop.org docdrop.org
-
-
for: Michel Bilbot, transcendental, transcendental - Kant, awakening, non-dual, nondual, nonduality, non-duality, emptiness, epoche, Maurice Merle-Ponty, perspective shift, perspective shift - transcendental
-
summary
- Michel Bilbot gives an extremely important talk on two related themes
- Kant's concept of the idea of transcendental
- Husserl's concept of epoche / phenomenological reduction
- definition here:
- comparison of two perspectives of science as
- panpsychism where atomic theories of materialism are held to be theories of everything
- Husserl's phenomenology of human experience
- Bilbot points out the situatedness each individual is born into life with. Even acts such as visually seeing reveal our situatedness as a seer with clues such as perspective that reveals structures of the seer such as vanishing point.
- Michel Bilbot gives an extremely important talk on two related themes
-
adjacency
- between
- Kant's transcendental
- Husserl / Maurice Merle-Ponty / Heidegger's phenomenology and epoche / phenomenological reduction methodology
- eastern mysticism and philosophical ideas:
- nonduality - dissolution of the self / other dualism
- awakening
- enlightenment
- emptiness
- adjacency statement
- Michel Bilbot establishes the important foundation of one of Kant's major life works on the transcendental, and how Husserl's phenomenology and related process of the phenomenological reduction (epoche) is critical to understanding Husserl and Kant.
- He then applies it to an analysis and comparison of science seen from two contrasting perspectives, atomic theories of panpsychism vs phenomenology.
- Bilbot reveals that Husserl was deeply influenced by Buddhist thought
- between
-
-
- Nov 2023
-
github.com github.com
-
Capybara.string(response.body)
const $html = Cypress.$(body)
-
- Sep 2023
-
docdrop.org docdrop.org
-
a transcendental is something that is, or not a thing, of course, but it's very well known and it has been well known for a very long time.
-
for: Kant's transcendental - in history, quote, quote - Upanishad, quote - Ernst Cassirer, quote - Michel Henry, quote - Giovanni Gentile, quote Edmund Husserl
-
paraphrase
- The transcendental cannot be an objective thought but is the condition for any objective thought
- Brihadaranyaka Upanishad
- Kant's transcendental is equivalent to the Braham
- it is never seen but is a seer
- it is never heard but is a hearer
- it is never thought but is the thinker
- it is never known but is the knower
- it is the source of things and the source of knowledge
- Kant's transcendental is equivalent to the Braham
- Ernst Cassirer
- Consciousness is a goal to which knowledge turns its back
- Michel Henry Consciousness cannot be shown, for it is the power to show.
- Giovanni Gentile
- Edmund Husserl
- transcendental turn
- the world is a sense for the transcendental ego
- the transcendental ego is presupposed by the senses
- transcendental turn
-
-
-
rubyreferences.github.io rubyreferences.github.io
-
A new class for containing value objects: it is somewhat similar to Struct (and reuses some of the implementation internally), but is intended to be immutable, and have more modern and cleaner API.
-
- Mar 2023
-
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>
-
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)
-
- Oct 2022
-
unix.stackexchange.com unix.stackexchange.com
-
Functions are much more flexible than aliases. The following would overload the usual ls with a version that always does ls -F (arguments are passed in $@, including any flags that you use), pretty much as the alias alias ls="ls -F" would do: ls () { command ls -F "$@" }
-
- Sep 2022
-
stackoverflow.com stackoverflow.com
-
an equivalent of R's signif function in Ruby.
-
- Jan 2022
-
github.com github.com
-
Instead of render props, we use Svelte's slot props: // React version <Listbox.Button> {({open, disabled} => /* Something using open and disabled */)} </Listbox.Button> <!--- Svelte version ---> <ListboxButton let:open let:disabled> <!--- Something using open and disabled ---> </ListboxButton>
-
- Oct 2021
-
-
For those coming from Ruby, Javascript has no builtin method like Ruby’s Array#compact.
-
- Jun 2021
-
developer.mozilla.org developer.mozilla.orgProxy1
-
get: function(target, prop, receiver) { return "world"; }
-
- May 2021
-
stackoverflow.com stackoverflow.com
-
Negative margins are in many cases equivalent to position:relative; with negative position, e.g. position:relative; top:-100px, as in Guffa's answer.
-
- Apr 2021
-
stackoverflow.com stackoverflow.com
-
What is the equivalent of unbuffer program on Windows?
-
-
linusakesson.net linusakesson.net
-
A job is the same as a process group.
-
- Feb 2021
-
trailblazer.to trailblazer.to
-
To understand this helper, you should understand that every step invocation calls Output() for you behind the scenes. The following DSL use is identical to the one [above]. class Execute < Trailblazer::Activity::Railway step :find_provider, Output(Trailblazer::Activity::Left, :failure) => Track(:failure), Output(Trailblazer::Activity::Right, :success) => Track(:success)
-
-
en.wikipedia.org en.wikipedia.org
-
Since an inverse is the contrapositive of the converse, inverse and converse are logically equivalent to each other.
-
-
en.wikipedia.org en.wikipedia.org
-
In logic and mathematics, statements p {\displaystyle p} and q {\displaystyle q} are said to be logically equivalent if they are provable from each other under a set of axioms,[1] or have the same truth value in every model.
-
-
-
{a: 1, b: 2, c: 3, d: 4} => {a:, b:, **rest} # a == 1, b == 2, rest == {:c=>3, :d=>4}
equivalent in javascript:
{a, b, ...rest} = {a: 1, b: 2, c: 3, d: 4}
Not a bad replacement for that! I still find javascript's syntax a little more easily readable and natural, but given that we can't use the same syntax (probably because it would be incompatible with existing syntax rules that we can't break for compatibility reasons, unfortunately), this is a pretty good compromise/solution that they've come up with.
-
- Dec 2020
-
sapper.svelte.dev sapper.svelte.dev
-
Preload is the Sapper equivalent to getInitialProps in Next.js or asyncData in Nuxt.js.
Tags
Annotators
URL
-
-
github.com github.com
-
-
the error thrown from throw Error("Error from Asynchronous Fn") is equivalent to:async function innerAsyncFn(){ return Promise.reject(Error("Error from Asynchronous Fn"));}
-
- Nov 2020
-
github.com github.com
-
stackoverflow.com stackoverflow.com
-
Don't: import { get_store_value } from 'svelte/internal'; There's a public API equivalent
-
-
imfeld.dev imfeld.dev
-
Converting Angular components into Svelte is largely a mechanical process. For the most part, each Angular template feature has a direct corollary in Svelte. Some things are simpler and some are more complex but overall it's pretty easy to do.
-
- Oct 2020
-
medium.com medium.com
-
This does solve the problem, but now our project and API is structured differently. In large projects it might be very hard to determine how to pull this trick off, or even impossible!
-
-
en.wikipedia.org en.wikipedia.org
-
As such, curry is more suitably defined as an operation which, in many theoretical cases, is often applied recursively, but which is theoretically indistinguishable (when considered as an operation) from a partial application.
-
-
-
Supporting JSX out of the box is the engineering equivalent of Mozilla supporting DRM out of the box in FireFox.
-
-
github.com github.com
-
We could freeze the objects in the model but don't for efficiency. (The benefits of an immutable-equivalent data structure will be documented in vtree or blog post at some point)
first sighting: "immutable-equivalent data"
-
A VTree is designed to be equivalent to an immutable data structure. While it's not actually immutable, you can reuse the nodes in multiple places and the functions we have exposed that take VTrees as arguments never mutate the trees.
-
-
github.com github.com
-
For event listeners we support the standard jsx naming convention onEventname (this is converted to on:eventname in svelte) as well.
-
-
svelte.dev svelte.dev
-
This is the Svelte version of this example: https://codesandbox.io/s/reactivity-react-responds-to-changing-props-forked-d2j44?file=/src/Label.js
-
-
github.com github.com
-
They even named the main file
react.js
so when converting/migrating components from React you could (at least some of the time, perhaps) simply leave some of the imports as-is:import {createHooks, useRef} from './react';
-
-
-
The $: can also be used to trigger effects.
-
We can run effects when some data changes using watchEffect - it takes a function that runs whenever a reactive value used inside changes.
-
- Sep 2020
-
sapper.svelte.dev sapper.svelte.dev
-
page components can have an optional preload function that will load some data that the page depends on. This is similar to getInitialProps in Next.js or asyncData in Nuxt.js.
-
-
svelte.dev svelte.dev
-
for example, reactive declarations essentially do the work of React's useMemo, useCallback and useEffect without the boilerplate (or indeed the garbage collection overhead of creating inline functions and arrays on each state change).
-
-
www.javascriptjanuary.com www.javascriptjanuary.com
-
You know those useMemo and useCallback hooks? Well, Svelte has something like this. If you declare a variable like this: $: double = counter * 2;, Svelte will recalculate it only if counter changes.
-
-
shipshape.io shipshape.io
-
rollupjs.org rollupjs.orgRollup1
-
In other words for those tools, you cannot create a package interface where const lib = require("your-lib") yields the same as import lib from "your-lib". With named export mode however, const {lib} = require("your-lib") will be equivalent to import {lib} from "your-lib".
-
-
daveceddia.com daveceddia.com
-
-
React doesn’t provide something like ng-class, but there is a great library called classnames that does the same and more. Install it:
-
- May 2020
-
github.com github.com
-
# Two commits are considered the same if they have the same tree and # the same commit and author metadata. This is how we re-identify # commits after their hash IDs have been rewritten.
-
- Aug 2015
-
afghanag.ucdavis.edu afghanag.ucdavis.eduuntitled1
-
+45ºC and minimum of -18ºC.
temperatures equivalents in Fahrenheit are
+113F and minimum of 0.4F
-