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
------------------------------------------------ | |
-- Wisdom | |
------------------------------------------------ | |
local WISDOM = { | |
"If you do your best, whatever happens will be for the best.", | |
"Things that go away by themselves can come back by themselves.", | |
"Plaid shirts and striped pants rarely\nmake a positive fashion statement.", | |
"You should never dive into murky waters.", | |
"It's never too late to learn to play the piano.", |
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
[Unit] | |
Description=Simple Brightness Daemon | |
[Service] | |
ExecStart=/usr/bin/brightness-daemon.sh | |
Restart=on-failure | |
RestartSec=5 | |
[Install] | |
WantedBy=multi-user.target |
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
#!/usr/bin/env bash | |
################################ | |
BLOCK_DEVICE=/dev/disk/by-label/Backup | |
DM_NAME=cryptbackup | |
MOUNT_POINT=/mnt/backup | |
################################ |
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
-- Total number of bits that can be stored in the system | |
local TOTAL_BITS = 1174405120 | |
-- Approximate number of seconds between average rate resets | |
local AVG_INTERVAL = 3600 -- 1 hour | |
local component = require "component" | |
local event = require "event" | |
local term = require "term" | |
local interface = component.me_interface |
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
local component = require "component" | |
local term = require "term" | |
-- Get ME and database components | |
-- The interface is needed to access the common network API, see | |
-- https://github.com/MightyPirates/OpenComputers/issues/3055 | |
local meInterface = component.me_interface | |
local meExportbus = component.me_exportbus | |
local database = component.database |
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
#include <stdlib.h> | |
#include <stdio.h> | |
#include <string.h> | |
#include <error.h> | |
struct BlendFile | |
{ | |
int ptr_size; | |
int endianness; | |
int version_num; |
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
" Vim syntax file | |
" Language: Brainfuck | |
" Maintainer: InternetUnexplorer <[email protected]> | |
" Last Change: 2017 Feb 17 | |
" Version: 0.1 | |
if !exists("main_syntax") | |
if version < 600 | |
syntax clear | |
elseif exists("b:current_syntax") |
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
/** | |
* Copyright (c) 2017 Alex White, Jeremy Harris, Abe Zukor | |
* | |
* Permission is hereby granted, free of charge, to any person obtaining a copy | |
* of this software and associated documentation files (the "Software"), to deal | |
* in the Software without restriction, including without limitation the rights | |
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
* copies of the Software, and to permit persons to whom the Software is | |
* furnished to do so, subject to the following conditions: | |
* |
NewerOlder