memory heap
374 subscribers
2.54K photos
522 videos
52 files
3.12K links
science ∩ art = wonder

all memory blocks here are allocated by @a_v_p

GitHub: https://github.com/artyom-poptsov
Mastodon: https://fosstodon.org/@avp

https://memory-heap.org/~avp/
Download Telegram
Hacker News
The Endless Doomscroller (Score: 150+ in 5 hours) Link: https://readhacker.news/s/5mZKC Comments: https://readhacker.news/c/5mZKC
"[...] The Endless Doomscroller acts as a lens on our software-enabled collective descent into despair. By distilling the news and social media sites down to their barest most generalized messages and interface conventions, The Endless Doomscroller shows us the mechanism that’s behind our scroll-induced anxiety: interfaces—and corporations—that always want more. More doom (bad news headlines) compels more engagement (via continued liking/sharing/posting) which produces more personal data, thus making possible ever more profit. By stripping away the specifics wrapped up in each headline and minimizing the mechanics behind most interface patterns, The Endless Doomscroller offers up an opportunity for mindfulness about how we’re spending our time online and about who most benefits from our late night scroll sessions."
latex4musicians.pdf
1.5 MB
Guido Gonzato, "LaTeX for Musicians".

(источник)

#music #music_theory #latex #books
Forwarded from Zerg Labs [TeslaCoilPro]
Объект типа "плазменная коряга". В процессе. Через часик-другой должна быть готова.

#glassblowing
#plasmaglass
Forwarded from Zerg Labs [TeslaCoilPro]
Zerg Labs [TeslaCoilPro]
Photo
Ну, вот и готово плазменная коряга, простите, дерево. Кстати, это, пожалуй, самая технически простая и одновременно одна из самых красивых плазменных скульптур. Достаточно сделать кое-как центральный ствол, а потом просто итеративно лепишь веточки, сначала потолще, потом потоньше. Заодно неплохой практикум по ровным впаям трубок в колбы или другие трубки.

#plasmaglass
Media is too big
VIEW IN TELEGRAM
Разрисовка дома, на которую ушло 2 года

r/#nextfuckinglevel
Учусь писать ноты в LaTeX + Lilypond.

#latex #lilypond #music
memory heap
Учусь писать ноты в LaTeX + Lilypond. #latex #lilypond #music
В исходном коде это выглядит так:
\begin{figure}[ht]
\caption{Часть мелодии ``Кабы небыло зимы'' из мультфильма ``Простоквашино''.}
\begin{lilypond}
\relative c' {
\key g \major
\numericTimeSignature
\time 4/4
(b'8 b cis dis e4-.) << g,8 b e >> r8 \bar ".|:"
b,8 b b'8. fis16 a8 g e4 |
d8 d << b'8. d8. >> << c16 a >> << c8 a >> << b8 g8 >> r4
d'8 c a fis << a c >> << g b >> << g4 b >>
b,8 b << g'8. b8. >> << fis16 a >> << fis8 a >> << e8 g8 >> r4
}
\layout {
indent = 0\mm
line-width = 120\mm
ragged-last = ##t
}
\end{lilypond}
\label{fig:lilypond-melody-prostokvashino}
\end{figure}


#latex #lilypond #music
👍1
Нарисовал кусок клавиатуры пианино в LaTeX + tikz.

Исходник:
\begin{figure}[ht]
\caption{Одна октава на клавиатуре пианино.}
\centering
\begin{tikzpicture}
\draw (0, 0) -- (7, 0);
\foreach \x/\note in {0/C, 1/D, 2/E, 3/F, 4/G, 5/A, 6/B, 7/} {
\draw (\x, 0) -- (\x, 2) -- (\x, 0) node[anchor=south west] {\note};
};
\foreach \x in {1, 2, 4, 5, 6} {
\node[
rectangle,
draw,
fill=black,
minimum width=0.5cm,
minimum height=1.35cm
] (r) at (\x, 1.30) {};
};
\end{tikzpicture}
\label{fig:lilypond-music-graph-1}
\end{figure}


#latex #music #piano
👍2