Determine the file system by using the file-utility.
file image.imgUse mdconfig to link the IMG image to a virtual device.
mdconfig -a -t vnode -f /path/to/image.img -u 0| blueprint: | |
| name: ZEN32 (Z-WaveJS2MQTT) | |
| description: Create automations for the Zooz ZEN32 switch using the zwavejs2mqtt (MQTT!). Assumes you expose the main relay as a switch and the 5 scenes as sensors (current default behavior of zwavejs2mqtt). | |
| domain: automation | |
| input: | |
| zooz_switch: | |
| name: Zooz Switch From MQTT | |
| description: Actual switch/relay element | |
| selector: | |
| entity: |
| 0-mail.com | |
| 007addict.com | |
| 020.co.uk | |
| 027168.com | |
| 0815.ru | |
| 0815.su | |
| 0clickemail.com | |
| 0sg.net | |
| 0wnd.net | |
| 0wnd.org |
Determine the file system by using the file-utility.
file image.imgUse mdconfig to link the IMG image to a virtual device.
mdconfig -a -t vnode -f /path/to/image.img -u 0| Package 1|launch://com.company.package1|data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAZElEQVR42u3QAQ0AAAQAMPpoLSg5zB/hWRMdj6UAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBBw3wKB4HPBZxtNLQAAAABJRU5ErkJggg== | |
| Title 2|file://mnt/sdcard/report.pdf|file:///SDCard/images/Title2.jpg | |
| Browse Website|browse://www.example.com|file:///SDCard/images/Website.jpg | |
| Package 4|launch://com.company.package4|data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAAABCAYAAABubagXAAAAEElEQVR42mNk+P+/nmEEAwB6pgJ/X9KuVAAAAABJRU5ErkJggg== | |
| Notepad Demo|intent://com.google.provider.NotePad/notes/1#Intent;scheme=content;action=android.intent.action.EDIT;component=com.example.android.notepad/.NoteEditor;end|data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAZElEQVR42u3QAQ0AAAQAMGLILyg5zB/hGTUdj6UAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBBw3wI9K28BURnnnAAAAABJRU5ErkJggg== | |
| Title 6|launchalways://com.company.pack |
| import java.time.*; | |
| import java.time.format.DateTimeFormatter; | |
| import java.time.format.FormatStyle; | |
| import java.time.temporal.ChronoUnit; | |
| import java.time.temporal.TemporalAdjusters; | |
| import java.util.*; | |
| import static java.time.temporal.TemporalAdjusters.*; | |
| public class Java8DateTimeExamples { |
Here is a simple method to fix Ruby 2.3.x OpenSSL connectivity errors (on Windows) when trying to install gems via rubygems. This method is the cleanest way to solve the problem and does not rely on you disabling any secure/https connectivity options in Ruby. Essentially, you are adding the missing CA certificate into the Ruby ssl_certs directory to complete the chain of trust.
Sample error messages:
*::Error::ConnectionFailed SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed
or:
connect_nonblock': SSL_connect returned=1 errno=0 state=error: certificate verify failed (OpenSSL::SSL::SSLError)