- Applicable to the nRF9160-DK and probably other platforms the SDK supports.
- Correct as at 2021-04-07. Many fast moving parts so will likely age quickly.
Instructions
#!/usr/bin/perl -w | |
use Time::Piece; | |
%dailies = (); | |
foreach my $daily (<*.md>) | |
{ | |
my $fn = $daily; #store original for use later |
module Alphametics (solve) where | |
import Data.Char (isSpace) | |
import Data.List (nub, intersect, transpose, elemIndex) | |
import Data.Maybe (fromJust) | |
solve :: String -> Maybe [(Char, Int)] | |
solve input = if length solutions == 1 then Just $ zip charMap (head solutions) else Nothing | |
where | |
toRowsOfChars = wordsBy "+=" -- create list of words from input (["SEND","MORE","MONEY"]) |
umount: /dev: target is busy. | |
mount: /sys/kernel/debug: nodev already mounted on /sys/kernel/debug. | |
QFactoryLoader::QFactoryLoader() checking directory path "/qt/plugins/platforms" ... | |
QFactoryLoader::QFactoryLoader() looking at "/qt/plugins/platforms/libqeglfs.so" | |
Found metadata in lib /qt/plugins/platforms/libqeglfs.so, metadata= | |
{ | |
"IID": "org.qt-project.Qt.QPA.QPlatformIntegrationFactoryInterface.5.3", | |
"MetaData": { | |
"Keys": [ | |
"eglfs" |
getmail
it is.getmail
in the official Synology repositories, but it is in ipkg
apparently. So just install that like last time right? Nope. It's opkg
now, and the installer doesn't work on DSM 7!
uname -a
), but need to wait for a reboot and I still have 5 hours of backup copying to go.opkg
getmail package seems to be v4 anyway, and v5 is available. So why not just install it manually?wget https://pyropus.ca./software/getmail/old-versions/getmail-5.16.tar.gz # note
/* | |
* Perform a basic text search of all (internally generated) chat messages in Jellyfish, like Omnisearch used to do for Flowdock. | |
* | |
* Usage: | |
* 1. Change `theSearchPattern` to the string you're searching for | |
* 2. Enter line in the Console in the Developer Tools in the browser, after logging into Jellyfish. | |
* 3. The first 20 results will appear in the console. To see more, press up and return to re-enter the last command. | |
* | |
* In case it wasn't clear, this is a terrible hack and not expected to be fit for anything beyond amusement. | |
*/ |
/* | |
* FetchTasksFromClickup | |
* | |
* A simple function to fetch tasks using the ClickUp API and return the fields specified as a two-dimensional array. | |
* This can be used in a Google Apps Script to pull task data into a Google Sheet. | |
* | |
* Author: Heath Raftery | |
* License: This work is licensed under the Creative Commons Attribution-ShareAlike 4.0 International License. | |
* To view a copy of this license, visit http://creativecommons.org/licenses/by-sa/4.0/ or send a | |
* letter to Creative Commons, PO Box 1866, Mountain View, CA 94042, USA. |