What is Freud's single greatest contribution?

Freud already answered this question, of course, when he said that whereas Darwin decentered the human animal from the apex of creation, Copernicus decentered the earth from the center of the universe, Freud had decentered humanity in itself. No longer was the human immanent. Lacan’s answer is perhaps even better: “That is why the unconscious was invented—so that we would realize that man’s desire is the Other’s desire, and that love, while it is a passion that involves ignorance of desire, nevertheless leaves desire its whole import”...

March 23, 2022 · 1 min · un01s

Rebuild

$ brew install hugo -f yml $ hugo version hugo v0.94.2+extended darwin/arm64 BuildDate=unknown $ hugo new site notes $ cd notes $ git submodule add https://github.com/adityatelange/hugo-PaperMod.git themes/PaperMod $ echo "theme: \"PaperMod\"" >> config.yml

March 20, 2022 · 1 min · un01s

C Code Jokes

Here are some C code with the JavaScript quirks. Credits to luna. #include <stdio.h> int main() { puts("-0.5" + 1); printf("%d\n", 50 ** "2"); return 0; } To build and run the above code, just do the following and ignore the warnings. $ gcc c-js.c && ./a.out 0.5 2500 Let’s look at the warnings first. c-js.c:4:15: warning: adding 'int' to a string does not append to the string [-Wstring-plus-int] puts("-0.5" + 1); ~~~~~~~^~~ c-js....

March 18, 2022 · 1 min · un01s

Fish and Pond

Think of your mind like a pond full of fish and each fish is a feeling. Try to be the pond, not the fish. Life is nothing but time given to us, short or long. For all of us, a day is long and a year is short. We use our days to trade for years. We trade our time for food, clothes, houses and cars. In the end, time is the only thing we do not have....

March 6, 2022 · 1 min · un01s

Toit Imports

Toitlang uses import to use code from other libraries. local import starting with . $ tree . └── my_lib ├── my_lib.toit ├── other.toit └── sub └── sub.toit Assume we are importing sub.toit into my_lib.toit. import .sub.sub Shorten version: import .sub global import import math Then for customizations, import math as m import math show sin cos

March 3, 2022 · 1 min · un01s