-
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"
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 GetSortOrder(prop) { | |
| return function(a, b) { | |
| if (a[prop] > b[prop]) { | |
| return 1; | |
| } else if (a[prop] < b[prop]) { | |
| return -1; | |
| } | |
| return 0; | |
| } | |
| } |
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
| <template> | |
| <div id="root"> | |
| <h1>{{title}}</h1> | |
| </div> | |
| </template> | |
| <script> | |
| export default { | |
| name: 'Component', | |
| props: { |
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>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> |
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 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() | |
| })(); |
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 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; |
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
| //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"); |
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" =>
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
| 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", |
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
| .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; |