Links and sample code to access data in Zotero
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
// 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', |
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> | |
<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" /> | |
<!-- |
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> | |
<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"> |
Sites that let you test expressions
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
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
using UnityEngine.SceneManagement; | |
public class CameraSETUP: MonoBehaviour { | |
private Camera m_Camera; | |
private CanvasGroup myCanvas; | |
private GameObject myTexty; | |
public GameObject CamParent; | |
private GameObject myDot; |
The following debugging information was generated by Atom Beautify
on Mon Jun 15 2020 13:00:34 GMT-0400 (Eastern Daylight Time)
.
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
#!/bin/bash | |
## Convert non-transparent pixels in a PNG image to a solid color "silhouette" | |
## Uses imagemagick | |
# install imagemagick | |
brew update && brew install imagemagick | |
# convert input.png to silhouette | |
convert input.png -fill "cyan" -colorize 100 output.png |
NewerOlder