Can be found in different ratios per episode.
- Inexplicable being of pure energy.
- Q acting the bellend.
- Someone is horny.
- Counsellor Troy's mum.
- Holodeck rubbish.
- Data learns something.
| sub, sup { | |
| /* Specified in % so that the sup/sup is the | |
| right size relative to the surrounding text */ | |
| font-size: 75%; | |
| /* Zero out the line-height so that it doesn't | |
| interfere with the positioning that follows */ | |
| line-height: 0; | |
| /* Where the magic happens: makes all browsers position |
| bind-key C-b send-prefix | |
| bind-key C-o rotate-window | |
| bind-key C-z suspend-client | |
| bind-key Space next-layout | |
| bind-key ! break-pane | |
| bind-key " split-window | |
| bind-key # list-buffers | |
| bind-key $ command-prompt -I #S "rename-session '%%'" | |
| bind-key % split-window -h | |
| bind-key & confirm-before -p "kill-window #W? (y/n)" kill-window |
tmux, like other great software, is deceptive. On the one hand, it's fairly easy to get set up and start using right away. On the other hand, it's difficult to take advantage of tmux's adanced features without spending some quality alone time with the manual. But the problem with manuals is that they aren't geared toward beginners. They are geared toward helping seasoned developers and computer enthusiasts quickly obtain the
| # Adapted from github comment: | |
| # https://github.com/dimitri/pgloader/issues/782#issuecomment-1136067634 | |
| if [ -z "$3" ]; then | |
| echo "Usage: $0 <db name> <mysql dump> <psql dump output>" | |
| echo "Requirements: docker" | |
| exit 1 | |
| fi | |
| if ! command -v docker &> /dev/null |
| ;; Detect OS | |
| (defvar macosx-p (string-match "darwin" (symbol-name system-type))) | |
| ;; osx fixes | |
| (defun insert-hash () | |
| (interactive) | |
| (insert "#")) | |
| (defun set-exec-path-from-shell-PATH () | |
| (let ((path-from-shell |
| {-# OPTIONS --type-in-type #-} | |
| {- | |
| Computer Aided Formal Reasoning (G53CFR, G54CFR) | |
| Thorsten Altenkirch | |
| Lecture 20: Russell's paradox | |
| In this lecture we show that it is inconsistent to have | |
| Set:Set. Luckily, Agda is aware of this and indeed | |
| Set=Set₀ : Set₁ : Set₂ : ... |
Sample codes in this blog. https://dev.to/paprikamah/how-to-setup-aws-waf-v2-21f1
| $('#multi-films .film-grid').children().map(function() { | |
| var $this = $(this), | |
| rank = $this.find('.list-film-position').text().trim(), | |
| title = $this.find('.film-title').text().trim(), | |
| dirYear = $this.find('.director-year').text().trim(), | |
| re = dirYear.match(/^(.+), (\d+)$/), | |
| dir = re ? re[1] : dirYear, | |
| year = re ? re[2] : ''; | |
| return [rank, title, year, dir].join('\t'); | |
| }).get().join('\n'); |