Skip to content

Instantly share code, notes, and snippets.

Righteous Judgment

The Danger of Righteous Anger and Self-Examination

It can be tempting to want to wield power you think is done righteously, but we must carefully examine ourselves and our motives to assess if it would be sinful anger.

The Old Testament Theocracy and Its Purpose

When God revealed His laws to the Israelites, it was their governmental system headed by God through Moses, known as a Theocracy. In those laws, punishments are prescribed for many forms of crimes and sins against the community and their neighbours, some even requiring death for the perpetrator(s). Knowing these laws and what their intentions were is very important to our lives as Christians. We must not use them as justification for our actions, as even at the time, these laws did not apply to outsiders. The Israelites (and those who entered their nation) knew who God was, knew He was their leader, and as such were beholden to His righteous judgments through the law. These laws were intended to set Israel apart

Are you seeing? Are you hearing?
Isaiah 6: 8-10 (ESV)
8 And I heard the voice of the Lord saying, “Whom shall I send, and who will go for us?” Then I said, “Here I am! Send me.” 9 And he said, “Go, and say to this people:
“‘Keep on hearing, but do not understand;
keep on seeing, but do not perceive.’
10 Make the heart of this people dull,
and their ears heavy,
and blind their eyes;
lest they see with their eyes,
@Column01
Column01 / batchMine.js
Last active February 28, 2025 14:16
Batch miner for the bitburner game
//
//Main script for batch mining
//
/** @param {NS} ns */
export async function main(ns) {
ns.disableLog("sleep");
var target = ns.args[0];
@Column01
Column01 / E3_Bed_Level.gcode
Last active November 3, 2020 20:39
GCODE used to help with manual leveling of the ender 3 print bed.
; THIS ASSUMES YOUR PRINT BED IS THE SAME SIZE AS STOCK THE ENDER 3
; Author: Colin Andress
; Last modified date: November 2nd 2020
G28 ; Home axes
G21 ; Set units to MM just in case
G90 ; Set positioning to absolute mode
; Y:15, X:15
G0 Z10.0 F3000 ; Move Z to 10mm
@Column01
Column01 / index.html
Last active December 23, 2019 00:55
Recursion hard at work sanitizing user input for XSS methods. Try to break it if you can!
<html>
<head>
<title>Simple login</title>
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"> </script>
</head>
<body>
<script>
function validateForm() {
var form = document.forms['testform'];
console.log(form)