I have tested this on WD My Cloud EX4 (an obsolete model).
-
Enable SSH access through the NAS web interface, choosing a suitable password when prompted.
-
Copy the certificates over from where they are stored.
cd /home/user/certs # e.g.
-- Automator version | |
-- usage: | |
-- 1. Create new Quick Action in macOS Automator | |
-- 2. Workflow receives current "image files" in "Finder" | |
-- 3. Add "Run Applescript" | |
-- 4. Paste this code | |
-- 5. Now you can right-click on an image or multiple images in Finder to extract the text to .txt files. | |
use framework "Vision" | |
use framework "Foundation" |
I have tested this on WD My Cloud EX4 (an obsolete model).
Enable SSH access through the NAS web interface, choosing a suitable password when prompted.
Copy the certificates over from where they are stored.
cd /home/user/certs # e.g.
' Reverses LTR tables with visually RTL content and vice versa | |
' Tested with simple table (no merged cells) on Microsoft 365 versions of: | |
' Microsoft Word for Mac, Version 16.83 | |
' Microsoft Word for Windows, Version 2402 | |
Sub ReverseTableColumns() | |
Dim tbl As Table | |
Dim colCount As Long | |
Dim i As Long | |
Dim j As Long | |
Dim tempContent As String |
<!doctype html> | |
<html> | |
<head> | |
<meta charset="utf-8"/> | |
<title>Markdown Parsing</title> | |
</head> | |
<body> | |
<h1>Markdown Parsing using Marked JS</h1> | |
<p>Fetches Marked JS Readme.md as an example.</p> | |
<section id="content"></section> |
#!/bin/bash | |
sudo apt update && sudo apt upgrade -y | |
### APT | |
function install_apt_packages { | |
apt_packages="" | |
read -e -p "Install Gnome Tweaks? (n) " choice | |
[[ "$choice" == [Yy]* ]] && apt_packages="${apt_packages}gnome-tweaks " |
#!/bin/bash | |
BoldGreen='\033[1;32m' | |
NoColour='\033[0m' | |
## Parameter specified? | |
if [ $# -eq 0 ]; then | |
echo -e "No package specified" | |
exit 1 | |
fi |
#!/bin/bash | |
# Installs Homebrew and Wimlib if not already installed, | |
# then formats and prepares an external USB device as | |
# a bootable Windows installer from your Windows ISO. | |
# | |
# Usage: ./make_windows_usb.sh windows_installer.iso | |
# (first make executable with: chmod u+x ./make_windows_usb.sh) | |
# | |
# Insert a single external USB target device before running. | |
# Do not use blindly – bad things can happen. |
<?php | |
/** | |
* Formats mobile numbers as international. | |
* | |
* @access public | |
* @param string $number is a mobile phone number | |
* @param array $args is an associative array of variables (see $defaults) | |
* @return string | |
*/ |
var geomaptarget = document.getElementById("geomaptarget"); | |
var field_latitude = document.getElementById("field_latitude"); | |
var field_longitude = document.getElementById("field_longitude"); | |
function getLocation() { | |
if ( geomaptarget !== null ) { // for paginated forms | |
if (navigator.geolocation) { | |
navigator.geolocation.getCurrentPosition( // https://developer.mozilla.org/en-US/docs/Web/API/Geolocation/getCurrentPosition | |
// Success function |
Option Explicit | |
'------------------------------------------------------------------------------ | |
' Module: URL Encode and Decode Functions | |
' Author: Jeremy Varnham | |
' Version: 1.1.0 | |
' Date: 22 August 2024 | |
' Description: This module provides two functions: URLEncode and URLDecode. | |
' These functions allow you to encode and decode URL strings, | |
' supporting ASCII, Unicode, and UTF-8 encoding. |