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
// | |
//Main script for batch mining | |
// | |
/** @param {NS} ns */ | |
export async function main(ns) { | |
ns.disableLog("sleep"); | |
var target = ns.args[0]; |
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
; THIS ASSUMES YOUR PRINT BED IS THE SAME SIZE AS STOCK THE ENDER 3 | |
; Author: Colin Andress | |
; Last modified date: November 2nd 2020 | |
G28 ; Home axes | |
G21 ; Set units to MM just in case | |
G90 ; Set positioning to absolute mode | |
; Y:15, X:15 | |
G0 Z10.0 F3000 ; Move Z to 10mm |
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
<html> | |
<head> | |
<title>Simple login</title> | |
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"> </script> | |
</head> | |
<body> | |
<script> | |
function validateForm() { | |
var form = document.forms['testform']; | |
console.log(form) |