Optical devices used to split a single beam of laser light into two beams, or to recombine two beams into one.
{
"cols": 4,
"rows": 3,
"cells": [
{
The Design of Everyday Things: Revised and Expanded Edition (Norman, Don) | |
- Your Highlight on page 101 | location 2210-2212 | Added on Wednesday, 11 May 2016 21:05:40 | |
It is a profoundly erroneous truism, repeated by all copy-books and by eminent people when they are making speeches, that we should cultivate the habit of thinking of what we are doing. The precise opposite is the case. Civilization advances by extending the number of important operations which we can perform without thinking about them. (Alfred North Whitehead, 1911.) | |
========== | |
The Design of Everyday Things: Revised and Expanded Edition (Norman, Don) | |
- Your Highlight on page 111 | location 2395-2396 | Added on Saturday, 18 June 2016 19:33:53 | |
unless it is triggered by some external event or unless we deliberately keep it in mind through constant repetition (which then prevents us from having other conscious thoughts). | |
========== |
--- | |
title: "Metal bands bring happiness" | |
output: html_notebook | |
author: "Piotr Migdał" | |
--- | |
```{r} | |
library(ggplot2) | |
library(ggrepel) | |
``` |
# Homebrew - the package manager | |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
eval "$(/opt/homebrew/bin/brew shellenv)" | |
# Rosetta - for running apps not native to M1 arm64 | |
/usr/sbin/softwareupdate --install-rosetta --agree-to-license | |
# Terminal improvement | |
brew install fish | |
sudo sh -c 'echo /opt/homebrew/bin/fish >> /etc/shells' |
language: node_js | |
node_js: node | |
before_script: | |
- npm install -g typescript | |
- npm install codecov -g | |
script: | |
- yarn lint | |
- yarn build |
export {} | |
declare global { | |
namespace jest { | |
interface Matchers<R> { | |
myMatcher: (received: string) => R | |
} | |
} | |
} |
#!/usr/bin/env python | |
import delve | |
import logging | |
import torch | |
import torch.nn as nn | |
from delve import CheckLayerSat | |
from torch.autograd import Variable | |
from tqdm import tqdm, trange |