VS Code debug typescript
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Pi-ano</title> | |
<script type="text/javascript" src="https://unpkg.com/@tonejs/midi"></script> | |
<script type="text/javascript" src="https://unpkg.com/[email protected]"></script> | |
<script type="text/javascript" src="Piano.js"></script> | |
<script src="https://cdn.jsdelivr.net/npm/@tonaljs/tonal/browser/tonal.min.js"></script> | |
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0"/> | |
</head> |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Title</title> | |
<style> | |
/* http://meyerweb.com/eric/tools/css/reset/ | |
v2.0 | 20110126 | |
License: none (public domain) | |
*/ |
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
https://3dprint.nih.gov/sites/default/files/models/additional_3d_model_files/IC3D%20Polysheet%20V2_19.64_0.dxf |
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
var cellSize = 4; | |
var cellsX = getDrawingWidth() / cellSize; | |
var cellsY = getDrawingHeight() / cellSize; | |
var gen = []; | |
var genNext = []; | |
var g = 0; | |
var frames = 100; | |
function main() { | |
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
function main() { | |
var size = 10; | |
var width = getDrawingWidth() / size; | |
var height = getDrawingHeight() / size; | |
setBackgroundColor(white); | |
while (true) { | |
setColor(black); | |
for (var x = 0; x < width; x++) { |
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
function main() { | |
var shipX = 50; | |
var shipY = 100; | |
var shipMass = 100; | |
var shipSize = 20; | |
var shipDirection = Pi * 1.5; | |
var shipSpeed = 1.8; | |
var earthX = 210; | |
var earthY = 140; |
See http://www.conwaylife.com/wiki/Run_Length_Encoded
For description of this Augmented BNF Style Grammar, see https://tools.ietf.org/html/rfc2616/#section-2.1
RLE files general structure:
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
REM this goes under: Edit Process > Scripts > Post Processing > Additional commands: | |
cmd /c C:\design\octoprint\gcode.bat "[output_filepath]" | |
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
@echo off | |
setlocal | |
set FFMPEG="C:\tools\ffmpeg\bin\ffmpeg.exe" | |
set LAME=lame.exe | |
set touch=touch.exe | |
if "%1"=="" echo usage: mp4tomp3 {directory} && goto err | |
if not exist %1 echo %1: Not found. && goto err | |
pushd %1 |
NewerOlder