This file contains 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
{"v":"5.6.10","fr":25,"ip":17,"op":56,"w":1920,"h":1080,"nm":"Oscar Icon mit Auge rechts","ddd":0,"assets":[],"layers":[{"ddd":0,"ind":1,"ty":3,"nm":"Einstellungsebene 2","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":11,"s":[70]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":15,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":57,"s":[100]},{"t":61,"s":[70]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[960,540,0],"ix":2},"a":{"a":0,"k":[960,540,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.869,0.869,1]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0]},"t":11,"s":[0,0,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,1]},"o":{"x":[0.167,0.167,0.167],"y":[-1.633,-1.633,0]},"t":15,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":16,"s":[98,98,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x" |
This file contains 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
const functions = require('firebase-functions'); | |
const admin = require('firebase-admin'); | |
admin.initializeApp(); | |
const DialogflowApp = require('actions-on-google').DialogflowApp; | |
exports.receiveAssistantRequests = functions.https.onRequest((request, response) => { | |
const app = new DialogflowApp({request: request, response: response}); |
This file contains 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
#include <FirebaseArduino.h> | |
#include <ESP8266WiFi.h> | |
// Set these to run example. | |
#define WIFI_SSID "YOUR_WIFI_SSID" | |
#define WIFI_PASSWORD "YOUR_WIFI_PASSWORD" | |
#define FIREBASE_DB_URL "your_firebase_url" | |
#define FIREBASE_DB_SECRET_KEY "your_database_secret_key" | |
void setup() { | |
Serial.begin(115200); |
This file contains 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
'use strict'; | |
const AWS = require('aws-sdk'); | |
AWS.config.update({ region: 'us-east-1' }) | |
const { dialogflow, SignIn } = require('actions-on-google'); | |
const app = dialogflow(); | |
const request = require('request-promise') | |
const rp = require('request-promise'); |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
% CANDU UO2 VERSUS LIGHTBRIDGE U-50Zr | |
% This script evaluates the macroscopic cross section of fission for fuels | |
% containing uranium, oxygen, and zirconium. Enrichment percent can be | |
% defined as needed. | |
% Developed by Geoffrey Momin | |
% This version does not require Data Table.csv | |
% ********Updates******** | |
% March 1, 2016 - 0.1 - Release | |
% - 0.2 - Prompts added to allow user fuel modification | |
% - 0.3 - Automatically solves for UO2, U-50Zr or Custom mix |
This file contains 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
numPrompts=20; | |
promptArrayFirst = new Array(numPrompts); | |
promptArrayFirst[0]="\"Define VAG.\"" | |
promptArrayFirst[1]="\"Honeysuckle\"" | |
promptArrayFirst[2]="\"Pablo\"" | |
promptArrayFirst[3]="\"Giovanni\"" | |
promptArrayFirst[4]="\"Lola\"" | |
promptArrayFirst[5]="\"Moonbeam\"" | |
promptArrayFirst[6]="\"Jeremiah\"" | |
promptArrayFirst[7]="\"Tootsie\"" |
This file contains 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
Just copy and paste this square: 💪 to make a flexing emoticon in facebook. |
This file contains 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
<a href="http://www.cornify.com" onclick="cornify_add();return false;"><img src="http://www.cornify.com/assets/cornify.gif" width="61" height="16" border="0" alt="Cornify" /></a><script type="text/javascript" src="http://www.cornify.com/js/cornify.js"></script> |
This file contains 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
<!DOCTYPE html> <!--Sets the document type to HTML--> | |
<html> <!--Now we begin describing the web page--> | |
<script> <!-- We are using inline javascript. That is Javascript inside HTML //--> | |
var note, html, timeout; <!-- Set the variables //--> | |
window.addEventListener('load', function() { | |
note = document.getElementById('note'); | |
html = document.getElementsByTagName('html')[0]; | |
html.addEventListener('keyup', function(ev) { | |
if (timeout) clearTimeout(timeout); | |
timeout = setTimeout(saveNote, 100); |