How to set up multiple accounts with Mutt E-mail Client
Thanks to this article by Christoph Berg
Directories and files
~/
Thanks to this article by Christoph Berg
Directories and files
~/
It's a common confusion about terminal colours... Actually we have this:
printf "\x1b[${bg};2;${red};${green};${blue}m\n"
I want clean history, but that really means (a) clean and (b) history. | |
People can (and probably should) rebase their _private_ trees (their own | |
work). That's a _cleanup_. But never other peoples code. That's a "destroy | |
history" | |
So the history part is fairly easy. There's only one major rule, and one | |
minor clarification: | |
- You must never EVER destroy other peoples history. You must not rebase |
#!/usr/bin/ruby | |
=begin | |
Usage: rtftomarkdown.rb FILENAME.rtf | |
Uses textutil, available on Mac only (installed by default) | |
Outputs to STDOUT | |
Notes: | |
Links are replaced with Markdown references (duplicate links combined). |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <stdint.h> | |
#ifdef _MSC_VER | |
#include <intrin.h> /* for rdtscp and clflush */ | |
#pragma optimize("gt",on) | |
#else | |
#include <x86intrin.h> /* for rdtscp and clflush */ | |
#endif |
##1. Вопросы оптимизации и производительности | |
###1.1 Производительность и оптимизация | |
#Сергей Куксенко, Oracle — Железные счётчики на страже производительности | |
https://www.youtube.com/watch?v=RlX0f9pzhtc | |
#Алексей Шипилёв, Oracle — Катехизис java.lang.String | |
#о реализации строк в Java, способы оптимизации работы со строками и ошибки, которые часто допускают при оптимизации работы со строками, | |
https://www.youtube.com/watch?v=SZFe3m1DV1A |