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
const fs = require('fs'); | |
const CSVFOLDER = "csv"; | |
const LOGFOLDER = "log"; | |
// updates are changes that haven't been written directly to the csv files, | |
// logs are changes that have already been written to relevant csv files, | |
// logs can be saved for historical or audit reasons. | |
const LOGEXTENSION = ".csvlog"; | |
const UPDATEEXTENSION = ".csvupdates"; |
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
const fs = require('fs'); | |
const CSVFOLDER = "csv"; | |
const LOGFOLDER = "log"; | |
// updates are changes that haven't been written directly to the csv files, | |
// logs are changes that have already been written to relevant csv files, | |
// logs can be saved for historical or audit reasons. | |
const LOGEXTENSION = ".csvlog"; | |
const UPDATEEXTENSION = ".csvupdates"; |
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
const fs = require('fs'); | |
const CSVFOLDER = "csv"; | |
const LOGFOLDER = "log"; | |
// updates are changes that haven't been written directly to the csv files, | |
// logs are changes that have already been written to relevant csv files, | |
// logs can be saved for historical or audit reasons. | |
const LOGEXTENSION = ".csvlog"; | |
const UPDATEEXTENSION = ".csvupdate"; |
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
const fs = require('fs'); | |
const CSVFOLDER = "csv"; | |
const LOGFOLDER = "log"; | |
// updates are changes that haven't been written directly to the csv files, | |
// logs are changes that have already been written to relevant csv files, | |
// logs can be saved for historical or audit reasons. | |
const LOGEXTENSION = ".csvlog"; | |
const UPDATEEXTENSION = ".csvupdate"; |
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
Test |
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
<canvas id="Canvas"></canvas> | |
<script> | |
Canvas.width = window.innerWidth - 16; | |
Canvas.height = window.innerHeight - 16; | |
let Ctx = Canvas.getContext("2d"); | |
let X=0, Y=0; | |
let Distance=3; | |
let PointSize=0.015; | |
let LineWidth= 0.005; |
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
Every chain has a single owner, who signs blocks with their public key. Assets can be transfered between chains, as wallet owners | |
wish. Anyone can issue their own assets, with their public key. |
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> | |
<!-- saved from url=(0032)https://htmledit.squarefree.com/ --> | |
<!-- custom updates so events do not persist. --> | |
<html><head><meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> | |
<title>Real-time HTML Editor</title> | |
<script type="text/javascript"> | |
var editboxHTML = | |
'<html class="expand close">' + | |
'<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
from tkinter import * | |
from tkinter import ttk | |
from tkinter import messagebox, Text | |
host = "localhost" | |
port = 8080 | |
class Focus: | |
def __init__(self, master): |
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> | |
<body> | |
<h1> Learn To Code </h1> | |
<p> | |
This is a course on learning to code. It is contained entirely within | |
this single html document, so that you download it, save it, take it | |
with you, or convert it into any form. There are no signups or fees, | |
Just this document. | |
</p> |