Shut down Firefox. Open terminal.
cd ~/Library/Application Support/Firefox/Profiles
open ~/Library/Application Support/Firefox/Profiles
Navigate to target profile.
E.g.,
287 (from 1/9 to 1/12, inclusive) | |
[12874873, 12875363, 12875843, 12876413, 12877653, 12878263, 12878323, 12879033, 12879303, 12879763]..........DONE | |
[12880183, 12880273, 12880543, 12880703, 12880783, 12881003, 12881013, 12881323, 12881483, 12882323]..........DONE | |
[12882643, 12883043, 12883153, 12883783, 12885703, 12886703, 12887753, 12887853, 12888333, 12888593]..........DONE | |
[12888763, 12889303, 12889503, 12889843, 12890143, 12890253, 12890413, 12890583, 12890593, 12890793]..........DONE | |
[12891013, 12891583, 12892413, 12892763, 12892853, 12892873, 12893093, 12893183, 12893993, 12894123]..........DONE | |
[12894363, 12894423, 12894593, 12894983, 12895043, 12895083, 12895153, 12895263, 12895363, 12895713]..........DONE | |
[12896073, 12896123, 12896193, 12896683, 12896943, 12896953, 12897183, 12898203, 12898853, 12899483]..........DONE | |
[12899733, 12900423, 12901293, 12901343, 12901813, 12902463, 12902943, 12903373, 12903383, 12903733]..........DONE |
Shut down Firefox. Open terminal.
cd ~/Library/Application Support/Firefox/Profiles
open ~/Library/Application Support/Firefox/Profiles
Navigate to target profile.
E.g.,
You need two flags when specifying which target to emulate. Also, do not include the version number on the end.
Find out what emulator images are available. Again, take into account that the version number will not be included when specifying the target in the cordova call.
./platforms/ios/cordova/lib/list-emulator-images
iPhone-5, 10.3
vue init webpack sudoku | |
cd sudoku | |
yarn add bulma node-sass sass-loader | |
mkdir src/assets/sass | |
touch src/assets/sass/main.scss | |
echo -e "\n@import '~bulma/bulma'" >> src/assets/sass/main.scss | |
perl -i -0pe 's#^(Vue.config.productionTip.*$)#// Require the main Sass manifest file\nrequire\('"'"'./assets/sass/main.scss'"'"'\);\n\n\1#gms' /Users/dcvezzani/greenseedtechnologies/sudoku/src/main.js | |
perl -i -0pe 's#^( "dev": .*)$# "open": "webpack-dev-server --inline --progress --config build/webpack.dev.conf.js --open",\n\1#gms' /Users/dcvezzani/greenseedtechnologies/sudoku/package.json | |
perl -i -0pe 's#(path: ./)(.,)#\1hello\2#g; s#^( routes: .*)$#\1\n {\n path: "/",\n name: "Sudoku",\n component: Sudoku\n },#gm; s#^(import HelloWorld.*)$#\1\nimport Sudoku from "@/components/Sudoku"#gm' /Users/dcvezzani/greenseedtechnologies/sudoku/src/router/index.js | |
sed -i'' -e '/logo.png/d' /Users/dcvezzani/greenseedtechnologies/sudoku/src/App.vue |
#include <math.h> | |
/* | |
AnalogReadSerial | |
Reads an analog input on pin 0, prints the result to the Serial Monitor. | |
Graphical representation is available using Serial Plotter (Tools > Serial Plotter menu). | |
Attach the center pin of a potentiometer to pin A0, and the outside pins to +5V and ground. | |
This example code is in the public domain. |