Example from https://stackoverflow.com/a/209089/441878
double a, b, c; a=9.81; b=5; c= .5*a*(b^2);| #!/bin/bash | |
| # Instructions | |
| # https://gist.github.com/omundy/b2aa6c5586919b8bda068a7285849725 | |
| APPLE_ID="name@domain.com" | |
| TEAM_ID="12345ABCDE" | |
| # APP STORE (paste in your certificate names from Keychain Access between the double quotes). | |
| APPLE_CODESIGN_CERT_NAME="3rd Party Mac Developer Application: Company Name (12345ABCDE)" |
| # convert M4A to MP3 - using variable bit rate https://superuser.com/a/704535/132422 | |
| ffmpeg -i input.m4a -c:v copy -c:a libmp3lame -q:a 4 output.mp3 |
| using System; | |
| using System.Collections; | |
| using System.Collections.Generic; | |
| using UnityEngine; | |
| using UnityEngine.Events; | |
| /// <summary> | |
| /// A game manager using Singleton and Service Locator patterns | |
| /// 1. Add this to a game object to make a singleton | |
| /// 2. Add child objects with managers (e.g. SoundManager) for global referencing |
Example from https://stackoverflow.com/a/209089/441878
double a, b, c; a=9.81; b=5; c= .5*a*(b^2);| // PHP change to: $statusMessage = array( '200' => 'OK', '201' => 'Created' ... ); | |
| // JS | |
| const statusMessages = { | |
| '200': 'OK', | |
| '201': 'Created', | |
| '202': 'Accepted', | |
| '203': 'Non-Authoritative Information', | |
| '204': 'No Content', | |
| '205': 'Reset Content', | |
| '206': 'Partial Content', |
| <!DOCTYPE html> | |
| <html data-init="no-js"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <title>Twine Examples</title> | |
| <meta name="viewport" content="width=device-width,initial-scale=1" /> | |
| <meta name="application-name" content="SugarCube" /> | |
| <meta name="version" content="2.37.3" /> | |
| <!-- |
| <!doctype html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous"> | |
| <link rel="stylesheet" href="assets/css/styles.css"> |
Links and sample code to access data in Zotero
Sites that let you test expressions