Credit goes to https://github.com/uspass/Tuya-Water-Leak-Sensor
Module 54
TuyaMCU 51,21
Backlog SetOption1 1; SetOption65 1; SetOption36 0; SwitchMode 1
Credit goes to https://github.com/uspass/Tuya-Water-Leak-Sensor
Module 54
TuyaMCU 51,21
Backlog SetOption1 1; SetOption65 1; SetOption36 0; SwitchMode 1
A list of useful commands for the FFmpeg command line tool.
Download FFmpeg: https://www.ffmpeg.org/download.html
Full documentation: https://www.ffmpeg.org/ffmpeg.html
| /** | |
| * Script to locate error nodes from solr error report, and do something with them. | |
| * | |
| * @author Younes Regaieg <[email protected]> | |
| * @version 1.0 | |
| **/ | |
| //----- Solr error report to be fetched from solr /solr4/alfresco/query?q=EXCEPTIONMESSAGE:*&wt=json&rows=<number-of-rows-to-fetch> | |
| //----- Swap this dummy object with a real object from the output of the endpoint mentionned above. | |
| var solrErrorsReport = { |
| SELECT count(alf_node.id) | |
| FROM alf_node INNER JOIN alf_node_aspects ON alf_node.id = alf_node_aspects.node_id | |
| WHERE alf_node.store_id = 6 | |
| AND alf_node_aspects.qname_id = 2929; |
| """ | |
| Derived from [fn.py](https://github.com/kachayev/fn.py) function 'curried' | |
| Amended to fix wrapping error: cf. https://github.com/kachayev/fn.py/pull/75 | |
| Copyright 2013 Alexey Kachayev | |
| Under the Apache License, Version 2.0 | |
| http://www.apache.org/licenses/LICENSE-2.0 | |
| """ |
| /** | |
| var data = [ | |
| { | |
| src : "http://path/to/audio/play.mp3", | |
| meta : { | |
| artist: "Inexistence", | |
| title: "UndeFINEd", | |
| bpm: 120.0 | |
| } | |
| }, |
| #!/usr/bin/env ruby | |
| # This pre-commit hook aims to prevent you from *accidentally* committing debugger | |
| # statements if installed in your project. You can force a commit if necessary with: | |
| # `git commit --no-verify`. | |
| # Install by copying it to <your-project-dir>/.git/hooks/pre-commit' | |
| hits = [] | |
| rb_debuggers = ['binding\.pry', 'binding\.remote_pry', 'debugger', 'focus: true', ':focus => true', 'save_and_open_page', 'save_and_open_screenshot'] | |
| js_debuggers = ['console\.log', 'debugger'] |