So here's a pretty neat thing, I use VHD's to organize the space on my computer. You can too!
-
Click Start
-
Type in the search bar "Disk par" =>
-
Click first result =>
-
In the program, click "Action" =>
| /* | |
| *Script created by Ian Fabricatore | |
| *Please use `node progress-cli.js "<APITOKEN>"` | |
| with the quotes | |
| */ | |
| const canvas = require('canvas-api-wrapper'); | |
| const fs = require('fs'); | |
| //Set subdomain | |
| canvas.subdomain = "neit"; |
| .calendar{ | |
| display: flex; | |
| flex-direction: row; | |
| flex-wrap: wrap; | |
| box-shadow: 0 0 10px 5px #000; | |
| margin: 5vh 1vw; | |
| width: 95vw; | |
| justify-content: flex-start; | |
| align-content: center; | |
| justify-items: center; |
| class Calendar { | |
| constructor(ctx = "", cb) { | |
| this.d = document; | |
| this.ctx = this.d.querySelector(`${ctx}.calendar`); | |
| console.log( | |
| "\u0040\u0041\u0055\u0054\u0048\u004F\u0052\u003D\u0049\u0041\u004E\u0046\u0041\u0042\u0053" | |
| ); | |
| this.daysOfTheWeek = [ | |
| "Sunday", |
So here's a pretty neat thing, I use VHD's to organize the space on my computer. You can too!
Click Start
Type in the search bar "Disk par" =>
Click first result =>
In the program, click "Action" =>
| //Original article | |
| //https://jonathanmh.com/express-passport-json-web-token-jwt-authentication-beginners/ | |
| //loadash is stupid bloatware stop using it | |
| //var _ = require("lodash"); | |
| var express = require("express"); | |
| var bodyParser = require("body-parser"); | |
| var jwt = require('jsonwebtoken'); | |
| var passport = require("passport"); |
| const d = window.document; | |
| const qs = d.querySelector.bind(d); | |
| Element.prototype.qs = Element.prototype.querySelector; | |
| const qsa = d.querySelectorAll.bind(d); | |
| Element.prototype.qsa = Element.prototype.querySelectorAll; | |
| const f = window.fetch; | |
| const newTab = uri => window.open(uri, "_target"); | |
| const redirect = uri => window.open(uri, "_self"); | |
| const ce = d.createElement.bind(d); | |
| Element.prototype.ac = Element.prototype.appendChild; |
Open an admin PowerShell, paste this command and go.
Once done, click Ctrl-Shift-Esc
From there, at the bottom of the window, click "OPEN SERVICES"
Then, Look for the entry marked "Microsoft Store Install Service"
Change startup type from "disabled" to "manual"
| function sleep(ms) { | |
| return new Promise(resolve => setTimeout(resolve, ms)); | |
| } | |
| (async()=>{ | |
| $("._3H0DcbB").click(); | |
| await sleep(1000); | |
| $("#delete_announcements").click(); | |
| await sleep(2000); | |
| $("#confirm_delete_announcements").click() | |
| })(); |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Practical</title> | |
| <script src="https://cdn.rawgit.com/ianfabs/25d6655e92578cfb8c1ce91ff4ba0a22/raw/a2a087352a42e5732c341c3e0a41b279189d8c4a/esquery.js"></script> | |
| <link rel="stylesheet" href="./main.css"> | |
| <script src="./main.js" defer></script> | |
| </head> |
| <template> | |
| <div id="root"> | |
| <h1>{{title}}</h1> | |
| </div> | |
| </template> | |
| <script> | |
| export default { | |
| name: 'Component', | |
| props: { |