I hereby claim:
- I am angelostavrow on github.
- I am astavrow (https://keybase.io/astavrow) on keybase.
- I have a public key ASDMBIfHIOazlAtXMMP6Vd05THxMQbgKy3NdbVnxnzwGvgo
To claim this, I am signing this object:
<?xml version="1.0" encoding="UTF-8"?> | |
<!-- OPML generated by NetNewsWire --> | |
<opml version="1.1"> | |
<head> | |
<title>subscriptions.opml</title> | |
</head> | |
<body> | |
<outline text="Tuttofattoamano – Made by Hand" title="Tuttofattoamano – Made by Hand" description="" type="rss" version="RSS" htmlUrl="https://robertjeffery.us/tuttofattoamano" xmlUrl="https://robertjeffery.us/tuttofattoamano/feed/"/> | |
<outline text="Smashing Magazine" title="Smashing Magazine" description="" type="rss" version="RSS" htmlUrl="https://www.smashingmagazine.com/articles/" xmlUrl="https://www.smashingmagazine.com/feed/"/> | |
<outline text="Adactio: Journal" title="Adactio: Journal" description="" type="rss" version="RSS" htmlUrl="https://adactio.com/journal/" xmlUrl="https://adactio.com/journal/rss"/> |
javascript:(function()%7Bconst hostname%3Dlocation.hostname.split(%27.%27)%5B0%5D%3Blocation.href%3D%60https%3A%2F%2Fglitch.com%2F~%24%7Bhostname%7D%2F%60%3B%7D)()%3B |
I hereby claim:
To claim this, I am signing this object:
import Foundation | |
// The air temperature in degrees Celsius. | |
var airTemperature = Measurement(value: 29.74, unit: UnitTemperature.celsius) | |
// The dewpoint temperature in degrees Celsius. | |
var dewpoint = Measurement(value: 19.08, unit: UnitTemperature.celsius) | |
// Calculate the humidex value. | |
let humidex = airTemperature.value + 0.5555 * ((6.11 * exp(5417.7530 * ((1/273.16) - (1/dewpoint.converted(to: UnitTemperature.kelvin).value)))) - 10) |
private void SorryNotSorry(string title, string message) | |
{ | |
MessageBox.Show(message, title); | |
} |
// Get the number of elements in an array. | |
// From Arduino FAQ: | |
// http://arduino.land/FAQ/content/6/29/en/how-to-get-the-size-of-an-array.html | |
#define elementsInArray(x) (sizeof(x) / sizeof(*x)) |
// clocktest.cpp | |
// ClockTest | |
// | |
// Created by Angelo Stavrow on 10 July, 2012 | |
#include <time.h> | |
#include "iostream" | |
using namespace std; |
/* FastShift Proof-Of-Concept Sketch | |
* | |
* Author: Angelo Stavrow <[email protected]> | |
* Last Updated: 6 January, 2012 | |
*/ | |
// Define slave select lines. | |
const int SS0 = 2; // Digital pin 2, slave 0 | |
const int SS1 = 3; // Digital pin 3, slave 1 | |
const int SS2 = 4; // Digital pin 4, slave 2 |