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
| [ | |
| [["", "home", "net"], { | |
| "url": "https://xubiod.net/", | |
| "note": "Standard homepage", | |
| "sub": [] | |
| }], | |
| [["ai"], { | |
| "url": "https://xubiod.net/ai-policy/", | |
| "note": "AI policy, tl;dr I don't consent to AI training on my content" |
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
| package main | |
| // Any signed int, ranging 8 bits to 64 | |
| type AnySInt interface { | |
| int | | |
| int8 | | |
| int16 | | |
| int32 | | |
| int64 | |
| } |
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> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width"> | |
| <title>Clickable Syntax</title> | |
| <style id="jsbin-css"> | |
| body { | |
| background-image: linear-gradient(-45deg, red, orange); | |
| height: 100vh; |
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
| lda #$ff | |
| sta $00 ; constant $ff at zeropage $00 | |
| start: | |
| ldx #$00 ; reset x register | |
| cmp #$00 | |
| beq loop1 | |
| cmp #$01 | |
| beq loop3 | |
| cmp #$02 |
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> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width"> | |
| <title>JS Bin</title> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/lz-string/1.4.4/lz-string.min.js"></script> | |
| </head> | |
| <body> |
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
| //Rextester.Program.Main is the entry point for your code. Don't change it. | |
| //Compiler version 4.0.30319.17929 for Microsoft (R) .NET Framework 4.5 | |
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text.RegularExpressions; | |
| using Newtonsoft.Json.Linq; | |
| using System.ComponentModel; | |
| using System.Net; |
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
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text.RegularExpressions; | |
| using System.Net; | |
| using System.Threading.Tasks; | |
| using Newtonsoft.Json.Linq; | |
| using System.ComponentModel; | |
| // adapted from xubot's code, to be added later |
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
| There's a man in the woods. | |
| What a spectacle. | |
| Before the stories started, this school was still respectable. | |
| My students used to skip down the hill to the honeysuckle | |
| Pluck a couple, | |
| And collect their nectar till they picked their fill. | |
| Except one obnoxious kid, Sid. | |
| Who just watched them eat the flowers | |
| While he seethed and scowled | |
| Cause he couldn't bear to share his sweet treats throughout our recess hour. |
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
| :top | |
| C: | |
| dir /w | |
| tree | |
| goto :top |
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
| // ==UserScript== | |
| // @name Newgrounds+ | |
| // @namespace com.xaotik.scripts.ng | |
| // @include *.newgrounds.com* | |
| // @exclude *ads.newgrounds.com/* | |
| // @description Newgrounds Plus Public Beta Version 1 | |
| // ==/UserScript== | |
| function iJQ(b){var a=document.createElement("script");a.type="text/javascript";a.innerHTML="("+b.toString()+")(jQuery)";document.body.appendChild(a)}iJQ(function($){$(document).ready(function(){function gcss(i){var str="";for(var a in i){str+=("\n"+a+"\n{\n"+i[a].split(";").join(";\n")+"}\n")}var t=document.createElement("style");t.innerHTML=str;t.type="text/css";document.getElementsByTagName("head")[0].appendChild(t)}function ghtml(h){var d=document.createElement("div");d.innerHTML=h;return d.firstChild}jQuery.fn.exists=function(){return this.length>0};page={};page.icon=function(png){var link=$('<link rel="icon" type="image/x-icon">');$(link).attr("href",png);if($('link[rel="icon"]').exists()){$('link[rel="icon"]').replaceWith(link)}else{$("head").append(link)}};page.cl |