The first AFM - Binnig 1986 Atomic Force Microscope
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
Version 2, December 2004 | |
Copyright (C) 2011 Olivier Scherrer | |
Everyone is permitted to copy and distribute verbatim or modified | |
copies of this license document, and changing it is allowed as long | |
as the name is changed. | |
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: cookie dough | |
operation: mix | |
time: 5 min | |
ingrediants: | |
- | |
name: whisked eggs | |
time: 5 min (this inherits everythign from whisked eggs, but changes the time from 2 min to 5 min) | |
- | |
name: cream | |
ingrediants: |
-
Reversible: TdS = dQ or sigma_cv = 0
-
Isentropic: dS = 0, or s2-s1 = 0
-
Adiabatic: dQ = 0
A reversible and adiabatic process is isentropic.
-
Steady state
Conservation of mass means 0 = Q - W + m_1(h_1 + V^2/2+gz) - m_2(h_2 + V^2/2+gz)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PURE CSS | |
getskeleton.com | |
To get started with NGINX, first install:
sudo apt-get install nginx
Now you just need to setup a reverse proxy. Say you have a name for your server, example.com
but your actual address is ifj.ckd.acj.djx:1239
. To make people see that your website is example.com
first you need to go to your name service (Namecheap or other) and make sure you have the A
field set to ifj.ckd.acj.djx
. Do not include the port number here.
Now, on your server, make a new NGINX block
This closely follows this but also includes the Pi dependencies:
sudo apt-get install swig oss-compat pulseaudio libpulse-dev automake autoconf libtool bison python-dev
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var msg = new SpeechSynthesisUtterance(); | |
var voices = window.speechSynthesis.getVoices(); | |
msg.voice = voices[2]; // Note: some voices don't support altering params | |
msg.voiceURI = 'native'; | |
msg.volume = 1; // 0 to 1 | |
msg.rate = 0.75; // 0.1 to 10 | |
msg.pitch = 0; //0 to 2 | |
msg.lang = 'en-US'; | |
OlderNewer