Click anywhere to generate a new random graph.
- The nodes are colored by the number of their neighbors.
- Nodes with higher number of neighbours are bigger.
| /** | |
| ** ____ _ ___ ___ _ _ | |
| ** | _ \ | | | \/ | | | (_) | |
| ** | | \ |__ _ _ __| | __ | . . | ___ _ __ ___ | | __ __ _ _ | |
| ** | | | | _` | '__| |/ / | |\/| |/ _ \| '_ \ / _ \| |/ // _` | | | |
| ** | |_/ /(_| | | | < | | | | (_) | | | | (_) | <| (_| | | | |
| ** |____/\__,_|_| |_|\_\ \_| |_/\___/|_| |_|\___/|_|\_\\__,_|_| | |
| ** | |
| ** Quassel Theme | |
| ** |
| Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1')) | |
| choco install -y keepassxc quassel nextcloud-client discord vscode spotify googlechrome |
| https://nextcloud.dykam.nl/index.php/s/gseS3r4MoG4e2rH |
| var r = {}; | |
| var visit = function(d, path) { | |
| if(d.type !== "literal" || d.executable) { | |
| r[path] = d; | |
| } | |
| if(d.children) { | |
| for(var i in d.children) { | |
| var key = d.children[i].type === "argument" ? "[" + i + "]" : i; | |
| visit(d.children[i], path === undefined ? key : path + "/" + key); | |
| } |
| // https://store.steampowered.com/account/history/ | |
| if($J('#load_more_button').is(":visible")) { | |
| $J('#load_more_button').click(); | |
| console.log("Loading more history..."); | |
| } else { | |
| var summary = Array.prototype.map.call(jQuery(".wallet_table_row:has(.wht_type div:contains(In-Game Purchase))"), (i, row) => ({ | |
| game: jQuery(".wht_items > div:first-child", row).text(), | |
| val: Number.parseFloat(jQuery(".wht_total", row).text().trim().replace(",", ".")) | |
| })).reduce((acc, obj) => (acc[obj.game] = (acc[obj.game] || 0) + obj.val, acc), {}) | |
| for(var game in summary) { |
| Why is it so hard to set a title, GitHub? |
| // ==UserScript== | |
| // @name Youtube to Youtube gaming | |
| // @namespace http://dykam.nl/ | |
| // @version 0.1 | |
| // @description Redirects the YT watch page to the better YT gaming watch page | |
| // @author Dykam | |
| // @match https://www.youtube.com/* | |
| // @grant none | |
| // ==/UserScript== |
| #!/usr/bin/env node | |
| // Run before first use: | |
| // $ node install request | |
| request = require "request" | |
| fs = require "fs" | |
| repo = "https://repo.spongepowered.org/maven" | |
| console.log "Downloading verison list" |
| using Microsoft.Owin; | |
| using Microsoft.Owin.Hosting; | |
| using Owin; | |
| using System; | |
| using System.Net.Http; | |
| namespace SelfHost | |
| { | |
| public class Program | |
| { |