Name | Type | License | Tech |
---|---|---|---|
apostello | SMS communication | MIT | Python |
Bible API | bible reference | MIT | Ruby |
Bible Helper | bible reference | MIT | Javascript |
Cedar | media projection | MIT | JavaScript (Meteor) |
Chabaa | service streaming and chat | GPLv3 | PHP |
ChurchCRM | ChMS | MIT | PHP |
ChurchInfo | ChMS | GPLv2 | PHP |
Ezra Project | bible study | GPLv2 | JavaScript |
View open_source_church_software.md
View cryptoDashboard.html
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Crypto Currency Prices</title> | |
<script src="https://cdn.pubnub.com/sdk/javascript/pubnub.4.18.0.min.js"></script> | |
<script type="text/javascript" src="https://pubnub.github.io/eon/v/eon/1.0.0/eon.js"></script> | |
<link type="text/css" rel="stylesheet" href="https://pubnub.github.io/eon/v/eon/1.0.0/eon.css"/> | |
</head> | |
<body> |
View backup.sh
#!/bin/bash | |
BACKUP_SRC="/root /etc /home" | |
BACKUP_DST="/tmp" | |
MYSQL_SERVER="127.0.0.1" | |
MYSQL_USER="mysql username" | |
MYSQL_PASS="mysql password" | |
#VPS_ID="vpsidentifier" | |
# Stop editing here. | |
NOW=$(date +"%Y.%m.%d") |
View convert_utf8_to_utf8mb4
# For each database: | |
ALTER DATABASE database_name CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci; | |
# For each table: | |
ALTER TABLE table_name CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; | |
# For each column: | |
ALTER TABLE table_name CHANGE column_name column_name VARCHAR(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; | |
# (Don’t blindly copy-paste this! The exact statement depends on the column type, maximum length, and other properties. The above line is just an example for a `VARCHAR` column.) |
View node-and-npm-in-30-seconds.sh
echo 'export PATH=$HOME/local/bin:$PATH' >> ~/.bashrc | |
. ~/.bashrc | |
mkdir ~/local | |
mkdir ~/node-latest-install | |
cd ~/node-latest-install | |
curl http://nodejs.org/dist/node-latest.tar.gz | tar xz --strip-components=1 | |
./configure --prefix=~/local | |
make install # ok, fine, this step probably takes more than 30 seconds... | |
curl https://www.npmjs.org/install.sh | sh |