I hereby claim:
- I am tschrock on github.
- I am tschrock123 (https://keybase.io/tschrock123) on keybase.
- I have a public key ASCQp-lSBm6PQmy2D-YsXwIdT_7qgQwJgtgbgyfEFT57UQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#include <stdio.h> | |
#include <stdlib.h> | |
/** | |
* ConwaySort: | |
* sorts an array by ignoring it and then | |
* printing out a new, sorted array with its | |
* own "Alternative Values." | |
* | |
* If the new array does not appear sorted, | |
* you have been manipulated by MSM |
Misc URLs:
General URL Parameters:
platform
- Specifies the platform to use for event statsuser_agent
- Used to automatically detect platformEDIT: Moved to https://newpointe.github.io/churchonline-api-docs
/api/v1/upcoming_event_times
Gets the times of upcomming events
// <copyright> | |
// Copyright by the Spark Development Network | |
// | |
// Licensed under the Rock Community License (the "License"); | |
// you may not use this file except in compliance with the License. | |
// You may obtain a copy of the License at | |
// | |
// http://www.rockrms.com/license | |
// | |
// Unless required by applicable law or agreed to in writing, software |
function getIps() { | |
return new Promise((resolve, reject) => { | |
const candidateIps = new Map(); | |
const rtc = new RTCPeerConnection({}); | |
rtc.onicecandidate = (e) => { | |
if(e.candidate) { | |
candidateIps.set(e.candidate.candidate.split(' ')[4], e.candidate.candidate) | |
} | |
else { | |
rtc.close(); |
#!/bin/bash | |
SCREENSHOTS_DIR="$HOME/Pictures/Screenshots/" | |
REMOTE_HOST="[email protected]" | |
REMOTE_PORT="9433" | |
REMOTE_PATH="/var/www/p.cp3.es/" | |
HTTP_HOST="https://p.cp3.es/" |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
# Usage: | |
# sudo ./modify_rpi_disk_image.sh raspbian-stretch-lite.img | |
function exit_with_error { | |
echo "Error: $2" | |
exit $1 | |
} |