- Download firmware (70.03.0A) to the internal smartphone memory or SD card;
- Install nRF Toolbox for BLE from Google Play;
- Open nRF Toolbox → go to DFU section;
- Select firmware file → chose "application" type with "no init packet";
- Select device for firmware upload (named "DfuMode");
- Tap "Start".
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var npm = require('npm'); | |
var fs = require('fs'); | |
var path = require('path'); | |
module.constructor.new_packageMainCache = {}; // own cache | |
// copied from node src | |
function statPath(path) { | |
try { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
wget http://dev.mysql.com/get/Downloads/MySQL-5.7/mysql-5.7.20-macos10.12-x86_64.tar.gz | |
tar xfvz mysql-5.7* | |
echo "stopping mamp" | |
sudo /Applications/MAMP/bin/stop.sh | |
sudo killall httpd mysqld | |
echo "creating backup" |