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
Flash Flood Warning | |
NJC003-013-017-031-039-NYC005-047-061-081-085-119-020700- | |
/O.NEW.KOKX.FF.W.0043.210902T0354Z-210902T0700Z/ | |
/00000.0.ER.000000T0000Z.000000T0000Z.000000T0000Z.OO/ | |
BULLETIN - EAS ACTIVATION REQUESTED | |
Flash Flood Warning | |
National Weather Service New York NY | |
1154 PM EDT Wed Sep 1 2021 |
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
#!/bin/sh | |
set -e | |
swapoff /dev/zram0 | |
echo 1 > /sys/block/zram0/reset |
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
#!/bin/bash | |
# SPDX-License-Identifier: Apache-2.0 | |
################################################################################ | |
# secure-erase.sh | |
# Copyright 2018-2023 bwDraco - Brian Wong | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Sandbox</title> | |
<meta charset="UTF-8"> | |
<link rel="stylesheet" href="/JSDev/styles.css"> | |
<script> | |
function loadScript(location, runOnLoad) { | |
// Check for existing script element and delete it if it exists | |
var js = document.getElementById("sandboxScript"); |
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
// ==UserScript== | |
// @name Stack Exchange Timeline Link | |
// @namespace stackoverflow | |
// @description Add a 'timeline' link to Stack Exchange/Stack Overflow posts - based on http://stackapps.com/questions/2047/add-timeline-and-revisions-links/4238#4238 | |
// @include http://*stackexchange.com/* | |
// @include http://*stackoverflow.com/* | |
// @include http://*serverfault.com/* | |
// @include http://*superuser.com/* | |
// @include http://*askubuntu.com/* | |
// @include http://*mathoverflow.net/* |