sudo apt update
sudo apt install os-prober
sudo os-prober
sudo apt install grub-efi grub2-common
sudo add-apt-repository ppa:danielrichter2007/grub-customizer
| # To build a prod version of the app, then just need to run: | |
| ionic build --prod && npm run postbuild |
| // Place your key bindings in this file to override the defaults | |
| [ | |
| { | |
| "key": "ctrl+'", | |
| "command": "workbench.action.terminal.toggleTerminal", | |
| "when": "terminal.active" | |
| }, | |
| { | |
| "key": "ctrl+shift+[BracketLeft]", | |
| "command": "-workbench.action.terminal.toggleTerminal", |
sudo apt update
sudo apt install os-prober
sudo os-prober
sudo apt install grub-efi grub2-common
sudo add-apt-repository ppa:danielrichter2007/grub-customizer
https://stackoverflow.com/questions/37335415/link-to-add-all-day-event-to-google-calendar https://stackoverflow.com/questions/10488831/link-to-add-to-google-calendar https://stackoverflow.com/questions/22757908/what-parameters-are-required-to-create-an-add-to-google-calendar-link https://stackoverflow.com/questions/41647678/how-to-add-guest-to-google-calendar-link
| var alunoId = new URLSearchParams(window.location.search).get("alunoId"); | |
| Vue.filter("formatDate", function(value) { | |
| if (value) { | |
| return moment(String(value)).format("DD/MM/YYYY HH:mm"); | |
| } | |
| }); | |
| var app = new Vue({ | |
| el: "#app", |
| import urllib2, time, socket | |
| from datetime import datetime | |
| previous_state = 'Monitoring started' | |
| current_state = 'Monitoring started' | |
| readable_time = None | |
| time_now = None | |
| disconnected_time = None | |
| def start_monitoring(): |