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
Bezzo.tez | 1 | |
---|---|---|
Corporatetrash.tez | 1 | |
Coughdrop.tez | 1 | |
ballislife.tez | 1 | |
cormac.tez | 1 | |
dominikus.tez | 1 | |
tz1Xu4PxeJccmvrXEtx8ybTC2HxndNxT4858 | 1 | |
johnryan.tez | 1 | |
quasimondo.tez | 1 | |
raimans.tez | 1 |
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
// Useful for installations on windows which detect user interaction | |
if (platform == WINDOWS){ | |
if (frameCount > 1000){ | |
((java.awt.Canvas) surface.getNative()).requestFocus(); | |
} | |
} |
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
import http.requests.*; | |
void setup(){ | |
size(640,640); | |
String txt = "The Quick Brown Fox Jumped Over the Lazy Dog"; | |
JSONObject json = getJSONForText(txt); | |
PostRequest post = new PostRequest("https://gateway.watsonplatform.net/natural-language-understanding/api/v1/analyze?version=2018-03-19"); | |
post.addUser(USERNAME,PASSWORD); | |
post.addHeader("Content-Type", "application/json"); |
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
" " _____ _ ___ ___ ___ " | |
" " | __|___ ___ _ _| |_ | _| _| " | |
" " |__ | -_| . | | | | _|_ | . | " | |
" " |_____|___|___|___|_|___|___|___|.vim " | |
" | |
" " Low-contrast dark Vim color scheme using Seoul Colors " | |
" | |
" File: seoul256.vim | |
" URL: github.com/junegunn/seoul256.vim | |
" Author: Junegunn Choi ([email protected]) |
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
/** | |
* Grid Maker for Notes to Myself | |
* http://producedforuse.com | |
* http://brendandawes.com | |
*/ | |
import dawesometoolkit.*; //http://cloud.brendandawes.com/dawesometoolkit/ | |
import processing.pdf.*; | |
import controlP5.*; //http://www.sojamo.de/libraries/controlP5/ |
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
<?php | |
require($_SERVER['DOCUMENT_ROOT'] . '/kirby/bootstrap.php'); | |
// Path to a configuration file outside of a web accesible directory containing your secret pass phrase and salt. | |
include '/Path/To/Your/conf.inc'; | |
if(get('id').$SALT==$IFTTT_PASS.$SALT) { |
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
set nocompatible " be iMproved, required | |
filetype off " required | |
set ignorecase | |
set autoindent | |
set cursorline | |
set noswapfile | |
set autoread | |
set t_Co=256 | |
set number | |
set laststatus=2 |
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
import dawesometoolkit.*; | |
import processing.pdf.*; | |
final String PROJECT = "project-x"; | |
final int BACKGROUND_COLOR = #000000; | |
final int SECONDS_TO_CAPTURE = 60; | |
final int VIDEO_FRAME_RATE = 60; | |
int videoFramesCaptured = 0; | |
boolean recordVideo = false; |
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
final int VIDEO_FRAME_RATE = 60; | |
final int SECONDS_TO_CAPTURE = 60; | |
int videoFramesCaptured = 0; | |
boolean recordVideo = false; | |
if (recordVideo){ | |
saveFrame("export/####-video.tga"); | |
if (videoFramesCaptured > VIDEO_FRAME_RATE * SECONDS_TO_CAPTURE){ | |
recordVideo = false; | |
} |
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
float fov = PI/3; | |
float nearClip = 1; | |
float farClip = 100000; | |
float aspect; | |
// void setup() | |
aspect = float(width)/float(height); | |
// void draw() |
NewerOlder